/* Designed and developed by AS21 */

:root {
  --brand-navy: #0A2342;
  --brand-navy-2: #061A32;
  --brand-blue: #124C8C;
  --brand-teal: #1D9AAA;
  --brand-teal-2: #33B9C8;
  --ink: #102033;
  --muted: #5D6D82;
  --soft: #F5F8FC;
  --line: rgba(10, 35, 66, 0.12);
  --line-strong: rgba(10, 35, 66, 0.22);
  --glass: rgba(255, 255, 255, 0.13);
  --shadow-lg: 0 30px 80px rgba(6, 26, 50, 0.18);
  --shadow-md: 0 18px 44px rgba(6, 26, 50, 0.12);
  --shadow-sm: 0 10px 26px rgba(6, 26, 50, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --header-height: 86px;
  --ease: 260ms cubic-bezier(0.22, 1, 0.36, 1);
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f7f9fc;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-loading {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(22px, 5vw, 56px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(6, 26, 50, 0.98) 0%, rgba(10, 35, 66, 0.96) 46%, rgba(8, 58, 88, 0.96) 100%),
    linear-gradient(180deg, #061A32 0%, #0A2342 100%);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    visibility 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.site-loader::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 88%);
}

.site-loader::after {
  background:
    linear-gradient(90deg, rgba(51, 185, 200, 0.18), transparent 26%, transparent 72%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 28%, rgba(0, 0, 0, 0.20));
}

.site-loader.is-hiding {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
}

.site-loader.is-loaded {
  display: none;
}

.site-loader__route {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-loader__route span {
  position: absolute;
  left: -16vw;
  right: -16vw;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(126, 228, 239, 0.42), transparent);
  opacity: 0.7;
}

.site-loader__route span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
  animation: site-loader-route 2200ms ease-in-out infinite;
}

.site-loader__route span:nth-child(1) {
  top: 24%;
  transform: rotate(-12deg);
}

.site-loader__route span:nth-child(2) {
  top: 54%;
  transform: rotate(8deg);
}

.site-loader__route span:nth-child(2)::after {
  animation-delay: 360ms;
}

.site-loader__route span:nth-child(3) {
  top: 76%;
  transform: rotate(-5deg);
}

.site-loader__route span:nth-child(3)::after {
  animation-delay: 720ms;
}

.site-loader__status {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(100%, 520px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.075));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
}

.site-loader__logo {
  width: min(72vw, 280px);
  height: auto;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.site-loader__status strong {
  margin-top: 24px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.site-loader__status p {
  max-width: 34ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 700;
  line-height: 1.55;
}

.site-loader__progress {
  width: min(100%, 330px);
  height: 4px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.site-loader__progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand-teal-2), rgba(255, 255, 255, 0.96));
  animation: site-loader-progress 1800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes site-loader-route {
  from {
    transform: translateX(-36%);
  }

  to {
    transform: translateX(440%);
  }
}

@keyframes site-loader-progress {
  0% {
    transform: scaleX(0);
  }

  74% {
    transform: scaleX(0.78);
  }

  100% {
    transform: scaleX(1);
  }
}

@media (max-width: 767.98px) {
  .site-loader {
    padding: 20px;
  }

  .site-loader__status {
    border-radius: 24px;
    padding: 24px;
  }

  .site-loader__logo {
    width: min(78vw, 240px);
  }

  .site-loader__status strong {
    margin-top: 20px;
  }

  .site-loader__progress {
    width: 100%;
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .site-loader__route span::after,
  .site-loader__progress span {
    animation: none !important;
    transition-duration: 0.001ms !important;
  }

  .site-loader__route span::after {
    display: none;
  }

  .site-loader__progress span {
    transform: scaleX(1);
  }
}

::selection {
  background: rgba(29, 154, 170, 0.22);
  color: var(--brand-navy);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--brand-navy);
  color: #fff;
  font-weight: 700;
  transition: top var(--ease);
}

.skip-link:focus {
  top: 16px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand-teal), #8AE0EA);
}


.site-header {
  transition: padding var(--ease), background var(--ease), box-shadow var(--ease);
  padding: 16px 0 0;
  pointer-events: none;
}

.site-header .navbar {
  min-height: var(--header-height);
  pointer-events: auto;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
  z-index: -1;
}

.site-header.is-scrolled {
  padding-top: 0;
}

.site-header.is-scrolled::before {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(10, 35, 66, 0.08);
  box-shadow: 0 14px 34px rgba(8, 22, 45, 0.09);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
}

.brand-logo img {
  width: auto;
  height: 52px;
}

.navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding-inline: 14px;
  color: rgba(16, 32, 51, 0.72);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color var(--ease);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--brand-teal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f3f6fa);
  box-shadow: var(--shadow-sm);
  padding: 0;
  position: relative;
}

.nav-toggle:focus {
  box-shadow: 0 0 0 4px rgba(29, 154, 170, 0.16);
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-navy);
  transform: translateX(-50%);
  transition: transform var(--ease), opacity var(--ease), top var(--ease);
}

.nav-toggle span:nth-child(1) {
  top: 17px;
}

.nav-toggle span:nth-child(2) {
  top: 24px;
}

.nav-toggle span:nth-child(3) {
  top: 31px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 24px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 24px;
  transform: translateX(-50%) rotate(-45deg);
}

.btn-primary-custom {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-navy);
  --bs-btn-border-color: var(--brand-navy);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #09203c;
  --bs-btn-hover-border-color: #09203c;
  --bs-btn-active-bg: #061a32;
  --bs-btn-active-border-color: #061a32;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 30px rgba(10, 35, 66, 0.24);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(10, 35, 66, 0.30);
}

.btn-outline-light {
  border-radius: 999px;
  min-height: 50px;
  padding-inline: 22px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.76);
}


.section-bg {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 35, 66, 0.76), rgba(6, 26, 50, 0.66)),
    var(--bg-image),
    radial-gradient(circle at 20% 20%, rgba(29, 154, 170, 0.22), transparent 30%),
    linear-gradient(135deg, #0a2342, #061a32);
  background-size: cover;
  background-position: center;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.45;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

.section-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 16%, rgba(51, 185, 200, 0.22), transparent 22%),
    radial-gradient(circle at 18% 84%, rgba(255, 255, 255, 0.11), transparent 20%);
}

.section-light-overlay {
  background:
    linear-gradient(135deg, rgba(247, 250, 253, 0.88), rgba(241, 247, 252, 0.82)),
    var(--bg-image),
    linear-gradient(135deg, #f7fafe, #eef4fb);
  background-size: cover;
  background-position: center;
}

.section-light-overlay::before {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(10, 35, 66, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 35, 66, 0.06) 1px, transparent 1px);
}

.section-dark-overlay {
  background:
    linear-gradient(135deg, rgba(10, 35, 66, 0.86), rgba(6, 26, 50, 0.78)),
    var(--bg-image),
    linear-gradient(135deg, #0a2342, #061a32);
  background-size: cover;
  background-position: center;
}

.section-padding {
  padding: 112px 0;
}


.hero-section {
  min-height: 100vh;
  padding-top: 92px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-teal-2), transparent);
}

.section-kicker {
  color: var(--brand-navy);
}

.section-kicker.light {
  color: #dcecff;
}

.hero-title,
.section-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.hero-title {
  max-width: 12.5ch;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.15rem);
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: clamp(1.08rem, 1.5vw, 1.26rem);
  padding: 15px;
  background-color: #061a3299;
  border-radius: 25px;
}

.section-title {
  color: var(--brand-navy);
  font-size: clamp(2.2rem, 4.3vw, 4rem);
}

.section-subtitle {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.contact-panel,
.quote-form {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.contact-panel {
  margin-top: 28px;
  padding: 28px;
}

.contact-panel h3 {
  margin: 0;
  color: var(--brand-navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-panel ul {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-panel li {
  display: grid;
  gap: 5px;
}

.contact-panel span,
.quote-form .form-label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.contact-panel a,
.contact-panel address {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.quote-form {
  padding: 34px;
}

.form-control,
.form-select {
  min-height: 54px;
  border-radius: 15px;
  border-color: var(--line);
  color: var(--ink);
  background-color: rgba(255, 255, 255, 0.88);
  transition: border-color var(--ease), box-shadow var(--ease), background-color var(--ease);
}

textarea.form-control {
  min-height: 150px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(29, 154, 170, 0.68);
  box-shadow: 0 0 0 4px rgba(29, 154, 170, 0.15);
}

.site-footer {
  padding: 54px 0 28px;
  background: var(--brand-navy-2);
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  height: 56px;
  width: auto;
  padding: 8px 12px;
  border-radius: 16px;
  background: #fff;
}

.site-footer p {
  max-width: 42ch;
  margin: 20px 0 0;
}

.site-footer h2 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--ease);
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span {
  font-size: 0.5rem;
  opacity: 0.86;
}


.mobile-contact-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1030;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.mobile-contact-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 15px;
  background: var(--brand-navy);
  color: #fff;
  font-weight: 800;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1020;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-navy);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
  box-shadow: var(--shadow-md);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.ring-bg,
.ring-progress {
  fill: none;
  stroke-width: 3;
}

.ring-bg {
  stroke: rgba(255, 255, 255, 0.16);
}

.ring-progress {
  stroke: var(--brand-teal-2);
  stroke-linecap: round;
}

.back-to-top span {
  position: relative;
  z-index: 1;
  font-weight: 800;
}


[data-reveal] {
  opacity: 1;
  transform: none;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1199.98px) {
  .hero-title {
    max-width: 13ch;
    font-size: clamp(3rem, 7vw, 5.2rem);
  }
}

@media (max-width: 991.98px) {
  .site-header {
    padding-top: 10px;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
  }

  .navbar-nav .nav-link {
    min-height: 50px;
  }

  .brand-logo img {
    height: 46px;
  }

  .hero-section {
    padding-top: 108px;
  }

  .hero-title {
    font-size: clamp(2.85rem, 10vw, 4.4rem);
  }

  .section-padding {
    padding: 92px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .container {
    width: min(100% - 28px, 540px);
  }

  .hero-title {
    font-size: clamp(2.4rem, 11.5vw, 3.8rem);
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .quote-form,
  .contact-panel {
    border-radius: 24px;
  }

  .quote-form {
    padding: 22px;
  }

  .section-padding {
    padding: 78px 0;
  }

  .mobile-contact-bar {
    display: grid;
  }

  .back-to-top {
    bottom: 94px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}




.section-bg {
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}


.bg-solutions {
  background-image: url("assets/bg-solutions.webp");
  background-position: center center;
}

.bg-services {
  background-image: url("assets/bg-warehouse-port.webp");
  background-position: center center;
}

.bg-industries {
  background-image: url("assets/bg-industries.webp");
  background-position: center center;
}

.bg-about {
  background-image: url("assets/bg-about-shenzhen.webp");
  background-position: center center;
}


@media (max-width: 768px) {
  .bg-solutions {
    background-image: url("assets/bg-solutions-mobile.webp");
    background-position: center center;
  }

  .bg-services {
    background-image: url("assets/bg-services-mobile.webp");
    background-position: center center;
  }

  .bg-industries {
    background-image: url("assets/bg-industries-mobile.webp");
    background-position: center center;
  }

  .bg-about {
    background-image: url("assets/bg-about-mobile.webp");
    background-position: center center;
  }
}


@media (max-width: 768px) {
  .hero-section .section-overlay {
    background:
      linear-gradient(180deg,
        rgba(10, 35, 66, 0.84) 0%,
        rgba(10, 35, 66, 0.72) 42%,
        rgba(10, 35, 66, 0.9) 100%);
  }

  .section-light-overlay .section-overlay,
  .section-dark-overlay .section-overlay {
    background:
      linear-gradient(180deg,
        rgba(10, 35, 66, 0.76) 0%,
        rgba(10, 35, 66, 0.64) 45%,
        rgba(10, 35, 66, 0.84) 100%);
  }
}





@media (min-width: 992px) {
  main>.section-bg+.section-bg {
    margin-top: 18px;
  }

  main>.section-bg {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(10, 35, 66, 0.16);
  }

  main>.section-bg+.section-bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
    background:
      linear-gradient(90deg, rgba(10, 35, 66, 0.04), rgba(29, 154, 170, 0.18), rgba(10, 35, 66, 0.04));
    pointer-events: none;
    z-index: 0;
  }
}


.home-gateway-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(29, 154, 170, 0.10), transparent 24%),
    linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.gateway-card,
.home-summary-card {
  display: block;
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 253, 0.92));
  box-shadow: 0 18px 44px rgba(8, 24, 54, 0.10);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease);
}

.gateway-card:hover,
.gateway-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(8, 24, 54, 0.16);
  border-color: rgba(29, 154, 170, 0.34);
}

.gateway-card h3 {
  margin: 18px 0 10px;
  color: #0A2342;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.gateway-card p,
.home-summary-card span {
  color: #435875;
}

.home-summary-card strong {
  display: block;
  color: #0A2342;
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.home-cta-section {
  padding: 84px 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(29, 154, 170, 0.18), transparent 26%),
    linear-gradient(135deg, #061A32 0%, #0A2342 48%, #0E3A62 100%);
}

.home-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.home-cta-box h2 {
  margin: 0;
  max-width: 760px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

@media (max-width: 991.98px) {
  .home-cta-box {
    align-items: stretch;
    flex-direction: column;
  }
}


@media (max-width: 991.98px) {
  #mainNavigation .navbar-nav {
    margin-left: 0;
    align-items: stretch;
    text-align: left;
  }

  #mainNavigation .nav-item,
  #mainNavigation .nav-link {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }

  #mainNavigation .btn {
    width: 100%;
    justify-content: center;
  }
}




.min-vh-75 {
  min-height: 75vh;
}

.page-hero {
  position: relative;
  padding-top: 96px;
}

.page-hero-content {
  max-width: 780px;
}

.page-hero-content h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-hero-content p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.dark-panel {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(10, 35, 66, 0.76), rgba(6, 26, 50, 0.62));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.page-content-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(29, 154, 170, 0.09), transparent 24%),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
}

.solution-detail-card {
  position: relative;
  padding: clamp(26px, 3vw, 36px);
  border-radius: 30px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.94));
  box-shadow: 0 18px 44px rgba(8, 24, 54, 0.10);
  overflow: hidden;
}

.solution-detail-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 154, 170, 0.16), transparent 66%);
}

.solution-detail-card.featured-card {
  background:
    radial-gradient(circle at 90% 8%, rgba(29, 154, 170, 0.14), transparent 26%),
    linear-gradient(145deg, #ffffff, #f3f8fc);
}

.solution-detail-card h3 {
  margin: 18px 0 12px;
  color: #0A2342;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.solution-detail-card p {
  color: #50627d;
}

.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #1f314d;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #1D9AAA;
  font-weight: 800;
}

.solution-flow-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(29, 154, 170, 0.18), transparent 28%),
    linear-gradient(135deg, #061A32 0%, #0A2342 52%, #0E3A62 100%);
}

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

.horizontal-flow article {
  min-height: 190px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}


.horizontal-flow article:nth-child(1) {
  grid-column: 1 / span 2;
}

.horizontal-flow article:nth-child(2) {
  grid-column: 3 / span 2;
}

.horizontal-flow article:nth-child(3) {
  grid-column: 5 / span 2;
}

.horizontal-flow article:nth-child(4) {
  grid-column: 2 / span 2;
}

.horizontal-flow article:nth-child(5) {
  grid-column: 4 / span 2;
}

.horizontal-flow span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  border-radius: 999px;
  background: rgba(29, 154, 170, 0.18);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.horizontal-flow h3 {
  margin: 18px 0 10px;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.horizontal-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.page-cta-section {
  background: #f8fbfd;
}

.page-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 34px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 154, 170, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #f4f8fc);
  box-shadow: 0 22px 54px rgba(8, 24, 54, 0.12);
}

.page-cta-box h2 {
  max-width: 780px;
  margin: 0;
  color: #0A2342;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

@media (max-width: 1199.98px) {
  .horizontal-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .horizontal-flow article {
    grid-column: auto;
  }
}

@media (max-width: 767.98px) {
  .horizontal-flow {
    grid-template-columns: 1fr;
  }

  .horizontal-flow article {
    grid-column: auto;
  }
}


@media (max-width: 767.98px) {
  .page-hero {
    padding-top: 110px;
  }

  .horizontal-flow article:last-child {
    grid-column: auto;
  }

  .page-cta-box {
    align-items: stretch;
    flex-direction: column;
  }
}




.service-detail-card {
  position: relative;
  height: 100%;
  padding: clamp(28px, 3vw, 38px);
  border-radius: 32px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.94));
  box-shadow: 0 18px 44px rgba(8, 24, 54, 0.10);
  overflow: hidden;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #0A2342, #1D9AAA);
}

.service-detail-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 154, 170, 0.14), transparent 66%);
}

.featured-service {
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 154, 170, 0.14), transparent 28%),
    linear-gradient(145deg, #ffffff, #f2f8fc);
}

.service-card-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.service-card-head span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 38px;
  border-radius: 999px;
  background: rgba(10, 35, 66, 0.08);
  color: #0A2342;
  font-weight: 800;
  font-size: 0.82rem;
}

.service-card-head h3 {
  margin: 0;
  max-width: 560px;
  color: #0A2342;
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.service-detail-card>p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #50627d;
}

.freight-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(29, 154, 170, 0.18), transparent 28%),
    linear-gradient(135deg, #061A32 0%, #0A2342 52%, #0E3A62 100%);
}

.freight-card {
  min-height: 240px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  backdrop-filter: blur(12px);
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.freight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 228, 239, 0.36);
  background:
    linear-gradient(180deg, rgba(29, 154, 170, 0.18), rgba(255, 255, 255, 0.06));
}

.freight-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(29, 154, 170, 0.18);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.freight-card h3 {
  margin: 22px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.freight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.support-panel {
  padding: clamp(26px, 3vw, 34px);
  border-radius: 30px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.94));
  box-shadow: 0 18px 44px rgba(8, 24, 54, 0.10);
}

.support-panel h3 {
  margin: 0 0 14px;
  color: #0A2342;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.support-panel p:last-child {
  margin: 0;
  color: #50627d;
}



.title-readability-panel {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(29, 154, 170, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 253, 0.88));
  box-shadow: 0 18px 46px rgba(8, 24, 54, 0.13);
  backdrop-filter: blur(18px);
}

.title-readability-panel .section-kicker {
  color: var(--brand-teal);
  text-shadow: none;
}

.title-readability-panel .section-title,
.title-readability-panel h1,
.title-readability-panel h2 {
  color: var(--brand-navy);
  text-shadow: none;
}

.title-readability-panel .section-subtitle,
.title-readability-panel p {
  color: rgba(18, 32, 51, 0.82);
  text-shadow: none;
}

.title-readability-panel.dark-panel,
.page-hero-content.title-readability-panel {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(10, 35, 66, 0.86), rgba(6, 26, 50, 0.72));
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.24);
}

.title-readability-panel.dark-panel .section-kicker,
.page-hero-content.title-readability-panel .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.title-readability-panel.dark-panel .section-title,
.title-readability-panel.dark-panel h1,
.title-readability-panel.dark-panel h2,
.page-hero-content.title-readability-panel h1,
.page-hero-content.title-readability-panel h2 {
  color: #ffffff;
  text-shadow: none;
}

.title-readability-panel.dark-panel .section-subtitle,
.title-readability-panel.dark-panel p,
.page-hero-content.title-readability-panel p {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: none;
}

@media (max-width: 767.98px) {
  .title-readability-panel {
    padding: 22px;
    border-radius: 22px;
  }
}




.industry-summary-panel {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 253, 0.92));
  box-shadow: 0 18px 44px rgba(8, 24, 54, 0.10);
}

.industry-summary-panel strong {
  display: block;
  color: #0A2342;
  font-size: 1.16rem;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.industry-summary-panel span {
  color: #50627d;
}

.industry-detail-card {
  position: relative;
  height: 100%;
  padding: clamp(28px, 3vw, 36px);
  border-radius: 32px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.94));
  box-shadow: 0 18px 44px rgba(8, 24, 54, 0.10);
  overflow: hidden;
}

.industry-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #0A2342, #1D9AAA);
}

.industry-detail-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 154, 170, 0.14), transparent 66%);
  pointer-events: none;
}

.industry-detail-card>* {
  position: relative;
  z-index: 1;
}

.featured-industry {
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 154, 170, 0.16), transparent 28%),
    linear-gradient(145deg, #ffffff, #f2f8fc);
}

.industry-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 38px;
  border-radius: 999px;
  background: rgba(10, 35, 66, 0.08);
  color: #0A2342;
  font-weight: 800;
  font-size: 0.82rem;
}

.industry-detail-card h3 {
  margin: 22px 0 12px;
  color: #0A2342;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.65rem, 2.25vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.industry-detail-card p {
  color: #50627d;
}

.sector-requirements-section {
  position: relative;
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 154, 170, 0.18), transparent 28%),
    linear-gradient(135deg, #061A32 0%, #0A2342 52%, #0E3A62 100%);
  overflow: hidden;
}

.sector-requirements-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
  pointer-events: none;
}

.sector-requirements-section>.container {
  position: relative;
  z-index: 1;
}

.requirement-card {
  min-height: 230px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  backdrop-filter: blur(12px);
  transition:
    transform 260ms cubic-bezier(.22, 1, .36, 1),
    border-color 260ms cubic-bezier(.22, 1, .36, 1),
    background 260ms cubic-bezier(.22, 1, .36, 1);
}

.requirement-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 228, 239, 0.36);
  background:
    linear-gradient(180deg, rgba(29, 154, 170, 0.18), rgba(255, 255, 255, 0.06));
}

.requirement-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(29, 154, 170, 0.18);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.requirement-card h3 {
  margin: 22px 0 10px;
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.requirement-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.industry-workflow {
  display: grid;
  gap: 16px;
}

.industry-workflow article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.94));
  box-shadow: 0 16px 38px rgba(8, 24, 54, 0.08);
}

.industry-workflow span {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 38px;
  border-radius: 999px;
  background: rgba(10, 35, 66, 0.08);
  color: #0A2342;
  font-weight: 800;
}

.industry-workflow h3 {
  margin: 0 0 8px;
  color: #0A2342;
  font-size: 1.16rem;
  letter-spacing: -0.03em;
}

.industry-workflow p {
  margin: 0;
  color: #50627d;
}

@media (max-width: 767.98px) {
  .industry-workflow article {
    grid-template-columns: 1fr;
  }

  .industry-detail-card,
  .requirement-card {
    border-radius: 24px;
  }
}




.about-profile-card {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 34px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 154, 170, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #f4f8fc);
  box-shadow: 0 22px 54px rgba(8, 24, 54, 0.12);
}

.about-profile-card h3 {
  margin: 0 0 18px;
  color: #0A2342;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.about-profile-card p {
  color: #50627d;
}

.about-profile-card p:last-child {
  margin-bottom: 0;
}

.about-advantages-section {
  position: relative;
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 154, 170, 0.18), transparent 28%),
    linear-gradient(135deg, #061A32 0%, #0A2342 52%, #0E3A62 100%);
  overflow: hidden;
}

.about-advantages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
  pointer-events: none;
}

.about-advantages-section>.container {
  position: relative;
  z-index: 1;
}

.advantage-card {
  min-height: 240px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  backdrop-filter: blur(12px);
  transition:
    transform 260ms cubic-bezier(.22, 1, .36, 1),
    border-color 260ms cubic-bezier(.22, 1, .36, 1),
    background 260ms cubic-bezier(.22, 1, .36, 1);
}

.advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 228, 239, 0.36);
  background:
    linear-gradient(180deg, rgba(29, 154, 170, 0.18), rgba(255, 255, 255, 0.06));
}

.advantage-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(29, 154, 170, 0.18);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.advantage-card h3 {
  margin: 22px 0 10px;
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.advantage-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.shenzhen-grid article {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.94));
  box-shadow: 0 18px 44px rgba(8, 24, 54, 0.10);
}

.shenzhen-grid span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 154, 170, 0.12);
  color: #0A2342;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.shenzhen-grid h3 {
  margin: 18px 0 10px;
  color: #0A2342;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.shenzhen-grid p {
  margin: 0;
  color: #50627d;
}

.about-principles-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(29, 154, 170, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.principle-card {
  padding: clamp(26px, 3vw, 34px);
  border-radius: 30px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.94));
  box-shadow: 0 18px 44px rgba(8, 24, 54, 0.10);
  transition:
    transform 260ms cubic-bezier(.22, 1, .36, 1),
    box-shadow 260ms cubic-bezier(.22, 1, .36, 1);
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 62px rgba(8, 24, 54, 0.14);
}

.principle-card h3 {
  margin: 0 0 14px;
  color: #0A2342;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.principle-card p {
  margin: 0;
  color: #50627d;
}

@media (max-width: 767.98px) {
  .shenzhen-grid {
    grid-template-columns: 1fr;
  }

  .about-profile-card,
  .advantage-card,
  .principle-card,
  .shenzhen-grid article {
    border-radius: 24px;
  }
}




.quote-hero {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  padding-top: 130px;
  padding-bottom: 25px;
  background:
    radial-gradient(circle at 82% 18%, rgba(29, 154, 170, 0.22), transparent 24%),
    radial-gradient(circle at 10% 82%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, #061A32 0%, #0A2342 48%, #0E3A62 100%);
}

.quote-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.52;
  pointer-events: none;
}

.quote-hero>.container {
  position: relative;
  z-index: 1;
}

.quote-hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.quote-hero-copy>p:last-of-type {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.quote-response-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 540px;
  margin-top: 34px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.quote-response-badge>span {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border-radius: 22px;
  background: linear-gradient(135deg, #1D9AAA, #27B8C8);
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.quote-response-badge strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

.quote-response-badge p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.quote-hero-panel {
  padding: clamp(26px, 3vw, 34px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.06));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.quote-hero-panel h2 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  letter-spacing: -0.045em;
}

.quote-hero-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-hero-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.quote-hero-panel li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.quote-hero-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7ee4ef;
  font-weight: 900;
}

.quote-main-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(29, 154, 170, 0.08), transparent 24%),
    linear-gradient(180deg, #f8fbfd, #ffffff);
}

.contact-panel {
  margin-top: 34px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 30px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.94));
  box-shadow: 0 18px 44px rgba(8, 24, 54, 0.10);
}

.contact-panel h3 {
  margin: 0 0 18px;
  color: #0A2342;
  font-family: "Montserrat", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.contact-panel ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-panel li {
  display: grid;
  gap: 4px;
}

.contact-panel span {
  color: #60728c;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-panel a,
.contact-panel address {
  margin: 0;
  color: #0A2342;
  font-weight: 700;
}

.quote-form {
  padding: clamp(26px, 3vw, 38px);
  border-radius: 34px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(29, 154, 170, 0.10), transparent 24%),
    linear-gradient(180deg, #ffffff, #f4f8fc);
  box-shadow: 0 22px 54px rgba(8, 24, 54, 0.12);
}

.quote-form-head {
  margin-bottom: 26px;
}

.quote-form-head span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(29, 154, 170, 0.12);
  color: #0A2342;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.quote-form-head h3 {
  margin: 16px 0 0;
  color: #0A2342;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.quote-wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.quote-wizard-step {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(10, 35, 66, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: #49607a;
  text-align: left;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.quote-wizard-step:hover,
.quote-wizard-step:focus-visible {
  border-color: rgba(29, 154, 170, 0.34);
  background: rgba(255, 255, 255, 0.96);
}

.quote-wizard-step:focus-visible {
  outline: 3px solid rgba(29, 154, 170, 0.18);
  outline-offset: 3px;
}

.quote-wizard-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(10, 35, 66, 0.08);
  color: #0A2342;
  font-size: 0.78rem;
  font-weight: 900;
}

.quote-wizard-step strong {
  overflow-wrap: anywhere;
  color: inherit;
  font-size: 0.9rem;
  line-height: 1.1;
}

.quote-wizard-step.is-active {
  border-color: rgba(29, 154, 170, 0.38);
  background: linear-gradient(180deg, rgba(240, 250, 251, 0.98), rgba(255, 255, 255, 0.94));
  color: #0A2342;
  box-shadow: 0 16px 34px rgba(8, 24, 54, 0.10);
  transform: translateY(-1px);
}

.quote-wizard-step.is-complete span,
.quote-wizard-step.is-active span {
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-2));
  color: #ffffff;
}

.quote-wizard-bar {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(10, 35, 66, 0.10);
}

.quote-wizard-bar span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0.3333);
  transform-origin: left;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-teal-2));
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-wizard-feedback {
  min-height: 24px;
  margin: 14px 0 0;
  color: #A4461F;
  font-weight: 800;
  font-size: 0.92rem;
}

.quote-wizard-feedback:empty {
  margin-top: 0;
}

.quote-wizard-panel {
  display: block;
  margin: 18px 0 0;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(10, 35, 66, 0.10);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 250, 253, 0.70));
}

.quote-wizard-panel[hidden] {
  display: none;
}

.quote-wizard-panel legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.quote-panel-head {
  margin-bottom: 20px;
}

.quote-panel-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(29, 154, 170, 0.12);
  color: #0A2342;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.quote-panel-head h4 {
  margin: 12px 0 0;
  color: #0A2342;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.quote-wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.quote-wizard-actions .btn {
  min-width: 150px;
}

.btn-outline-primary-custom {
  --bs-btn-color: var(--brand-navy);
  --bs-btn-bg: rgba(255, 255, 255, 0.84);
  --bs-btn-border-color: rgba(10, 35, 66, 0.18);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--brand-navy);
  --bs-btn-hover-border-color: var(--brand-navy);
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: var(--brand-navy-2);
  --bs-btn-active-border-color: var(--brand-navy-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 999px;
  font-weight: 800;
}

.quote-form .form-label {
  color: #233854;
  font-weight: 700;
  font-size: 0.92rem;
}

.quote-form .form-control,
.quote-form .form-select {
  min-height: 54px;
  border-radius: 16px;
  border-color: rgba(10, 35, 66, 0.13);
  background-color: rgba(255, 255, 255, 0.88);
  color: #122033;
  box-shadow: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.quote-form textarea.form-control {
  min-height: 150px;
  padding-top: 14px;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  border-color: rgba(29, 154, 170, 0.58);
  box-shadow: 0 0 0 4px rgba(29, 154, 170, 0.14);
}

.quote-form .form-control.is-valid,
.quote-form .form-select.is-valid {
  border-color: rgba(29, 154, 170, 0.54);
  background-color: rgba(247, 252, 253, 0.98);
}

.quote-form .form-control.is-invalid,
.quote-form .form-select.is-invalid {
  border-color: rgba(196, 76, 42, 0.70);
  background-color: #fffafa;
  box-shadow: 0 0 0 4px rgba(196, 76, 42, 0.10);
}

.quote-form .form-control.is-invalid:focus,
.quote-form .form-select.is-invalid:focus {
  border-color: rgba(196, 76, 42, 0.82);
  box-shadow: 0 0 0 4px rgba(196, 76, 42, 0.16);
}

@media (max-width: 767.98px) {
  .quote-wizard-progress {
    gap: 8px;
  }

  .quote-wizard-step {
    min-height: 52px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px 6px;
    text-align: center;
  }

  .quote-wizard-step span {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .quote-wizard-step strong {
    font-size: 0.76rem;
  }

  .quote-wizard-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .quote-wizard-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    margin-bottom: 96px;
    padding-right: 58px;
  }

  .quote-wizard-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

.quote-process-section {
  position: relative;
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 154, 170, 0.18), transparent 28%),
    linear-gradient(135deg, #061A32 0%, #0A2342 52%, #0E3A62 100%);
  overflow: hidden;
}

.quote-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
  pointer-events: none;
}

.quote-process-section>.container {
  position: relative;
  z-index: 1;
}

.quote-step {
  padding: 26px;
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.quote-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 991.98px) {
  .quote-hero {
    padding-top: 120px;
  }

  .quote-hero-panel {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .quote-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.9rem);
  }

  .quote-response-badge {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-form,
  .contact-panel,
  .quote-hero-panel,
  .quote-step {
    border-radius: 24px;
  }
}

.nav-item .btn-primary-custom.active {
  color: #1D9AAA;
}



@media (min-width: 768px) {
  .industry-workflow article {
    grid-template-columns: 58px 1fr;
    align-items: start;
    column-gap: 20px;
    row-gap: 6px;
  }

  .industry-workflow article span {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    margin-top: 2px;
  }

  .industry-workflow article h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0 0 6px;
  }

  .industry-workflow article p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
  }
}

@media (min-width: 992px) {
  .ptm-btn-tp {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}






@media (max-width: 991.98px) {
  #mainNavigation.collapsing,
  #mainNavigation.show {
    overflow: hidden;
  }

  #mainNavigation .navbar-nav {
    width: 100%;
    margin-left: 0;
    align-items: stretch;
    text-align: left;
  }

  #mainNavigation .nav-item,
  #mainNavigation .nav-link {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }

  #mainNavigation .btn {
    width: 100%;
    justify-content: center;
  }

  .navbar-collapse.collapsing .navbar-nav,
  .navbar-collapse.show .navbar-nav {
    display: flex;
    flex-direction: column;
  }
}


.industry-intro-panel {
  max-width: 100%;
}

.industry-intro-panel .section-subtitle {
  max-width: 760px;
  margin-bottom: 0;
}

.industry-sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.industry-sector-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(29, 154, 170, 0.12);
  border: 1px solid rgba(29, 154, 170, 0.22);
  color: #0A2342;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 767.98px) {
  .industry-sector-pills {
    gap: 10px;
  }

  .industry-sector-pills span {
    width: 100%;
    justify-content: center;
  }
}
.hero-title,
.section-title {
  font-weight: 700;
  letter-spacing: -0.034em;
  line-height: 1.08;
}

.hero-title {
  max-width: 15ch;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.section-title {
  font-size: clamp(1.85rem, 2.8vw, 3rem);
}

.page-hero-content h1,
.quote-hero-copy h1,
.page-hero-content.title-readability-panel h1,
.page-hero-content.title-readability-panel h2,
.title-readability-panel.dark-panel h1,
.title-readability-panel.dark-panel h2 {
  font-size: clamp(2.2rem, 4.1vw, 3.55rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.034em;
}

.home-cta-box h2,
.page-cta-box h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.032em;
}

.home-hero-carousel {
  min-height: 100vh;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #061A32;
  touch-action: pan-y;
}

.home-carousel-backgrounds,
.home-carousel-bg {
  position: absolute;
  inset: 0;
}

.home-carousel-backgrounds {
  z-index: 0;
  pointer-events: none;
  background: #061A32;
}

.home-carousel-bg {
  opacity: 0;
  transform: scale(1.035);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition:
    opacity 900ms ease,
    transform 7600ms ease;
}

.home-carousel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 26, 50, 0.70) 0%, rgba(6, 26, 50, 0.42) 42%, rgba(6, 26, 50, 0.14) 100%),
    linear-gradient(180deg, rgba(6, 26, 50, 0.16) 0%, rgba(6, 26, 50, 0.04) 46%, rgba(6, 26, 50, 0.34) 100%);
}

.home-carousel-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-carousel-bg-1 {
  background-image: url("assets/hero-logistics-wide.webp");
}

.home-carousel-bg-2 {
  background-image: url("assets/bg-solutions.webp");
}

.home-carousel-bg-3 {
  background-image: url("assets/bg-industries.webp");
}

.home-hero-carousel::before {
  z-index: 2;
  opacity: 0.20;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 88%);
}

.home-hero-carousel .section-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 14% 56%, rgba(51, 185, 200, 0.20), transparent 23%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 20%);
}

.home-hero-carousel > .container {
  z-index: 4;
}

.home-carousel {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 900px);
  padding-bottom: clamp(64px, 8vw, 112px);
  touch-action: pan-y;
}

.home-carousel-slides {
  display: grid;
  width: 100%;
}

.home-carousel-slide {
  grid-area: 1 / 1;
  max-width: 760px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity 950ms ease,
    transform 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.home-carousel .eyebrow {
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.32);
}

.home-carousel .hero-title {
  max-width: 17ch;
  font-size: clamp(2.35rem, 4vw, 3.95rem);
  line-height: 1.08;
  letter-spacing: -0.034em;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.38);
}

.home-carousel .hero-subtitle {
  max-width: 640px;
  margin-top: 22px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 600;
  line-height: 1.66;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.36);
}

.hero-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: 22px;
}

.hero-proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.home-carousel .hero-actions {
  margin-top: 24px;
}

.home-carousel .hero-actions .btn {
  border-width: 1px;
}

.home-carousel .hero-actions .btn-outline-light {
  --bs-btn-color: #ffffff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.70);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.16);
  --bs-btn-hover-border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.home-carousel-footer {
  display: grid;
  gap: 14px;
  width: min(100%, 430px);
  margin-top: 30px;
}

.home-carousel-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.home-carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.home-carousel-arrow {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(12px);
  transition:
    transform var(--ease),
    background var(--ease),
    border-color var(--ease);
}

.home-carousel-arrow:hover,
.home-carousel-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(126, 228, 239, 0.52);
  background: rgba(126, 228, 239, 0.18);
}

.home-carousel-arrow:focus-visible {
  outline: 3px solid rgba(126, 228, 239, 0.34);
  outline-offset: 4px;
}

.home-carousel-dot {
  width: 34px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition:
    width var(--ease),
    background var(--ease),
    transform var(--ease);
}

.home-carousel-dot:hover,
.home-carousel-dot:focus-visible {
  background: rgba(126, 228, 239, 0.78);
}

.home-carousel-dot:focus-visible {
  outline: 3px solid rgba(126, 228, 239, 0.34);
  outline-offset: 4px;
}

.home-carousel-dot.is-active {
  width: 54px;
  background: var(--brand-teal-2);
}

.home-carousel-progress {
  position: relative;
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.home-carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand-teal-2), rgba(255, 255, 255, 0.92));
}

.home-carousel-progress span.is-running {
  animation: hero-progress var(--hero-progress-duration, 8000ms) linear forwards;
}

.home-carousel.is-paused .home-carousel-progress span {
  animation-play-state: paused;
}

@keyframes hero-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.gateway-card,
.home-summary-card,
.solution-detail-card,
.service-detail-card,
.industry-detail-card,
.support-panel,
.about-profile-card,
.principle-card,
.shenzhen-grid article,
.contact-panel,
.quote-form {
  position: relative;
  overflow: hidden;
  border-color: rgba(10, 35, 66, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(8, 24, 54, 0.08);
  transition:
    transform var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
}

.gateway-card::before,
.home-summary-card::before,
.solution-detail-card::before,
.service-detail-card::before,
.industry-detail-card::before,
.support-panel::before,
.about-profile-card::before,
.principle-card::before,
.shenzhen-grid article::before,
.quote-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(10, 35, 66, 0.82), rgba(29, 154, 170, 0.68));
  opacity: 0.86;
}

.gateway-card:hover,
.gateway-card:focus-visible,
.solution-detail-card:hover,
.service-detail-card:hover,
.industry-detail-card:hover,
.support-panel:hover,
.principle-card:hover,
.shenzhen-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 154, 170, 0.28);
  box-shadow: 0 20px 46px rgba(8, 24, 54, 0.12);
}

.gateway-card h3,
.solution-detail-card h3,
.service-card-head h3,
.industry-detail-card h3,
.support-panel h3,
.principle-card h3,
.shenzhen-grid h3 {
  letter-spacing: -0.032em;
}

.card-number span,
.service-card-head span,
.industry-icon,
.industry-workflow span {
  border: 1px solid rgba(10, 35, 66, 0.08);
  background: rgba(10, 35, 66, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.freight-card,
.requirement-card,
.advantage-card,
.quote-step,
.horizontal-flow article {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transition:
    transform var(--ease),
    border-color var(--ease),
    background var(--ease),
    box-shadow var(--ease);
}

.freight-card::before,
.requirement-card::before,
.advantage-card::before,
.quote-step::before,
.horizontal-flow article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(126, 228, 239, 0.68), rgba(255, 255, 255, 0));
}

.freight-card:hover,
.requirement-card:hover,
.advantage-card:hover,
.quote-step:hover,
.horizontal-flow article:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 228, 239, 0.30);
  background:
    linear-gradient(180deg, rgba(29, 154, 170, 0.15), rgba(255, 255, 255, 0.06));
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.20);
}

.freight-card span,
.requirement-card span,
.advantage-card span,
.quote-step span,
.horizontal-flow span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(126, 228, 239, 0.16);
  border-radius: 999px;
  background: rgba(29, 154, 170, 0.16);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.freight-card h3,
.requirement-card h3,
.advantage-card h3,
.quote-step h3,
.horizontal-flow h3 {
  margin-top: 18px;
  color: #ffffff;
  font-size: 1.22rem;
  letter-spacing: -0.026em;
}

.horizontal-flow,
.industry-workflow,
.quote-process-section .row.g-4:not(.mb-5) {
  position: relative;
}

@media (min-width: 992px) {
  .horizontal-flow::before,
  .quote-process-section .row.g-4:not(.mb-5)::before {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(126, 228, 239, 0.28), transparent);
    transform: translateY(-50%);
    pointer-events: none;
  }

  .horizontal-flow article,
  .quote-process-section .quote-step {
    z-index: 1;
  }
}

@media (min-width: 768px) {
  .industry-workflow::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 49px;
    width: 1px;
    background: linear-gradient(180deg, rgba(29, 154, 170, 0.18), rgba(10, 35, 66, 0.12));
    pointer-events: none;
  }

  .industry-workflow article {
    position: relative;
    z-index: 1;
  }
}

.quote-trust-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(29, 154, 170, 0.18);
  border-radius: 18px;
  background: rgba(240, 250, 251, 0.78);
  color: #405571;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.quote-trust-note::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 0.46em;
  border-radius: 999px;
  background: var(--brand-teal);
  box-shadow: 0 0 0 5px rgba(29, 154, 170, 0.10);
}


@media (max-width: 991.98px) {
  .hero-title {
    font-size: clamp(2.25rem, 7vw, 3.35rem);
  }

  .section-title {
    font-size: clamp(1.75rem, 5.6vw, 2.55rem);
  }

  .home-carousel {
    width: min(100%, 720px);
    padding-bottom: 96px;
  }

  .home-carousel-bg::after {
    background:
      linear-gradient(90deg, rgba(6, 26, 50, 0.74) 0%, rgba(6, 26, 50, 0.52) 58%, rgba(6, 26, 50, 0.30) 100%),
      linear-gradient(180deg, rgba(6, 26, 50, 0.34) 0%, rgba(6, 26, 50, 0.10) 44%, rgba(6, 26, 50, 0.62) 100%);
  }


}

@media (max-width: 767.98px) {
  .home-hero-carousel {
    min-height: 100svh;
  }

  .home-carousel {
    min-height: 50svh;
    padding-top: 92px;
    padding-bottom: 108px;
  }

  .home-carousel .hero-title,
  .hero-title {
    font-size: clamp(2rem, 9vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
  }

  .section-title {
    font-size: clamp(1.55rem, 7.2vw, 2.25rem);
    line-height: 1.12;
  }

  .page-hero-content h1,
  .quote-hero-copy h1,
  .page-hero-content.title-readability-panel h1,
  .page-hero-content.title-readability-panel h2,
  .title-readability-panel.dark-panel h1,
  .title-readability-panel.dark-panel h2 {
    font-size: clamp(2rem, 8.4vw, 2.7rem);
    line-height: 1.1;
  }

  .home-cta-box h2,
  .page-cta-box h2 {
    font-size: clamp(1.45rem, 6.6vw, 2rem);
  }

  .home-carousel .hero-subtitle {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-proof-strip {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-proof-strip span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .home-carousel .hero-actions {
    gap: 10px;
    margin-top: 20px;
  }

  .home-carousel .hero-actions .btn {
    width: 100%;
    min-height: 46px;
    padding-inline: 18px;
    font-size: 0.98rem;
  }

  .home-carousel-footer {
    width: 100%;
    margin-top: 22px;
  }

  .home-carousel-toolbar {
    width: 100%;
    justify-content: space-between;
  }

  .home-carousel-controls {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
  }

  .home-carousel-arrow {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .home-carousel-dot {
    width: 26px;
  }

  .home-carousel-dot.is-active {
    width: 40px;
  }

  .home-carousel-bg-1 {
    background-image: url("assets/hero-logistics-mobile.webp");
  }

  .home-carousel-bg-2 {
    background-image: url("assets/bg-solutions-mobile.webp");
  }

  .home-carousel-bg-3 {
    background-image: url("assets/bg-industries-mobile.webp");
    background-position: center center;
  }

  .home-carousel-bg::after {
    background:
      linear-gradient(90deg, rgba(6, 26, 50, 0.42) 0%, rgba(6, 26, 50, 0.26) 56%, rgba(6, 26, 50, 0.12) 100%),
      linear-gradient(180deg, rgba(6, 26, 50, 0.12) 0%, rgba(6, 26, 50, 0.04) 42%, rgba(6, 26, 50, 0.40) 100%);
  }

  .gateway-card,
  .home-summary-card,
  .solution-detail-card,
  .service-detail-card,
  .industry-detail-card,
  .support-panel,
  .about-profile-card,
  .principle-card,
  .shenzhen-grid article,
  .contact-panel,
  .quote-form,
  .freight-card,
  .requirement-card,
  .advantage-card,
  .quote-step,
  .horizontal-flow article {
    border-radius: 20px;
  }

  .quote-hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 74px;
  }

  .quote-hero .row {
    min-height: auto;
    --bs-gutter-y: 1.5rem;
  }

  .quote-hero-copy h1 {
    font-size: clamp(1.9rem, 7.8vw, 2.45rem);
  }

  .quote-hero-copy>p:last-of-type {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .quote-response-badge {
    gap: 14px;
    margin-top: 16px;
    padding: 12px;
    border-radius: 22px;
  }

  .quote-response-badge>span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 1.24rem;
  }

  .quote-hero-panel {
    padding: 22px;
  }

  .quote-hero-panel h2 {
    font-size: 1.36rem;
  }

  .quote-hero-panel ul {
    gap: 9px;
    margin-top: 16px;
  }

  .quote-main-section {
    padding-bottom: 104px;
  }

  .quote-wizard-actions {
    margin-bottom: 88px;
    padding-right: 58px;
  }

  .quote-trust-note {
    margin-bottom: 8px;
    padding-right: 64px;
  }


  .site-footer {
    padding-bottom: 150px;
  }

  .footer-bottom {
    padding-bottom: 18px;
    margin-bottom: 0;
  }
}
