/* ===== Header & Navigation ===== */
.header{position:fixed;top:0;left:0;width:100%;z-index:1000;background:transparent;transition:background var(--transition),box-shadow var(--transition);height:var(--header-height)}
.header.scrolled{background:rgba(7,27,56,0.97);box-shadow:0 2px 20px rgba(0,0,0,0.15)}
.header .container{display:flex;align-items:center;height:100%;justify-content:space-between;max-width:1480px;padding:0 24px}
.header-logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.header-logo img{height:38px;width:auto;object-fit:contain;filter:brightness(1.3)}
.header-logo span{font-size:1.1rem;font-weight:700;color:var(--color-white);letter-spacing:0.5px;white-space:nowrap}

.nav{display:flex;align-items:center;gap:2px}
.nav > li{position:relative}
.nav > li > a,.services-nav-link{display:flex;align-items:center;gap:4px;padding:8px 14px;color:rgba(255,255,255,0.85);font-size:0.92rem;font-weight:500;transition:color var(--transition);border-radius:var(--radius-sm);white-space:nowrap}
.nav > li > a:hover,
.nav > li > a.active,.services-nav-link:hover,.services-nav-link.active{color:var(--color-orange)}
.services-nav-control{display:flex;align-items:center}
.nav .dropdown-toggle{display:flex;align-items:center;justify-content:center;padding:8px 10px 8px 0;color:rgba(255,255,255,0.85);background:transparent;border:0;cursor:pointer}
.nav .dropdown-toggle svg{width:12px;height:12px;transition:transform var(--transition)}
.nav .dropdown-toggle:hover{color:var(--color-orange)}
.nav li:hover .dropdown-toggle svg,.nav li.is-open .dropdown-toggle svg{transform:rotate(180deg)}

.dropdown-menu{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(8px);background:var(--color-white);border-radius:var(--radius-md);box-shadow:0 10px 40px rgba(0,0,0,0.15);min-width:200px;opacity:0;visibility:hidden;transition:all var(--transition);padding:6px;z-index:100}
.nav li:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(4px)}
.dropdown-menu a{display:block;padding:9px 14px;color:var(--color-text);font-size:0.88rem;border-radius:var(--radius-sm);transition:background var(--transition),color var(--transition)}
.dropdown-menu a:hover{background:var(--color-orange-light);color:var(--color-orange)}

.header-actions{display:flex;align-items:center;gap:8px;flex-shrink:0}
.lang-toggle{height:38px;min-width:78px;display:inline-flex;align-items:center;justify-content:center;gap:2px;padding:3px;color:rgba(255,255,255,.92);font-family:var(--font-en);font-size:.72rem;font-weight:760;letter-spacing:.06em;border:1px solid rgba(255,255,255,.22);border-radius:6px;transition:border-color 180ms ease,background-color 180ms ease;cursor:pointer}
.lang-toggle-option{display:grid;min-width:31px;height:30px;place-items:center;padding:0 5px;border-radius:3px;line-height:1;transition:color 180ms ease,background-color 180ms ease}
.lang-toggle-current{color:#fff;background:var(--color-orange);font-weight:820}
.lang-toggle-next{color:rgba(255,255,255,.62)}
.lang-toggle svg{width:15px;height:15px;color:var(--color-orange);flex-shrink:0}
.lang-toggle:hover{border-color:rgba(245,130,32,.82);background:rgba(3,20,43,.42);color:var(--color-white);transform:none}
.lang-toggle:hover .lang-toggle-next{color:rgba(255,255,255,.88)}
.header-quote-btn{height:38px;display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:0 12px 0 15px;border:1px solid rgba(255,186,111,0.45);border-radius:999px;background:linear-gradient(135deg,#f79338 0%,#f36f18 100%);box-shadow:0 7px 18px rgba(245,130,32,0.22);color:var(--color-white);font-size:0.82rem;font-weight:700;white-space:nowrap;transition:transform var(--transition),box-shadow var(--transition),filter var(--transition)}
.header-quote-btn svg{width:15px;height:15px;transition:transform var(--transition)}
.header-quote-btn:hover{color:var(--color-white);filter:brightness(1.05);transform:translateY(-1px);box-shadow:0 10px 22px rgba(245,130,32,0.34)}
.header-quote-btn:hover svg{transform:translateX(2px)}

/* Mobile Menu Toggle */
.menu-toggle{display:none;flex-direction:column;gap:5px;padding:8px;background:none;border:none;cursor:pointer}
.menu-toggle span{display:block;width:24px;height:2px;background:var(--color-white);border-radius:2px;transition:all var(--transition)}
.menu-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* Mobile Nav Overlay */
.nav-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.5);z-index:998;opacity:0;visibility:hidden;transition:all var(--transition)}
.nav-overlay.active{opacity:1;visibility:visible}
.mobile-nav{position:fixed;top:0;right:-320px;width:300px;height:100vh;background:var(--color-white);z-index:999;overflow-y:auto;transition:right 0.35s ease;padding:80px 24px 40px}
.mobile-nav.active{right:0}
.mobile-nav a{display:block;padding:14px 0;font-size:1rem;color:var(--color-text);border-bottom:1px solid var(--color-border);font-weight:500}
.mobile-nav a:hover{color:var(--color-orange)}
.mobile-nav .mobile-sub{display:none;padding-left:16px}
.mobile-nav .mobile-sub.open{display:block}
.mobile-nav .mobile-sub a{font-size:0.9rem;padding:10px 0;font-weight:400;border-bottom:1px solid rgba(0,0,0,0.05)}
.mobile-services-control{display:flex;align-items:center;border-bottom:1px solid var(--color-border)}
.mobile-services-control a{flex:1;border-bottom:0}
.mobile-sub-toggle{display:flex;align-items:center;justify-content:center;padding:14px 0 14px 14px;background:transparent;border:0;color:var(--color-text);cursor:pointer}
.mobile-sub-toggle svg{width:16px;height:16px;transition:transform var(--transition)}
.mobile-sub-toggle.open svg{transform:rotate(180deg)}

@media(max-width:1024px){.nav{display:none}.menu-toggle{display:flex}}
@media(max-width:600px){.header .container{padding:0 14px}.header-quote-btn{width:40px;padding:0}.header-quote-btn span{display:none}.lang-toggle{min-width:46px;padding:0 9px}.lang-toggle svg{width:16px;height:16px}.header-logo img{height:30px}.header-logo span{font-size:0.92rem}}

/* ===== Hero Carousel ===== */
.hero{position:relative;min-height:820px;display:flex;align-items:center;overflow:hidden;background:var(--color-navy)}
.hero-carousel{position:absolute;inset:0}
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity 1.2s ease;z-index:1}
.hero-slide.active{opacity:1;z-index:2}
.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.15);
  transition:transform 6s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s ease;
}
.hero-slide.active img{
  transform:scale(1.0);
}
.hero-slide:nth-child(1) img{object-position:center 30%}
.hero-slide:nth-child(2) img{object-position:center 40%}
.hero-slide:nth-child(3) img{object-position:center 35%}

.hero-overlay{position:absolute;inset:0;z-index:3;background:linear-gradient(135deg,rgba(7,27,56,0.65) 0%,rgba(7,27,56,0.3) 50%,rgba(7,27,56,0.05) 100%)}
.hero .container{position:relative;z-index:4;padding:180px 20px 140px}

/* ===== Core Services (Plan 2 / 方案二 Compact Redesign) ===== */
.home-services-section {
  padding: 56px 0 64px 0;
  background: #ffffff;
  overflow: visible;
}

.home-services-section .section-heading {
  text-align: center;
  margin-bottom: 28px;
}
.home-services-section .section-heading h2 {
  font-size: 32px;
  font-weight: 800;
  color: #071b38;
  margin: 0;
}

/* Wide Container for max 1600px grandeur */
.services-wide-container {
  max-width: 1600px;
  padding: 0 32px;
  margin: 0 auto;
}

/* Large Outer Rounded Container with Background Image & Gradient Mask */
.services-plan2-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(7, 27, 56, 0.07);
  border: 1px solid #e2e8f0;
  background: #071b38; /* fallback */
  isolation: isolate;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.services-plan2-bg {
  position: absolute;
  inset: 0;
  background: url('../images/services/core-services-bg.webp?v=20260810-image-opt-v1') no-repeat center center / cover;
  z-index: 1;
}

/* Luminous Overlay: Left translucent white/light gradient for text, right reveals vessel image */
.services-plan2-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.92) 34%,
    rgba(240, 246, 252, 0.65) 55%,
    rgba(7, 27, 56, 0.25) 100%
  );
}

.services-plan2-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  padding: 32px 40px;
  gap: 36px;
  width: 100%;
}

/* Left Side: Active Service Detail Showcase (~34%) */
.service-left-showcase {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.service-left-showcase.switching {
  opacity: 0;
  transform: translateY(4px);
}

.svc-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f58220 0%, #ff6b00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(245, 130, 32, 0.3);
}
.svc-icon-badge svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.svc-zh-title {
  font-size: 28px;
  font-weight: 800;
  color: #071b38;
  margin: 0 0 2px 0;
  letter-spacing: -0.5px;
}
.svc-en-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #f58220;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}
.svc-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 18px 0;
}

.svc-light-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #071b38;
  text-decoration: none;
  transition: all 0.25s ease;
}
.svc-light-link:hover {
  color: #f58220;
}
.svc-light-link svg {
  width: 16px;
  height: 16px;
  stroke: #f58220;
  transition: transform 0.25s ease;
}
.svc-light-link:hover svg {
  transform: translateX(4px);
}

/* Right Side: 2x4 Unclipped Grid Matrix */
.service-right-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.service-matrix-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 18px rgba(7, 27, 56, 0.04);
  outline: none;
  box-sizing: border-box;
}

.service-matrix-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(7, 27, 56, 0.08);
}

/* Active State */
.service-matrix-card.active {
  background: #ffffff;
  border: 2px solid #f58220;
  box-shadow: 0 12px 30px rgba(245, 130, 32, 0.18);
  transform: translateY(-2px);
}

.service-matrix-card .card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.service-matrix-card.active .card-icon {
  background: rgba(245, 130, 32, 0.1);
}
.service-matrix-card .card-icon svg {
  width: 20px;
  height: 20px;
  stroke: #071b38;
  transition: stroke 0.25s ease;
}
.service-matrix-card.active .card-icon svg {
  stroke: #f58220;
}

.service-matrix-card .card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.service-matrix-card .card-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #071b38;
  margin: 0;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.service-matrix-card.active .card-text h4 {
  color: #f58220;
}
.service-matrix-card .card-text span {
  font-size: 11px;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease;
}
.service-matrix-card.active .card-text span {
  color: #f58220;
}

/* ===== Advantage Routes Showcase (1:1 Plan 1 Exact Layout Redesign) ===== */
.routes-plan1-section {
  background: #f8fafc;
  padding: 64px 0 80px 0;
  position: relative;
}

/* Wide Container (~1560px for elegant near-edge alignment) */
.routes-plan1-container {
  max-width: 1560px;
  padding: 0 32px;
  margin: 0 auto;
}

.routes-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.title-dash {
  width: 24px;
  height: 3px;
  background: #f58220;
  border-radius: 2px;
}

.routes-plan1-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: center;
}

/* Left Photo Hero Card (~68% width) */
.routes-hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: 0 16px 40px rgba(7, 27, 56, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}

.routes-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  transform: scale(1.01);
  transform-origin: center;
}

.routes-card-bg-enter {
  z-index: 2;
  will-change: clip-path, transform;
  transition:
    clip-path 640ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.routes-card-bg-enter.route-bg-forward {
  clip-path: inset(0 100% 0 0 round 0);
  transform: translateX(4%) scale(1.045);
}

.routes-card-bg-enter.route-bg-backward {
  clip-path: inset(0 0 0 100% round 0);
  transform: translateX(-4%) scale(1.045);
}

.routes-card-bg-enter.is-entering {
  clip-path: inset(0 0 0 0 round 0);
  transform: translateX(0) scale(1.01);
}

.routes-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(7, 27, 56, 0.15) 0%,
    rgba(7, 27, 56, 0.55) 45%,
    rgba(7, 27, 56, 0.88) 100%
  );
}

.routes-card-content {
  position: relative;
  z-index: 10;
  padding: 44px 48px;
}

.routes-card-content.route-content-forward {
  animation: route-content-forward 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.routes-card-content.route-content-backward {
  animation: route-content-backward 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes route-content-forward {
  from { transform: translateX(18px); }
  to { transform: translateX(0); }
}

@keyframes route-content-backward {
  from { transform: translateX(-18px); }
  to { transform: translateX(0); }
}

.route-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #f58220;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.route-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px 0;
  line-height: 1.25;
}

.route-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 32px 0;
  max-width: 640px;
  line-height: 1.6;
}

.route-flags{display:flex;align-items:center;flex-wrap:wrap;gap:12px;margin:-14px 0 24px}
.route-markets-label{color:rgba(255,255,255,.68);font-size:.72rem;font-weight:650;letter-spacing:.06em;white-space:nowrap}
.route-flag-flow,.route-destination-flags{display:inline-flex;align-items:center;gap:6px}
.route-flag{display:block;width:32px;height:21px;object-fit:cover;border:1px solid rgba(255,255,255,.46);border-radius:4px;background:rgba(255,255,255,.94);box-shadow:0 3px 9px rgba(0,0,0,.14)}
.route-flag-origin{border-color:rgba(255,255,255,.7)}
.route-flag-arrow{display:inline-flex;width:19px;height:19px;align-items:center;justify-content:center;color:rgba(255,255,255,.78)}
.route-flag-arrow svg{width:18px;height:18px}

.route-adv-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.r1-adv-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}
.r1-adv-item .adv-icn {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.r1-adv-item .adv-icn svg {
  width: 20px;
  height: 20px;
  stroke: #f58220;
}
.r1-adv-item .adv-lbl {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* Right Vertical White Capsule Navigation Pills (~32% width) */
.routes-nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.r1-nav-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(7, 27, 56, 0.03);
  outline: none;
  position: relative;
}

.r1-nav-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(7, 27, 56, 0.06);
}

.r1-nav-item .item-idx {
  font-size: 15px;
  font-weight: 800;
  color: #94a3b8;
  transition: color 0.25s ease;
}

.r1-nav-item .item-title {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #071b38;
  transition: color 0.25s ease;
}

.r1-nav-item .active-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.25s ease;
}
.r1-nav-item .active-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
}

/* Orange Active Capsule Pill State (1:1 Reference Match) */
.r1-nav-item.active {
  background: linear-gradient(135deg, #f58220 0%, #ff6b00 100%);
  border-color: #f58220;
  box-shadow: 0 10px 28px rgba(245, 130, 32, 0.32);
  transform: translateX(4px);
}
.r1-nav-item.active .item-idx {
  color: rgba(255, 255, 255, 0.9);
}
.r1-nav-item.active .item-title {
  color: #ffffff;
  font-weight: 800;
}
.r1-nav-item.active .active-arrow {
  opacity: 1;
  transform: scale(1);
}

/* Responsive Rules */
@media (max-width: 1380px) {
  .routes-plan1-grid { grid-template-columns: 1fr 380px; gap: 24px; }
  .routes-card-content { padding: 36px 40px; }
  .route-title { font-size: 28px; }
}

@media (max-width: 1023px) {
  .routes-plan1-grid { grid-template-columns: 1fr; gap: 24px; }
  .routes-hero-card { min-height: 380px; }
  .routes-nav-list { flex-direction: column; }
}

@media (max-width: 767px) {
  .routes-plan1-container { padding: 0 16px; }
  .routes-card-content { padding: 24px; }
  .route-title { font-size: 24px; }
  .route-flags{gap:9px;margin:-16px 0 21px}
  .route-markets-label{width:100%}
  .route-flag{width:29px;height:19px}
  .route-adv-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .r1-nav-item { padding: 16px 20px; border-radius: 16px; }
}

@media (max-width: 390px) {
  .route-title { font-size: 22px; }
  .r1-nav-item .item-title { font-size: 14px; }
}

@media(max-width:992px){
  .routes-globe-wrapper{
    flex-direction:column;
    text-align:center;
  }
  .routes-stats-col{
    max-width:100%;
  }
  .routes-stat-number{
    justify-content:center;
  }
  .routes-globe-container{
    height:380px;
  }
}

.hero-content{max-width:680px}
.hero-content h1{font-size:clamp(2rem,4vw,3.25rem);font-weight:800;color:var(--color-white);line-height:1.2;margin-bottom:1.25rem;text-shadow:0 2px 10px rgba(0,0,0,0.4)}
.hero-content p{font-size:clamp(1rem,1.3vw,1.2rem);color:rgba(255,255,255,0.9);line-height:1.8;margin-bottom:2rem;max-width:580px}

/* Design Draft Buttons */
.hero-buttons{display:flex;gap:16px;flex-wrap:wrap;margin-top:2rem}
.btn-hero-primary, .btn-hero-white{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border-radius:8px;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  transition:all 0.3s ease;
  cursor:pointer;
}
.btn-hero-primary{
  background:#f58221;
  color:#ffffff;
  box-shadow:0 4px 16px rgba(245,130,33,0.35);
}
.btn-hero-primary:hover{
  background:#e07216;
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(245,130,33,0.45);
}
.btn-hero-white{
  background:#ffffff;
  color:#1e293b;
  box-shadow:0 4px 16px rgba(0,0,0,0.1);
}
.btn-hero-white:hover{
  background:#f8fafc;
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,0.15);
}
.btn-hero-primary svg, .btn-hero-white svg{
  width:18px;
  height:18px;
  transition:transform 0.3s ease;
}
.btn-hero-primary:hover svg, .btn-hero-white:hover svg{
  transform:translateX(3px);
}

@media(prefers-reduced-motion:reduce){.hero-slide{opacity:0;transition:none}.hero-slide.active{opacity:1}}

@media(max-width:768px){
  .hero{min-height:auto}
  .hero .container{padding:100px 20px 100px}
  .hero-content h1{font-size:clamp(1.6rem,5vw,2rem)}
  .hero-content p{font-size:0.95rem}
  .hero-buttons{gap:12px}
  .btn-hero-primary, .btn-hero-white{width:100%;justify-content:center;padding:12px 20px;font-size:15px}
}

/* ===== Floating Glassmorphic Stats Bar ===== */
.stats-bar-wrapper{
  position:relative;
  z-index:10;
  margin-top:-85px;
  margin-bottom:36px;
}
.stats-bar-wrapper .container{
  max-width:1480px;
  padding:0 24px;
}
.stats-card{
  background:rgba(10, 25, 47, 0.9);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,0.16);
  border-radius:18px;
  box-shadow:0 18px 45px rgba(0, 0, 0, 0.38);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:26px 40px;
  width:100%;
  box-sizing:border-box;
}
.stats-card .stat-item{
  display:flex;
  align-items:center;
  gap:16px;
  border-right:1px solid rgba(255,255,255,0.14);
  padding:0 24px;
  justify-content:center;
  flex:1;
  white-space:nowrap;
}
.stats-card .stat-item:first-child{
  padding-left:0;
  justify-content:flex-start;
  flex:1.2;
}
.stats-card .stat-item:last-child{
  border-right:none;
  padding-right:0;
}
.stats-card .stat-icon{
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.stats-card .stat-icon svg{
  width:22px;
  height:22px;
  stroke:var(--color-orange);
}
.stats-card .stat-text-group{
  display:flex;
  flex-direction:column;
}
.stats-card .stat-number{
  font-size:26px;
  font-weight:800;
  color:#ffffff;
  line-height:1.1;
  white-space:nowrap;
}
.stats-card .stat-number .unit{
  font-size:15px;
  font-weight:500;
  margin-left:2px;
}
.stats-card .stat-label{
  font-size:13px;
  color:rgba(255,255,255,0.75);
  margin-top:4px;
  white-space:nowrap;
}
.stats-card .stat-item-large .stat-main-num{
  font-size:25px;
  font-weight:800;
  color:#ffffff;
  white-space:nowrap;
}
.stats-card .stat-item-large .stat-sublabel{
  font-size:14px;
  color:rgba(255,255,255,0.85);
  white-space:nowrap;
}
.stats-card .stat-item-large .stat-bottom-desc{
  font-size:12px;
  color:rgba(255,255,255,0.65);
  margin-top:4px;
  white-space:nowrap;
}

@media(max-width:1180px){
  .stats-card{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px 0;
    padding:20px 24px;
  }
  .stats-card .stat-item{
    border-right:1px solid rgba(255,255,255,0.12);
    padding:8px 16px;
    justify-content:flex-start;
  }
  .stats-card .stat-item:nth-child(3){
    border-right:none;
  }
}
@media(max-width:768px){
  .stats-bar-wrapper{
    margin-top:-45px;
    margin-bottom:20px;
    padding:0 12px;
  }
  .stats-card{
    grid-template-columns:repeat(2, 1fr);
    border-radius:14px;
    padding:16px;
    gap:14px 0;
  }
  .stats-card .stat-item{
    padding:8px;
    gap:10px;
  }
  .stats-card .stat-item:nth-child(2){
    border-right:none;
  }
  .stats-card .stat-item:nth-child(4){
    border-right:none;
  }
  .stats-card .stat-icon{
    width:36px;
    height:36px;
  }
  .stats-card .stat-icon svg{
    width:18px;
    height:18px;
  }
  .stats-card .stat-number{
    font-size:20px;
  }
  .stats-card .stat-item-large .stat-main-num{
    font-size:20px;
  }
}
@media(max-width:480px){
  .stats-card{
    grid-template-columns:1fr;
  }
  .stats-card .stat-item{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,0.1);
    padding:10px 4px;
  }
  .stats-card .stat-item:last-child{
    border-bottom:none;
  }
}

@media(max-width:480px){
  .stats-card{
    grid-template-columns:1fr;
  }
  .stats-card .stat-item{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,0.1);
    padding:10px 4px;
  }
  .stats-card .stat-item:last-child{
    border-bottom:none;
  }
}

/* ===== Core Services ===== */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2vw,1.5rem)}
.service-card{background:var(--color-white);border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--color-border);transition:transform var(--transition),box-shadow var(--transition)}
.service-card:hover{transform:translateY(-5px);box-shadow:0 12px 40px rgba(7,27,56,0.1)}
.service-card-img{height:200px;overflow:hidden}
.service-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.service-card:hover .service-card-img img{transform:scale(1.05)}
.service-card-body{padding:clamp(1rem,1.5vw,1.5rem)}
.service-card-body h3{font-size:clamp(1rem,1.3vw,1.2rem);font-weight:700;color:var(--color-navy);margin-bottom:0.75rem;display:flex;align-items:center;gap:8px}
.service-card-body h3 svg{width:20px;height:20px;color:var(--color-orange);flex-shrink:0}
.service-card-body p{font-size:0.88rem;color:var(--color-muted);line-height:1.7;margin-bottom:0.35rem;padding-left:28px}
.service-card-body .btn-link{margin-top:0.75rem}
@media(max-width:768px){.services-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.services-grid{grid-template-columns:1fr}}



/* ===== Why Choose Us (Design Draft 1:1 - Compact Vertical Spacing) ===== */
.why-section {
  background: #07162c;
  color: #ffffff;
  padding: 42px 0 46px 0;
  width: 100%;
}
.why-full-container {
  width: 100%;
  max-width: 100%;
  padding: 0 48px;
  box-sizing: border-box;
}
.why-header-center {
  text-align: center;
  margin-bottom: 30px;
}
.why-title-main {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px 0;
}
.why-title-underline {
  width: 36px;
  height: 3px;
  background: #f58220;
  margin: 0 auto;
  border-radius: 2px;
}
.why-row-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.why-col-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-col-item:last-child {
  border-right: none;
}
.why-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #f58220;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: transparent;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.why-col-item:hover .why-icon-circle {
  transform: translateY(-4px);
  background: rgba(245, 130, 32, 0.18);
  border-color: #ff9838;
}
.why-icon-circle svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff;
}
.why-item-title {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  white-space: nowrap;
}
.why-item-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .why-full-container {
    padding: 0 24px;
  }
  .why-col-item {
    padding: 0 16px;
  }
}
@media (max-width: 1024px) {
  .why-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 0;
  }
  .why-col-item:nth-child(3) {
    border-right: none;
  }
}
@media (max-width: 640px) {
  .why-full-container {
    padding: 0 16px;
  }
  .why-row-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }
  .why-col-item {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0 12px;
  }
  .why-col-item:nth-child(2n) {
    border-right: none;
  }
}

/* ===== Qualifications & Core Capabilities ===== */
.qual-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,1.5vw,1.5rem)}
.qual-card{background:var(--color-white);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:clamp(1.25rem,2vw,1.75rem);transition:all var(--transition);display:flex;flex-direction:column}
.qual-card:hover{border-color:var(--color-orange);box-shadow:0 4px 20px rgba(245,130,32,0.08);transform:translateY(-3px)}
.qual-card svg{width:32px;height:32px;color:var(--color-orange);margin-bottom:0.75rem;display:block;flex-shrink:0}
.qual-card h4{font-size:1rem;font-weight:700;color:var(--color-navy);margin-bottom:0.5rem}
.qual-card p{font-size:0.86rem;color:var(--color-muted);line-height:1.7;flex:1}
@media(max-width:768px){.qual-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.qual-grid{grid-template-columns:1fr}}

/* Credential badges (about page) */
.creds-list{display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;margin-top:1.5rem}
.cred-badge{display:inline-flex;align-items:center;gap:10px;padding:14px 24px;background:var(--color-bg);border-radius:var(--radius-md);border:1px solid var(--color-border);font-weight:600;font-size:0.95rem;color:var(--color-navy)}
.cred-badge .cred-icon{width:28px;height:28px;flex-shrink:0;display:flex;align-items:center;justify-content:center}
.cred-badge .cred-icon svg{width:24px;height:24px;color:var(--color-orange);display:block}
.cred-badge span{line-height:1.4}

/* Partner badges section */
.partners-row{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;margin-top:2rem}
.partner-badge{display:inline-flex;align-items:center;justify-content:center;min-width:160px;height:56px;padding:0 28px;background:var(--color-white);border:1px solid var(--color-border);border-radius:var(--radius-md);font-weight:700;font-size:1rem;color:var(--color-navy);letter-spacing:1.5px;transition:all var(--transition)}
.partner-badge:hover{border-color:var(--color-orange);box-shadow:0 4px 16px rgba(245,130,32,0.1)}
.partners-logo-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px;max-width:1100px;margin:2rem auto 0}
.partner-logo-card{min-height:86px;padding:16px 20px;display:flex;align-items:center;justify-content:center;background:var(--color-white);border:1px solid var(--color-border);border-radius:var(--radius-md);transition:all var(--transition)}
.partner-logo-card:hover{border-color:var(--color-orange);box-shadow:0 8px 20px rgba(7,27,56,0.08);transform:translateY(-2px)}
.partner-logo-card img{display:block;width:100%;height:42px;max-width:150px;object-fit:contain}
@media(max-width:1024px){.partners-logo-grid{grid-template-columns:repeat(3,minmax(0,1fr));max-width:720px}}
@media(max-width:480px){.partners-logo-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.partner-logo-card{min-height:72px;padding:12px}.partner-logo-card img{height:32px}}

/* ===== Team Section ===== */
.team-showcase{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,3vw,3rem);align-items:stretch}
.team-showcase-images{display:grid;grid-template-columns:1fr 1fr;gap:0.75rem}
.team-showcase-images img{width:100%;height:auto;border-radius:var(--radius-md);object-fit:cover;aspect-ratio:4/3;box-shadow:0 4px 16px rgba(7,27,56,0.08)}
.team-showcase-content{display:flex;flex-direction:column;justify-content:center}
.team-showcase-content h3{font-size:1.5rem;font-weight:700;color:var(--color-navy);margin-bottom:0.5rem}
.team-showcase-content .subtitle{font-size:0.95rem;color:var(--color-muted);line-height:1.8;margin-bottom:1.5rem}
.team-showcase-depts{display:grid;grid-template-columns:repeat(2,1fr);gap:0.6rem}
.team-showcase-depts .dept-item{display:flex;align-items:center;gap:8px;padding:10px 12px;background:var(--color-bg);border-radius:var(--radius-sm);font-size:0.88rem;color:var(--color-text);transition:background var(--transition)}
.team-showcase-depts .dept-item:hover{background:var(--color-orange-light)}
.team-showcase-depts .dept-item svg{width:16px;height:16px;color:var(--color-orange);flex-shrink:0}
@media(max-width:1024px){.team-showcase{grid-template-columns:1fr}}
@media(max-width:768px){.team-showcase-depts{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.team-showcase-images{grid-template-columns:1fr}.team-showcase-depts{grid-template-columns:1fr}}

/* Team images (about page) */
.team-images{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.team-images img{width:100%;height:auto;border-radius:var(--radius-md);object-fit:cover;aspect-ratio:16/10}
.team-depts{display:grid;grid-template-columns:repeat(3,1fr);gap:0.75rem;margin-top:1.5rem}
.team-depts span{display:flex;align-items:center;gap:6px;font-size:0.9rem;color:var(--color-text);padding:8px 12px;background:var(--color-bg);border-radius:var(--radius-sm)}
.team-depts span svg{width:16px;height:16px;color:var(--color-orange);flex-shrink:0}
@media(max-width:480px){.team-images{grid-template-columns:1fr}}

/* ===== CTA Section ===== */
.cta-section{background:var(--color-navy);color:var(--color-white);text-align:center;padding:clamp(1.8rem,2.5vw,2.4rem) 0 1.35rem}
.cta-section h2{font-size:clamp(1.35rem,2.2vw,1.8rem);font-weight:700;margin-bottom:0.95rem}
.cta-section .btn{margin:0 6px}
.cta-section .cta-quote-btn{height:46px;min-width:142px;padding:0 16px 0 19px;border-radius:999px;background:linear-gradient(135deg,#ff9a3e 0%,#f36f18 100%);border-color:rgba(255,195,130,0.55);box-shadow:0 9px 20px rgba(245,130,32,0.23);font-size:0.9rem;letter-spacing:0.02em}
.cta-section .cta-quote-btn:hover{background:linear-gradient(135deg,#ffad57 0%,#f58220 100%);box-shadow:0 12px 26px rgba(245,130,32,0.34);transform:translateY(-2px)}
.cta-section .cta-quote-btn svg{width:17px;height:17px}
.cta-section .cta-quote-btn:hover svg{transform:translateX(3px)}

/* ===== Footer ===== */
.footer{background:var(--color-navy);color:rgba(255,255,255,0.7);padding:clamp(2rem,3vw,2.75rem) 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:clamp(1.5rem,2.5vw,2.5rem);padding-bottom:2.5rem}
.footer-brand p{font-size:0.88rem;line-height:1.8;margin-top:1rem;max-width:320px}
.footer-col h4{font-size:1rem;font-weight:700;color:var(--color-white);margin-bottom:1.15rem}
.footer-col a{display:block;padding:4px 0;font-size:0.86rem;color:rgba(255,255,255,0.6);transition:color var(--transition)}
.footer-col a:hover{color:var(--color-orange)}
.footer-contact a{display:flex;align-items:flex-start;gap:8px;margin-bottom:6px;font-size:0.86rem}
.footer-contact svg{width:16px;height:16px;color:var(--color-orange);flex-shrink:0;margin-top:3px}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);padding:1.25rem 0;display:flex;justify-content:space-between;align-items:center;font-size:0.84rem;flex-wrap:wrap;gap:0.5rem}

@media(max-width:1024px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:768px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:1.5rem}
  .footer-brand{grid-column:1/-1}
}
@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center;gap:0.75rem}
}

/* ===== News Home Section moved to assets/css/home-news.css ===== */



/* ===== News Cards (list page) ===== */
.news-card{background:var(--color-white);border-radius:var(--radius-md);overflow:hidden;border:1px solid var(--color-border);display:flex;flex-direction:column;transition:transform var(--transition),box-shadow var(--transition)}
.news-card:hover{transform:translateY(-4px);box-shadow:0 8px 30px rgba(7,27,56,0.1)}
.news-card-img{height:200px;overflow:hidden;position:relative}
.news-card-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease}
.news-card:hover .news-card-img img{transform:scale(1.05)}
.news-card-cat{position:absolute;top:12px;left:12px}
.news-card-body{padding:1.25rem;flex:1;display:flex;flex-direction:column}
.news-card-date{font-size:0.8rem;color:var(--color-muted);margin-bottom:0.5rem}
.news-card-body h3{font-size:1.02rem;font-weight:700;color:var(--color-navy);margin-bottom:0.5rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.news-card-body p{font-size:0.85rem;color:var(--color-muted);line-height:1.6;flex:1;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:0.75rem}
.news-card-body .btn-link{margin-top:auto}

/* ===== Pagination ===== */
.pagination{display:flex;justify-content:center;align-items:center;gap:8px;margin-top:2.5rem}
.pagination a,.pagination span{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:var(--radius-sm);font-size:0.9rem;font-weight:500;transition:all var(--transition);border:1px solid var(--color-border);color:var(--color-text)}
.pagination a:hover,.pagination a.active{background:var(--color-orange);color:var(--color-white);border-color:var(--color-orange)}
.pagination .disabled{opacity:0.4;pointer-events:none}
.pagination .next,.pagination .prev{width:auto;padding:0 16px;gap:6px;display:flex}

/* ===== Service Query ===== */
.query-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2vw,1.5rem)}
.query-card{background:var(--color-white);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:clamp(1.25rem,2vw,2rem);text-align:center;transition:all var(--transition)}
.query-card:hover{border-color:var(--color-orange);box-shadow:0 4px 20px rgba(245,130,32,0.1)}
.query-card svg{width:36px;height:36px;color:var(--color-orange);margin:0 auto 0.75rem;display:block}
.query-card h4{font-size:1.02rem;font-weight:700;color:var(--color-navy);margin-bottom:0.5rem}
.query-card p{font-size:0.85rem;color:var(--color-muted);margin-bottom:0.5rem;line-height:1.6}
.query-card .btn{width:100%;justify-content:center}

@media(max-width:1024px){.query-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.query-grid{grid-template-columns:1fr}}

/* ===== Service Query · Reference Card Layout ===== */
.query-page-tools{position:relative;isolation:isolate;overflow:hidden;padding:76px 0 92px;background:linear-gradient(135deg,#f7faff 0%,#f2f6fb 52%,#fbfcfe 100%)}
.query-page-tools::before{position:absolute;inset:0;z-index:-2;content:"";background:radial-gradient(circle at 8% 24%,rgba(112,149,194,.12) 0 2px,transparent 2.5px),radial-gradient(circle at 90% 74%,rgba(112,149,194,.1) 0 2px,transparent 2.5px),linear-gradient(125deg,transparent 16%,rgba(122,150,183,.08) 16.1% 16.25%,transparent 16.35% 44%,rgba(122,150,183,.06) 44.1% 44.25%,transparent 44.35%);background-size:27px 27px,31px 31px,100% 100%;opacity:.58}
.query-page-tools::after{position:absolute;z-index:-1;top:18%;right:-13%;width:62%;height:62%;border:1px solid rgba(104,139,180,.12);border-radius:50%;box-shadow:0 0 0 48px rgba(104,139,180,.025),0 0 0 122px rgba(104,139,180,.018);content:""}
.query-page-tools .container{position:relative;width:min(100% - 48px,1280px)}
.query-page-tools .query-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px 26px}
.query-page-tools .query-card{display:flex;grid-column:span 1;min-height:308px;padding:30px 32px 28px;flex-direction:column;align-items:flex-start;text-align:left;background:rgba(255,255,255,.93);border:1px solid #e6ecf4;border-radius:18px;box-shadow:0 10px 28px rgba(7,27,56,.075);backdrop-filter:blur(7px)}
.query-page-tools .query-card:hover{border-color:rgba(245,130,32,.48);box-shadow:0 17px 34px rgba(7,27,56,.11);transform:translateY(-4px)}
.query-page-tools .query-card>svg:first-child{flex:0 0 auto;width:82px;height:82px;margin:0 0 22px;padding:21px;color:var(--color-orange);background:linear-gradient(145deg,#f7f9fc,#edf2f7);border-radius:50%;box-shadow:inset 0 1px 1px rgba(255,255,255,.82)}
.query-page-tools .query-card h4{min-height:2.55em;margin:0 0 8px;color:var(--color-navy);font-size:clamp(1.18rem,1.45vw,1.36rem);font-weight:760;line-height:1.27;letter-spacing:-.02em;overflow-wrap:normal;word-break:normal}
.query-page-tools .query-card>p{min-height:4.85em;margin:0;color:#718198;font-size:.88rem;line-height:1.62;overflow-wrap:normal;word-break:normal}
.query-page-tools .query-card .btn{align-self:stretch;width:100%;height:52px;margin-top:auto;padding:0 18px;color:#fff;background:linear-gradient(90deg,#08284f,#113b6c);border:1px solid rgba(255,255,255,.12);border-radius:8px;box-shadow:0 7px 14px rgba(7,27,56,.13);font-size:.96rem;font-weight:720;transition:transform 180ms ease,background-color 180ms ease,box-shadow 180ms ease}
.query-page-tools:lang(en) .query-card h4{font-size:clamp(1.14rem,1.38vw,1.3rem);letter-spacing:-.025em}
.query-page-tools:lang(en) .query-card>p{font-size:.86rem;line-height:1.58}
.query-page-tools .query-card .btn:hover{background:linear-gradient(90deg,#0b315e,#174879);box-shadow:0 10px 18px rgba(7,27,56,.19);transform:translateY(-1px)}
.query-page-tools .query-card .btn svg{width:17px;height:17px;margin:0 0 0 5px;color:inherit}

@media(max-width:980px){
  .query-page-tools{padding:58px 0 70px}
  .query-page-tools .query-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
  .query-page-tools .query-card,.query-page-tools .query-card:nth-child(4){grid-column:auto}
  .query-page-tools .query-card:nth-child(5){grid-column:1/-1}
}

@media(max-width:620px){
  .query-page-tools{padding:42px 0 54px}
  .query-page-tools .container{width:min(100% - 32px,1280px)}
  .query-page-tools .query-grid{grid-template-columns:1fr;gap:14px}
  .query-page-tools .query-card,.query-page-tools .query-card:nth-child(4),.query-page-tools .query-card:nth-child(5){grid-column:auto;min-height:0;padding:22px 20px 20px}
  .query-page-tools .query-card>svg:first-child{width:68px;height:68px;margin-bottom:18px;padding:17px}
  .query-page-tools .query-card h4{min-height:0;font-size:1.08rem}
  .query-page-tools .query-card>p{min-height:0;font-size:.8rem}
  .query-page-tools .query-card .btn{height:46px;margin-top:19px;font-size:.88rem}
}

/* ===== Careers & Contact ===== */
.contact-page-section{background:linear-gradient(180deg,#f8fafc 0%,#fff 100%)}
.contact-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:clamp(2rem,4vw,4rem);align-items:stretch}
.contact-panel,.contact-map-panel{min-width:0}
.contact-panel-heading{margin-bottom:1rem}
.contact-panel-heading span{display:block;margin-top:0.45rem;font-family:var(--font-en);font-size:0.7rem;font-weight:700;letter-spacing:0.16em;color:#94a3b8}
.contact-panel-heading h2{margin:0;color:var(--color-navy);font-size:1.5rem;font-weight:750;line-height:1.3}
:root[lang^="en"] .contact-panel-heading span{display:none}
.contact-card-stack{display:grid;gap:14px}
.contact-card{display:grid;grid-template-columns:44px minmax(0,1fr);gap:14px;align-items:start;padding:1.25rem 1.35rem;background:var(--color-white);border:1px solid rgba(7,27,56,0.11);border-radius:16px;box-shadow:0 7px 18px rgba(7,27,56,0.035);transition:transform var(--transition),border-color var(--transition),box-shadow var(--transition)}
.contact-card:hover{transform:translateY(-2px);border-color:rgba(245,130,32,0.65);box-shadow:0 12px 24px rgba(7,27,56,0.08)}
.contact-card-icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;border-radius:12px;background:var(--color-orange-light);color:var(--color-orange);flex-shrink:0}
.contact-card-icon svg{width:22px;height:22px}
.contact-card h3{margin:2px 0 0.45rem;color:var(--color-navy);font-size:1.03rem;font-weight:700;line-height:1.4}
.contact-card p{margin:0;color:var(--color-muted);font-size:0.91rem;line-height:1.65}
.contact-card a{color:var(--color-orange);font-weight:650;overflow-wrap:anywhere}
.contact-office-card{min-height:104px}
.contact-quick-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.contact-quick-card{min-height:102px;padding:1.15rem;gap:12px}
.contact-quick-card .contact-card-icon{width:40px;height:40px;border-radius:11px}
.contact-quick-card h3{font-size:0.96rem}
.contact-quick-card p{font-size:0.85rem}
.contact-wechat-card{display:flex;align-items:center;justify-content:space-between;gap:1.25rem;padding:1.25rem 1.35rem;background:#fff}
.contact-wechat-content{display:flex;gap:14px;align-items:flex-start;flex:1;min-width:0}
.contact-wechat-text h3{margin:2px 0 0.35rem;color:var(--color-navy);font-size:1.03rem;font-weight:700;line-height:1.4}
.contact-wechat-text p{margin:0 0 0.6rem;color:var(--color-muted);font-size:0.86rem;line-height:1.55}
.contact-wechat-tags{display:flex;gap:8px;flex-wrap:wrap}
.contact-tag{display:inline-flex;align-items:center;padding:3px 10px;background:rgba(245,130,32,0.08);color:var(--color-orange);font-size:0.75rem;font-weight:600;border-radius:6px;border:1px solid rgba(245,130,32,0.18)}
.contact-wechat-qr-wrap{flex-shrink:0;padding:8px;background:#ffffff;border:1px solid rgba(7,27,56,0.10);border-radius:12px;box-shadow:0 4px 14px rgba(7,27,56,0.06);display:flex;align-items:center;justify-content:center}
.contact-wechat-qr-wrap img{display:block;width:115px;height:115px;object-fit:contain;border-radius:4px}
.contact-map-panel{height:100%;display:flex;flex-direction:column;padding:1.35rem;background:var(--color-white);border:1px solid rgba(7,27,56,0.11);border-radius:18px;box-shadow:0 10px 28px rgba(7,27,56,0.05)}
.contact-map-panel .contact-panel-heading{padding:0 0.15rem;margin-bottom:1rem}
.contact-map-stack{display:grid;min-height:0;flex:1;grid-template-rows:minmax(0,1fr);gap:14px}
.contact-map-office{display:flex;min-height:0;flex-direction:column}
.contact-map-office-heading{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin:0 2px 7px;color:var(--color-navy)}
.contact-map-office-heading strong{font-size:.88rem;font-weight:740;line-height:1.25}
.contact-map-office-heading span{color:#9ba8b8;font-family:var(--font-en);font-size:.59rem;font-weight:700;letter-spacing:.12em;line-height:1.25}
.contact-map{position:relative;width:100%;min-height:0;flex:1;overflow:hidden;border:1px solid rgba(7,27,56,0.10);border-radius:11px;background:#eef3f8}
.contact-map iframe{width:100%;height:100%;min-height:0;border:none;display:block}
.contact-map-baidu{position:absolute;z-index:2;inset:0;visibility:hidden;width:100%;height:100%;min-height:100%;opacity:0;pointer-events:none;transition:opacity .2s ease}
.contact-map.is-baidu-active .contact-map-baidu{visibility:visible;opacity:1;pointer-events:auto}
.contact-map.is-baidu-active>iframe,.contact-map.is-baidu-active>.contact-map-mobile-fallback{display:none}
.contact-map-baidu .skd-map-address{padding-top:5px;color:#596b82;font-size:12px;line-height:1.55}
.contact-message-panel{margin-top:clamp(2rem,4vw,3.25rem);padding:clamp(1.5rem,3.2vw,2.5rem);background:#fff;border:1px solid rgba(7,27,56,.11);border-radius:18px;box-shadow:0 10px 28px rgba(7,27,56,.05)}
.contact-message-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;padding-bottom:1.4rem;margin-bottom:1.5rem;border-bottom:1px solid rgba(7,27,56,.09)}
.contact-message-heading h2{margin:0;color:var(--color-navy);font-size:1.5rem;font-weight:750;line-height:1.3}
.contact-message-heading span{display:block;margin-top:.45rem;color:#94a3b8;font-family:var(--font-en);font-size:.7rem;font-weight:700;letter-spacing:.16em}
.contact-message-heading p{max-width:520px;margin:0;color:var(--color-muted);font-size:.9rem;line-height:1.7;text-align:right}
.contact-message-fields{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.2rem}
.contact-message-field{display:flex;min-width:0;flex-direction:column;gap:.55rem;color:var(--color-navy);font-size:.86rem;font-weight:650}
.contact-message-field>span{display:block}
.contact-message-field em{margin-left:4px;color:var(--color-orange);font-style:normal}
.contact-message-field input,.contact-message-field textarea{width:100%;color:var(--color-navy);background:#f8fafc;border:1px solid #dce4ed;border-radius:10px;outline:none;font:inherit;font-weight:400;transition:border-color .2s ease,box-shadow .2s ease,background-color .2s ease}
.contact-message-field input{height:48px;padding:0 14px}
.contact-message-field textarea{min-height:132px;padding:13px 14px;line-height:1.65;resize:vertical}
.contact-message-field input:focus,.contact-message-field textarea:focus{background:#fff;border-color:rgba(245,130,32,.8);box-shadow:0 0 0 3px rgba(245,130,32,.1)}
.contact-message-field input[aria-invalid="true"],.contact-message-field textarea[aria-invalid="true"]{border-color:#d64545}
.contact-message-contact-requirement{grid-column:1/-1;display:flex;align-items:center;justify-content:flex-end;gap:6px;margin:-.35rem 0 0;color:#7b8798;font-size:.73rem;line-height:1.45}
.contact-message-contact-requirement em{color:var(--color-orange);font-style:normal;font-weight:800}
.contact-message-field-wide{grid-column:1/-1}
.contact-message-error{min-height:1em;color:#c73737;font-size:.7rem;font-weight:500;line-height:1.35}
.contact-message-actions{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;margin-top:1.25rem}
.contact-message-actions p{max-width:650px;margin:0;color:#8795a9;font-size:.75rem;line-height:1.6}
.contact-message-submit{min-width:154px;justify-content:center}
.contact-message-submit svg{width:17px;height:17px}
.contact-message-submit:disabled{cursor:wait;opacity:.7}
.contact-message-status{min-height:1.5em;margin-top:.8rem;font-size:.78rem;font-weight:600;text-align:right}
.contact-message-status.is-success{color:#16865c}
.contact-message-status.is-error{color:#c73737}
.contact-message-status.is-info{color:#526985}
.contact-message-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
@media(max-width:900px){.contact-grid{grid-template-columns:1fr;align-items:start}.contact-map-panel{height:auto}.contact-map-stack{min-height:420px}.contact-map{min-height:0;flex:1}.contact-map iframe{min-height:0}}
@media(max-width:520px){.contact-card{padding:1.1rem;gap:12px}.contact-quick-grid{grid-template-columns:1fr}.contact-wechat-card{flex-direction:column;align-items:center;text-align:center;padding:1.2rem 1.1rem}.contact-wechat-content{flex-direction:column;align-items:center}.contact-wechat-tags{justify-content:center}.contact-wechat-qr-wrap img{width:110px;height:110px}.contact-map-panel{padding:1rem}.contact-map-stack{min-height:330px}.contact-map,.contact-map iframe{min-height:0}.contact-map-office-heading{margin-bottom:6px}.contact-map-office-heading strong{font-size:.82rem}.contact-map-office-heading span{font-size:.53rem}}
@media(max-width:760px){.contact-message-panel{padding:1.3rem 1rem}.contact-message-heading{align-items:flex-start;flex-direction:column;gap:.8rem}.contact-message-heading p{text-align:left}.contact-message-fields{grid-template-columns:1fr}.contact-message-contact-requirement{grid-column:auto;justify-content:flex-start}.contact-message-field-wide{grid-column:auto}.contact-message-actions{align-items:stretch;flex-direction:column}.contact-message-submit{width:100%}.contact-message-status{text-align:left}}

.job-filters{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:2rem}
.job-filters button{padding:8px 20px;border-radius:20px;border:1px solid var(--color-border);font-size:0.9rem;color:var(--color-muted);transition:all var(--transition);cursor:pointer;background:var(--color-white)}
.job-filters button.active,.job-filters button:hover{background:var(--color-orange);color:var(--color-white);border-color:var(--color-orange)}
.job-card{background:var(--color-white);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:clamp(1.25rem,2vw,1.75rem);margin-bottom:1rem;transition:all var(--transition)}
.job-card:hover{border-color:var(--color-orange);box-shadow:0 4px 20px rgba(245,130,32,0.08)}
.job-card h3{font-size:1.1rem;font-weight:700;color:var(--color-navy);margin-bottom:0.5rem}
.job-card .job-meta{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:0.75rem}
.job-card .job-meta span{display:flex;align-items:center;gap:6px;font-size:0.85rem;color:var(--color-muted)}
.job-card .job-meta svg{width:14px;height:14px;color:var(--color-orange)}
.job-detail-content{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--color-border);display:none}
.job-detail-content.open{display:block}
.job-detail-content h4{font-size:0.95rem;font-weight:700;color:var(--color-navy);margin:1rem 0 0.5rem}
.job-detail-content ul{padding-left:1.25rem;list-style:disc}
.job-detail-content li{font-size:0.86rem;color:var(--color-muted);line-height:1.7;margin-bottom:4px}

/* ===== Careers Page Redesign ===== */
.careers-openings{background:linear-gradient(180deg,#eef3f9 0%,var(--color-bg) 100%);padding:clamp(3rem,6vw,5.25rem) 0}
.careers-openings-header{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;padding-bottom:2rem;border-bottom:1px solid rgba(7,27,56,0.12)}
.jobs-kicker{display:block;margin-top:.6rem;font-family:var(--font-en);font-size:0.75rem;font-weight:700;letter-spacing:0.16em;color:#94a3b8}
.careers-openings-header h2{font-size:clamp(2rem,3.2vw,3rem);line-height:1.15;font-weight:700;color:var(--color-navy);margin:0}
:root[lang^="en"] .jobs-kicker{display:none}
.careers-openings-header p{max-width:520px;color:var(--color-muted);font-size:1rem;line-height:1.7;margin:0}
.jobs-apply{flex-shrink:0}
.careers-openings .job-filters{margin:2rem 0 1.5rem;padding:6px;width:max-content;max-width:100%;background:rgba(255,255,255,0.82);border:1px solid rgba(7,27,56,0.08);border-radius:999px;box-shadow:0 6px 20px rgba(7,27,56,0.04)}
.careers-openings .job-filters button{border:none;background:transparent;color:var(--color-muted);font-weight:600}
.careers-openings .job-filters button.active,.careers-openings .job-filters button:hover{background:var(--color-orange);color:var(--color-white);border-color:var(--color-orange)}
.job-list{display:grid;grid-template-columns:1fr;gap:12px}
.careers-openings .job-card{position:relative;display:grid;grid-template-columns:minmax(150px,.5fr) minmax(0,1.6fr) auto;grid-template-areas:"eyebrow title action" "eyebrow meta action" "detail detail detail";gap:0;margin:0;padding:1.35rem 1.55rem;background:var(--color-white);border:1px solid rgba(7,27,56,0.10);border-radius:14px;box-shadow:0 7px 22px rgba(7,27,56,0.04);overflow:hidden;transition:border-color 180ms ease,box-shadow 180ms ease,background-color 180ms ease}
.careers-openings .job-card.is-filtered-out{display:none!important}
.careers-openings .job-card::before{grid-area:eyebrow;align-self:center;content:attr(data-label);padding-left:14px;border-left:3px solid rgba(245,130,32,.72);font-family:var(--font-en);font-size:0.68rem;font-weight:700;line-height:1.55;letter-spacing:0.12em;color:var(--color-orange)}
.careers-openings .job-card:hover{border-color:rgba(245,130,32,0.46);box-shadow:0 10px 26px rgba(7,27,56,0.07);transform:none}
.careers-openings .job-card.is-open{background:#fffdfb;border-color:rgba(245,130,32,.58);box-shadow:0 12px 30px rgba(7,27,56,.075)}
.careers-openings .job-card h3{grid-area:title;align-self:center;margin:0;font-size:1.28rem;line-height:1.3}
.careers-openings .job-card .job-meta{grid-area:meta;margin:0.45rem 0 0}
.careers-openings .job-toggle{grid-area:action;align-self:center;display:inline-flex;min-width:116px;height:40px;padding:0 13px;gap:7px;background:#f5f7fa;border-color:#dfe5ec;color:var(--color-navy);font-weight:650}
.careers-openings .job-toggle svg{width:15px;height:15px;transition:transform 180ms ease}
.careers-openings .job-toggle:hover,.careers-openings .job-card.is-open .job-toggle{color:#c85d12;background:#fff4ea;border-color:rgba(245,130,32,.34)}
.careers-openings .job-card.is-open .job-toggle svg{transform:rotate(180deg)}
.careers-openings .job-detail-content{grid-area:detail;grid-template-columns:repeat(2,minmax(0,1fr));column-gap:clamp(28px,5vw,64px);row-gap:0;margin-top:1.3rem;padding:1.3rem 0 .15rem;border-top:1px solid var(--color-border)}
.careers-openings .job-detail-content.open{display:grid}
.careers-openings .job-detail-content h4{margin:0 0 .65rem}
.careers-openings .job-detail-content h4:nth-of-type(1){grid-column:1;grid-row:1}
.careers-openings .job-detail-content ul:nth-of-type(1){grid-column:1;grid-row:2}
.careers-openings .job-detail-content h4:nth-of-type(2){grid-column:2;grid-row:1}
.careers-openings .job-detail-content ul:nth-of-type(2){grid-column:2;grid-row:2}
.career-apply-panel{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;margin-top:1.5rem;padding:1.5rem 1.75rem;background:var(--color-navy);border-radius:14px;color:var(--color-white)}
.career-apply-panel span{display:block;margin-bottom:0.35rem;font-size:0.8rem;color:rgba(255,255,255,0.62)}
.career-apply-panel h3{font-size:1rem;font-weight:600;line-height:1.4}
.career-apply-panel .btn{flex-shrink:0}
@media(max-width:768px){.careers-openings-header{align-items:flex-start;flex-direction:column}.job-list{grid-template-columns:1fr}.careers-openings .job-filters{overflow-x:auto;width:100%;flex-wrap:nowrap}.careers-openings .job-card{grid-template-columns:minmax(0,1fr) auto;grid-template-areas:"eyebrow action" "title action" "meta action" "detail detail"}.careers-openings .job-detail-content{grid-template-columns:1fr}.careers-openings .job-detail-content h4:nth-of-type(1),.careers-openings .job-detail-content ul:nth-of-type(1),.careers-openings .job-detail-content h4:nth-of-type(2),.careers-openings .job-detail-content ul:nth-of-type(2){grid-column:1;grid-row:auto}.careers-openings .job-detail-content h4:nth-of-type(2){margin-top:1rem}.career-apply-panel{align-items:flex-start;flex-direction:column}.career-apply-panel .btn{width:100%;justify-content:center}}
@media(max-width:480px){.careers-openings{padding:2.5rem 0}.careers-openings .job-card{padding:1.25rem;grid-template-columns:1fr;grid-template-areas:"eyebrow" "title" "meta" "action" "detail"}.careers-openings .job-card::before{margin-bottom:.65rem}.careers-openings .job-toggle{justify-self:start;margin-top:1rem}.careers-openings .job-card h3{font-size:1.18rem}}

/* ===== Back to Top ===== */
.back-top{position:fixed;bottom:30px;right:30px;width:44px;height:44px;border-radius:50%;background:var(--color-orange);color:var(--color-white);display:flex;align-items:center;justify-content:center;z-index:99;opacity:0;visibility:hidden;transition:all var(--transition);box-shadow:0 4px 15px rgba(245,130,32,0.3)}
.back-top.visible{opacity:1;visibility:visible}
.back-top:hover{transform:translateY(-3px);box-shadow:0 6px 20px rgba(245,130,32,0.4)}
.back-top svg{width:18px;height:18px}

/* ===== About Page ===== */
.about-intro{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,3vw,3rem);align-items:center}
.about-intro-text h2{font-size:1.65rem;font-weight:700;color:var(--color-navy);margin-bottom:1rem}
.about-intro-text p{font-size:0.92rem;color:var(--color-muted);line-height:1.8;margin-bottom:0.75rem}
.about-intro-img img{width:100%;height:auto;border-radius:var(--radius-md)}
.about-values{display:grid;grid-template-columns:repeat(5,1fr);gap:1rem}
.about-value-card{background:var(--color-white);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:1.5rem 1rem;text-align:center}
.about-value-card svg{width:28px;height:28px;color:var(--color-orange);margin:0 auto 0.75rem;display:block}
.about-value-card h4{font-size:0.92rem;font-weight:700;color:var(--color-navy);margin-bottom:0.5rem}
.about-value-card p{font-size:0.8rem;color:var(--color-muted);line-height:1.5}
@media(max-width:768px){.about-values{grid-template-columns:repeat(3,1fr)}}
@media(max-width:480px){.about-values{grid-template-columns:repeat(2,1fr)}}

/* ===== Services Page Detail ===== */
.service-detail-item{padding:clamp(2rem,4vw,3.5rem) 0;border-bottom:1px solid var(--color-border)}
.service-detail-item:last-child{border-bottom:none}
.service-detail-item:nth-child(even){background:var(--color-bg)}
.service-detail-item .container{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,3vw,2.5rem);align-items:start}
.service-detail-img{height:300px;border-radius:var(--radius-md);overflow:hidden}
.service-detail-img img{width:100%;height:100%;object-fit:cover}
.service-detail-text h3{font-size:1.3rem;font-weight:700;color:var(--color-navy);margin-bottom:0.75rem;display:flex;align-items:center;gap:10px}
.service-detail-text h3 svg{width:22px;height:22px;color:var(--color-orange);flex-shrink:0}
.service-detail-text p{font-size:0.9rem;color:var(--color-muted);line-height:1.8;margin-bottom:0.75rem}
.service-detail-text ul{padding-left:1.25rem;list-style:disc;margin-bottom:0.75rem}
.service-detail-text li{font-size:0.88rem;color:var(--color-muted);line-height:1.7;margin-bottom:4px}
@media(max-width:768px){
  .service-detail-item .container{grid-template-columns:1fr}
  .service-detail-img{height:220px}
}

/* ===== Homepage Professional Upgrade · 2026-07-25 ===== */
.section-heading-centered{text-align:center;max-width:760px;margin:0 auto 48px}
.section-heading-centered h2{margin:8px 0 12px;color:var(--color-navy);font-size:clamp(2rem,3vw,2.75rem);font-weight:750;line-height:1.2;letter-spacing:-0.02em}
.section-heading-centered p{margin:0;color:var(--color-muted);font-size:1rem;line-height:1.75}
.section-kicker{display:inline-flex;align-items:center;gap:9px;color:var(--color-orange);font-family:var(--font-en);font-size:0.74rem;font-weight:750;letter-spacing:0.18em}
.section-kicker::before{content:"";width:28px;height:2px;background:currentColor}
.section-kicker-light{color:#ff9c45}
.section-heading-centered h2{display:flex;align-items:center;justify-content:center;gap:clamp(18px,2.2vw,36px);margin:0}
.section-heading-centered h2::before,.section-heading-centered h2::after{content:"";width:clamp(26px,3vw,44px);height:2px;background:var(--color-orange);flex:none}
.section-heading-centered .section-kicker{display:block;margin-top:9px;color:#94a3b8;font-size:.78rem;letter-spacing:.17em;line-height:1.35}
.section-heading-centered .section-kicker::before{display:none}
:root[lang^="en"] .section-heading-centered .section-kicker{display:none}
.team-content h2{margin:0 0 9px}
.team-content .section-kicker{display:block;margin:0 0 20px;color:#94a3b8;font-size:.78rem;letter-spacing:.17em;line-height:1.35}
.team-content .section-kicker::before{display:none}
:root[lang^="en"] .team-content .section-kicker{display:none}
.why-intro h2{margin:0 0 9px}
.why-intro .section-kicker{display:block;margin:0 0 18px;color:rgba(220,230,243,.68);font-size:.78rem;letter-spacing:.17em;line-height:1.35}
.why-intro .section-kicker::before{display:none}
:root[lang^="en"] .why-intro .section-kicker{display:none}
.text-arrow-link{display:inline-flex;align-items:center;gap:9px;color:var(--color-orange);font-size:0.95rem;font-weight:700}
.text-arrow-link svg{width:18px;height:18px;transition:transform var(--transition)}
.text-arrow-link:hover svg{transform:translateX(3px)}

/* Header */
.header{height:80px}
.header .container{max-width:1360px;padding:0 28px}
.header.scrolled{background:rgba(7,27,56,0.97);backdrop-filter:blur(12px);box-shadow:0 1px 0 rgba(255,255,255,0.08)}
.header-logo{gap:12px}
.header-logo img{width:72px;height:52px;object-fit:contain}
.header-logo span{font-size:1.28rem;letter-spacing:0.02em}
.nav{gap:clamp(15px,1.55vw,25px)}
.nav > li > a{font-size:0.93rem;font-weight:600}
.header-actions{gap:10px}
.header-quote-btn{height:44px;padding:0 17px;border-radius:9px;font-size:0.88rem}
.header-quote-btn svg{width:16px;height:16px}

/* Hero */
.hero{height:760px;min-height:760px;isolation:isolate}
.hero-slides{position:absolute;inset:0;overflow:hidden}
.hero-slide{position:absolute;inset:0;opacity:0;z-index:0;transition:opacity .7s ease-in-out;pointer-events:none;will-change:opacity;transform:translateZ(0)}
.hero-slide.is-active{opacity:1;z-index:1}
.hero-slide picture,.hero-slide img{position:absolute;inset:0;display:block;width:100%;height:100%}
.hero-slide img{min-width:0;max-width:none;object-fit:cover;object-position:66% center;transform:translateZ(0);will-change:transform;backface-visibility:hidden}
.hero-slide.hero-zoom-in img{animation:home-hero-zoom-in 3s linear forwards}
.hero-slide.hero-zoom-out img{animation:home-hero-zoom-out 3s linear forwards}
@keyframes home-hero-zoom-in{from{transform:translateZ(0) scale(1)}to{transform:translateZ(0) scale(1.065)}}
@keyframes home-hero-zoom-out{from{transform:translateZ(0) scale(1.065)}to{transform:translateZ(0) scale(1)}}
.hero-slide:nth-child(1) img{object-position:64% 50%}
.hero-slide:nth-child(2) img{object-position:62% 52%}
.hero-slide:nth-child(3) img{object-position:66% 50%}
.hero-overlay{z-index:2;background:linear-gradient(90deg,rgba(7,27,56,0.86) 0%,rgba(7,27,56,0.67) 34%,rgba(7,27,56,0.25) 62%,rgba(7,27,56,0.05) 100%)}
.hero .container{position:relative;z-index:3;width:100%;padding:165px 20px 120px}
.hero-content{max-width:620px}
.hero-content h1{margin:0 0 8px;font-size:clamp(3rem,4.5vw,4.15rem);font-weight:780;line-height:1.15;letter-spacing:-0.035em;text-shadow:0 2px 20px rgba(0,0,0,0.24)}
.hero-title-en{display:block;margin:0 0 24px;color:rgba(220,230,243,.62);font-family:var(--font-en);font-size:.76rem;font-weight:750;letter-spacing:.18em;line-height:1.35}
:root[lang^="en"] .hero-title-en{display:none}
.hero-content p{max-width:610px;margin:0;color:rgba(255,255,255,0.86);font-size:1.08rem;line-height:1.9;text-shadow:0 1px 12px rgba(0,0,0,0.2)}
.hero-buttons{margin-top:30px;gap:10px}
.btn-hero-primary,.btn-hero-white{height:44px;padding:0 19px;gap:8px;border-radius:8px;font-size:.9rem}
.btn-hero-primary svg,.btn-hero-white svg{width:15px;height:15px}

/* Company facts */
.stats-bar-wrapper{position:relative;z-index:5;margin-top:-56px;padding-bottom:24px}
.stats-bar-wrapper .container{max-width:1240px;padding:0 20px}
.stats-card{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));min-height:112px;background:#fff;border:1px solid rgba(7,27,56,0.08);border-radius:16px;box-shadow:0 14px 35px rgba(7,27,56,0.09);overflow:hidden}
.stats-card .stat-item,.stats-card .stat-item:first-child,.stats-card .stat-item:last-child{min-width:0;padding:22px 18px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;border-right:1px solid var(--color-border);background:transparent}
.stats-card .stat-item:last-child{border-right:none}
.stats-card .stat-number,.stats-card .stat-main-num{margin:0 0 7px;color:var(--color-navy);font-family:var(--font-en);font-size:2rem;font-weight:780;line-height:1;letter-spacing:-0.03em}
.stats-card .stat-number-compact{font-size:1.8rem}
.stats-card .stat-number-cert{font-size:1.55rem;letter-spacing:0.04em}
.stats-card .stat-label{color:var(--color-muted);font-size:0.86rem;font-weight:500;line-height:1.3}

/* Team */
.team-section{padding:112px 0 126px;background:#fff}
.team-layout{display:grid;grid-template-columns:minmax(0,1.04fr) minmax(430px,0.96fr);gap:clamp(54px,6vw,88px);align-items:stretch}
.team-visual{position:relative;min-height:570px}
.team-photo{position:absolute;margin:0;overflow:hidden;background:#eef2f6;border:7px solid #fff;border-radius:24px;box-shadow:0 18px 45px rgba(7,27,56,0.14)}
.team-photo img{display:block;width:100%;height:100%;object-fit:cover}
.team-photo-primary{inset:0}
.team-photo-primary img{object-position:center 46%}
.team-photo-secondary{right:0;bottom:0;width:56%;height:245px;border-radius:18px}
.team-photo-secondary img{object-position:center 42%}
.team-photo-caption{position:absolute;left:22px;bottom:22px;z-index:2;display:flex;flex-direction:column;gap:3px;padding:14px 18px;background:rgba(7,27,56,0.94);border-radius:12px;color:#fff;box-shadow:0 10px 24px rgba(7,27,56,0.18)}
.team-photo-caption span{font-size:0.72rem;color:rgba(255,255,255,0.67)}
.team-photo-caption strong{font-size:1rem}
.team-content h2{margin:0 0 9px;color:var(--color-navy);font-size:clamp(2.2rem,3vw,2.8rem);line-height:1.22;letter-spacing:-0.025em}
.team-intro{color:var(--color-muted);font-size:0.98rem;line-height:1.9}
.team-facts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0;margin:28px 0 30px;padding:20px 0;border-top:1px solid var(--color-border);border-bottom:1px solid var(--color-border)}
.team-facts div{padding:0 14px;border-right:1px solid var(--color-border)}
.team-facts div:first-child{padding-left:0}
.team-facts div:last-child{border-right:none}
.team-facts strong,.team-facts span{display:block}
.team-facts strong{margin-bottom:5px;color:var(--color-navy);font-family:var(--font-en);font-size:1.45rem;line-height:1}
.team-facts span{color:var(--color-muted);font-size:0.75rem;line-height:1.35}
.team-department-block h3{margin:0 0 13px;color:var(--color-navy);font-size:0.98rem}
.team-departments{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0 24px;margin:0 0 25px}
.team-departments li{display:flex;align-items:center;gap:11px;min-width:0;padding:9px 0;border-bottom:1px solid #edf0f4;color:var(--color-text)}
.team-departments li span{color:var(--color-orange);font-family:var(--font-en);font-size:0.7rem;font-weight:750;letter-spacing:0.06em}
.team-departments li em{font-size:0.88rem;font-style:normal}

/* Why SKD */
.why-section{position:relative;padding:112px 0;background:var(--color-navy);color:#fff;overflow:hidden}
.why-section::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 84% 18%,rgba(48,111,168,0.045),transparent 38%);pointer-events:none}
.why-layout{position:relative;display:grid;grid-template-columns:minmax(280px,0.36fr) minmax(0,0.64fr);gap:clamp(44px,5vw,74px);align-items:stretch}
.why-intro h2{margin:0 0 9px;color:#fff;font-size:clamp(2.2rem,3.4vw,3.05rem);line-height:1.2;letter-spacing:-0.025em}
.why-intro > p{margin:0 0 28px;color:rgba(255,255,255,0.7);font-size:0.95rem;line-height:1.8}
.why-photo{height:235px;margin:0;overflow:hidden;border-radius:16px;border:1px solid rgba(255,255,255,0.13)}
.why-photo img{width:100%;height:100%;object-fit:cover;transition:transform 0.45s ease}
.why-photo:hover img{transform:scale(1.025)}
.why-advantages{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));align-content:stretch;border-top:1px solid rgba(255,255,255,0.13);border-left:1px solid rgba(255,255,255,0.13)}
.why-advantage{display:grid;grid-template-columns:44px minmax(0,1fr);gap:16px;align-content:center;min-height:170px;padding:28px;border-right:1px solid rgba(255,255,255,0.13);border-bottom:1px solid rgba(255,255,255,0.13)}
.why-advantage svg{width:34px;height:34px;color:#ff983e}
.why-advantage h3{margin:0 0 8px;color:#fff;font-size:1.04rem}
.why-advantage p{margin:0;color:rgba(255,255,255,0.64);font-size:0.84rem;line-height:1.65}

/* Process */
.process-section{padding:120px 0;background:var(--color-bg)}
.process-section .section-heading{margin-bottom:38px}
.process-list{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px;margin:0;padding:0;list-style:none}
.process-item{position:relative;isolation:isolate;min-width:0;min-height:246px;padding:26px 16px 22px;overflow:visible;text-align:center;background:#fff;border:1px solid var(--color-border);border-radius:16px;box-shadow:0 8px 22px rgba(7,27,56,.045);transition:transform 480ms cubic-bezier(.22,1,.36,1),border-color 420ms ease,box-shadow 480ms ease}
.process-item::after{content:"";position:absolute;z-index:4;top:74px;right:-15px;width:15px;height:1px;background:#cfd6df;pointer-events:none}
.process-item:last-child::after{display:none}
.process-media{position:absolute;z-index:0;inset:0;overflow:hidden;background:#071b38;border-radius:inherit;clip-path:circle(0 at 50% 34%);transition:clip-path 900ms cubic-bezier(.22,1,.36,1)}
.process-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,27,56,.48),rgba(7,27,56,.91))}
.process-media img{width:100%;height:100%;display:block;object-fit:cover;transform:scale(1.08);transition:transform 1100ms cubic-bezier(.22,1,.36,1)}
.process-number{position:relative;z-index:2;display:block;margin-bottom:17px;color:var(--color-orange);font-family:var(--font-en);font-size:.73rem;font-weight:850;letter-spacing:.1em;transition:color 460ms ease}
.process-icon{position:relative;z-index:2;width:72px;height:72px;margin:0 auto 20px;display:flex;align-items:center;justify-content:center;background:#fff;border:1px solid #dfe4eb;border-radius:17px;color:var(--color-navy);box-shadow:0 8px 20px rgba(7,27,56,.07);transition:transform 520ms cubic-bezier(.22,1,.36,1),background-color 460ms ease,border-color 460ms ease,color 460ms ease}
.process-icon svg{width:34px;height:34px}
.process-copy{position:relative;z-index:2}
.process-item h3{margin:0 0 9px;color:var(--color-navy);font-size:1rem;line-height:1.4;transition:color 460ms ease}
.process-item p{margin:0;color:var(--color-muted);font-size:.8rem;line-height:1.65;transition:color 460ms ease}
.process-item:hover,.process-item:focus-visible{transform:translateY(-4px);border-color:rgba(245,130,32,.48);box-shadow:0 16px 32px rgba(7,27,56,.14);outline:none}
.process-item:hover .process-media,.process-item:focus-visible .process-media{clip-path:circle(145% at 50% 34%)}
.process-item:hover .process-media img,.process-item:focus-visible .process-media img{transform:scale(1.015)}
.process-item:hover .process-icon,.process-item:focus-visible .process-icon{transform:scale(1.04);color:var(--color-orange);background:rgba(255,255,255,.94);border-color:rgba(245,130,32,.54)}
.process-item:hover h3,.process-item:focus-visible h3{color:#fff}
.process-item:hover p,.process-item:focus-visible p{color:rgba(255,255,255,.82)}
.process-item:focus-visible{box-shadow:0 0 0 3px rgba(245,130,32,.24),0 14px 28px rgba(7,27,56,.12)}
.home-v2 .process-item.v2-reveal{transform:translate3d(0,12px,0) scale(.985);transition-duration:620ms}
.home-v2 .process-item.v2-reveal .process-icon{transform:scale(.92);transition:transform 480ms cubic-bezier(.22,1,.36,1);transition-delay:var(--v2-delay,0ms)}
.home-v2 .process-item.v2-reveal::after{opacity:0;transform:scaleX(0);transform-origin:left center;transition:opacity 320ms ease,transform 460ms cubic-bezier(.22,1,.36,1);transition-delay:calc(var(--v2-delay,0ms) + 180ms)}
.home-v2 .process-item.v2-reveal.is-visible{transform:translate3d(0,0,0) scale(1)}
.home-v2 .process-item.v2-reveal.is-visible:hover,.home-v2 .process-item.v2-reveal.is-visible:focus-visible{transform:translate3d(0,-4px,0) scale(1)}
.home-v2 .process-item.v2-reveal.is-visible .process-icon{transform:scale(1)}
.home-v2 .process-item.v2-reveal.is-visible:hover .process-icon,.home-v2 .process-item.v2-reveal.is-visible:focus-visible .process-icon{transform:scale(1.05)}
.home-v2 .process-item.v2-reveal.is-visible::after{opacity:1;transform:scaleX(1)}

/* Qualifications */
.credentials-section{padding:106px 0;background:#fff}
.credential-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.credential-card{position:relative;min-height:370px;padding:0;background:#fff;border:1px solid var(--color-border);border-radius:18px;overflow:hidden;box-shadow:0 10px 28px rgba(7,27,56,0.055);transition:transform var(--transition),border-color var(--transition),box-shadow var(--transition)}
.credential-card:hover{transform:translateY(-2px);border-color:rgba(245,130,32,0.35);box-shadow:0 16px 34px rgba(7,27,56,0.09)}
.credential-backdrop{position:relative;height:164px;overflow:hidden;color:rgba(247,174,75,.78);background:linear-gradient(132deg,#071b38 0%,#0c315c 72%,#164777 100%)}
.credential-backdrop::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 80% 18%,rgba(245,130,32,0.24),transparent 34%),linear-gradient(120deg,transparent 55%,rgba(255,255,255,0.06) 55% 56%,transparent 56%)}
.credential-backdrop::after{content:"";position:absolute;right:-38px;bottom:-72px;width:170px;height:170px;border:1px solid rgba(255,255,255,0.12);border-radius:50%;box-shadow:0 0 0 24px rgba(255,255,255,0.025),0 0 0 52px rgba(255,255,255,0.018)}
.credential-backdrop-trophy{background:linear-gradient(132deg,#081d3d 0%,#153e68 72%,#7b451c 145%)}
.credential-backdrop-honor{background:linear-gradient(132deg,#071b38 0%,#123d68 68%,#0e5972 125%)}
.credential-scene{position:absolute;right:-9px;top:-8px;width:94%;height:178px;color:currentColor;filter:drop-shadow(0 0 8px rgba(245,130,32,.1));transition:transform 420ms cubic-bezier(.22,1,.36,1)}
.credential-card:hover .credential-scene{transform:translateY(-2px) scale(1.025)}
.credential-backdrop-label{position:absolute;left:24px;bottom:19px;color:rgba(255,255,255,0.72);font-family:var(--font-en);font-size:0.61rem;font-weight:750;letter-spacing:0.18em}
.credential-content{position:relative;z-index:2;padding:28px 28px 28px;background:#fff}
.credential-type{display:block;width:fit-content;margin-bottom:9px;padding:5px 9px;color:#b6530d;background:#fff4ea;border-radius:7px;font-size:0.69rem;font-weight:750;letter-spacing:0.08em}
.credential-card h3{margin:0 0 10px;color:var(--color-navy);font-family:var(--font-en);font-size:1.35rem}
.credential-card p{max-width:340px;margin:0;color:var(--color-muted);font-size:0.84rem;line-height:1.68}

/* Actual qualification and membership brand visuals */
.credential-backdrop{isolation:isolate}
.credential-backdrop-image{position:absolute;inset:0;z-index:0;width:100%;height:100%;object-fit:cover;object-position:center 56%;transition:transform 520ms cubic-bezier(.22,1,.36,1)}
.credential-card:hover .credential-backdrop-image{transform:scale(1.035)}
.credential-brand-lockup{position:absolute;z-index:2;display:flex;align-items:center}
.credential-backdrop-nvocc{color:#fff;background:#071b38}
.credential-backdrop-nvocc::before{z-index:1;background:linear-gradient(90deg,rgba(5,21,43,.76) 0%,rgba(5,21,43,.32) 48%,rgba(5,21,43,.12) 100%)}
.credential-backdrop-nvocc::after{z-index:1}
.credential-nvocc-lockup{top:26px;left:25px;gap:13px;align-items:flex-start}
.credential-nvocc-lockup strong{color:#fff;font-family:var(--font-en);font-size:clamp(1.6rem,2.8vw,2.15rem);font-weight:800;letter-spacing:.06em;line-height:1}
.credential-nvocc-lockup span{padding:3px 0 0 13px;border-left:1px solid rgba(245,185,88,.8);color:rgba(255,255,255,.76);font-family:var(--font-en);font-size:.55rem;font-weight:700;letter-spacing:.08em;line-height:1.55}
.credential-backdrop-jctrans{background:radial-gradient(circle at 80% 16%,rgba(245,130,32,.32),transparent 29%),linear-gradient(130deg,#071b38 0%,#0b315d 65%,#123f67 100%)}
.credential-backdrop-jctrans::before{z-index:1;background:linear-gradient(120deg,rgba(255,255,255,.04) 18%,transparent 18% 51%,rgba(245,130,32,.09) 51% 52%,transparent 52%),radial-gradient(circle at 90% 98%,rgba(255,255,255,.07) 0 1px,transparent 1.4px);background-size:auto,12px 12px}
.credential-jctrans-lockup{top:42px;left:50%;flex-direction:column;align-items:center;gap:11px;transform:translateX(-50%)}
.credential-jctrans-lockup img{display:block;width:min(188px,58vw);height:auto;filter:drop-shadow(0 5px 10px rgba(0,0,0,.14))}
.credential-jctrans-lockup span{padding:5px 9px;border-radius:999px;color:#fff6ed;background:rgba(245,130,32,.88);font-family:var(--font-en);font-size:.55rem;font-weight:800;letter-spacing:.13em;line-height:1}
.credential-backdrop-wiffa{background:linear-gradient(135deg,#fffaf7 0%,#fff7f2 67%,#fcedE5 100%);border-bottom:0}
.credential-backdrop-wiffa::before{z-index:1;background:linear-gradient(180deg,transparent 52%,rgba(234,83,29,.11) 100%),radial-gradient(circle at 92% 8%,rgba(227,62,19,.1),transparent 31%),linear-gradient(134deg,transparent 58%,rgba(7,27,56,.035) 58% 59%,transparent 59%)}
.credential-backdrop-wiffa::after{z-index:1;right:-42px;bottom:-80px;border-color:rgba(227,62,19,.12);box-shadow:0 0 0 24px rgba(227,62,19,.025),0 0 0 52px rgba(7,27,56,.02)}
.credential-wiffa-lockup{top:28px;left:50%;width:min(278px,74%);justify-content:center;transform:translateX(-50%)}
.credential-wiffa-lockup img{display:block;width:100%;height:auto;filter:drop-shadow(0 3px 7px rgba(130,38,16,.1))}
.credential-backdrop-nvocc .credential-backdrop-label,.credential-backdrop-jctrans .credential-backdrop-label{z-index:3}
.credential-backdrop-wiffa .credential-backdrop-label{z-index:3;right:22px;bottom:13px;left:auto;color:rgba(178,54,20,.76);font-size:.52rem}
.credential-card-wiffa .credential-content{background:linear-gradient(180deg,#fff3eb 0%,#fff 106px)}

/* Capabilities */
.capabilities-section{padding:108px 0;background:var(--color-bg)}
.capability-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:20px}
.capability-card{grid-column:span 3;position:relative;min-height:330px;padding:0;display:flex;flex-direction:column;background:#fff;border:1px solid var(--color-border);border-radius:16px;overflow:hidden;box-shadow:0 8px 24px rgba(7,27,56,0.05);transition:transform var(--transition),border-color var(--transition),box-shadow var(--transition)}
.capability-card-featured{grid-column:span 6;min-height:386px}
.capability-card:hover{transform:translateY(-2px);border-color:rgba(245,130,32,0.32);box-shadow:0 16px 32px rgba(7,27,56,0.09)}
.capability-media{position:relative;height:148px;flex:0 0 auto;overflow:hidden;background:#dfe6ed}
.capability-card-featured .capability-media{height:220px}
.capability-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,27,56,0.02) 45%,rgba(7,27,56,0.3) 100%)}
.capability-media img{display:block;width:100%;height:100%;object-fit:cover;transition:transform 480ms cubic-bezier(.22,1,.36,1)}
.capability-card:hover .capability-media img{transform:scale(1.025)}
.capability-index{position:absolute;z-index:2;top:14px;left:15px;min-width:36px;height:27px;padding:0 9px;display:inline-flex;align-items:center;justify-content:center;color:#fff;background:rgba(7,27,56,0.72);border:1px solid rgba(255,255,255,0.25);border-radius:7px;font-family:var(--font-en);font-size:0.65rem;font-weight:750;letter-spacing:0.1em;backdrop-filter:blur(4px)}
.capability-body{padding:22px 22px 24px;display:grid;grid-template-columns:42px minmax(0,1fr);gap:14px;align-items:start;flex:1}
.capability-card-featured .capability-body{padding:24px 27px 27px;grid-template-columns:46px minmax(0,1fr);gap:16px}
.capability-icon{width:42px;height:42px;display:flex;align-items:center;justify-content:center;color:var(--color-orange);background:#fff5eb;border:1px solid #ffe2c9;border-radius:12px}
.capability-card-featured .capability-icon{width:46px;height:46px}
.capability-icon svg{width:23px;height:23px;transition:transform 180ms ease}
.capability-card:hover .capability-icon svg{transform:scale(1.05)}
.capability-card h3{margin:0 0 9px;color:var(--color-navy);font-size:1.03rem;line-height:1.45}
.capability-card-featured h3{font-size:1.28rem}
.capability-card p{margin:0;color:var(--color-muted);font-size:0.83rem;line-height:1.7}

/* Partners */
.partners-section{padding:94px 0;background:#fff}
.home-partners-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}
.home-partner-card{min-height:128px;padding:24px;display:flex;align-items:center;justify-content:center;background:#fff;border:1px solid var(--color-border);border-radius:15px;transition:transform var(--transition),border-color var(--transition),box-shadow var(--transition)}
.home-partner-card:hover{transform:translateY(-2px);border-color:#cbd3dd;box-shadow:0 12px 25px rgba(7,27,56,0.06)}
.home-partner-card img{display:block;width:100%;height:54px;max-width:165px;object-fit:contain;transition:transform 220ms ease}
.home-partner-card .partner-logo-maersk{height:66px;max-width:190px;transform:scale(1.65)}
.home-partner-card .partner-logo-emirates{height:68px;transform:scale(1.5)}
.home-partner-card .partner-logo-bosna{height:68px;max-width:190px;transform:scale(1.5)}
.home-partner-card .partner-logo-geis{height:68px;max-width:190px;transform:scale(1.5)}
.home-partner-card .partner-logo-cargo-concept{transform:scale(1.3)}
.home-partner-card:hover .partner-logo-maersk{transform:scale(1.7)}
.home-partner-card:hover .partner-logo-emirates{transform:scale(1.55)}
.home-partner-card:hover .partner-logo-bosna{transform:scale(1.55)}
.home-partner-card:hover .partner-logo-geis{transform:scale(1.55)}
.home-partner-card:hover .partner-logo-cargo-concept{transform:scale(1.35)}

/* Compact service tools */
.query-tools-section{padding:78px 0;background:var(--color-bg)}
.query-tools-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-bottom:28px}
.query-tools-heading h2{margin:0 0 8px;color:var(--color-navy);font-size:clamp(1.8rem,2.8vw,2.5rem);line-height:1.2}
.query-tools-heading .section-kicker{display:block;color:#94a3b8;font-size:.76rem;letter-spacing:.17em;line-height:1.35}
.query-tools-heading .section-kicker::before{display:none}
:root[lang^="en"] .query-tools-heading .section-kicker{display:none}
.query-tools-heading p{max-width:480px;margin:0;color:var(--color-muted);font-size:0.9rem;line-height:1.65;text-align:right}
.query-tools-heading p span,.query-tools-heading p small{display:block}
.query-tools-heading p small{margin-top:3px;color:#8792a2;font-size:0.72rem}
.query-tools-section .query-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.query-tools-section .query-card{position:relative;min-height:150px;padding:22px 20px;text-align:left;background:#fff;border:1px solid var(--color-border);border-radius:15px;overflow:hidden}
.query-tools-section .query-card:hover{transform:translateY(-2px);border-color:#ccd4de;box-shadow:0 10px 22px rgba(7,27,56,0.05)}
.query-tools-section .query-card > svg:first-child{width:29px;height:29px;margin:0 0 18px;color:var(--color-orange)}
.query-tools-section .query-card h4{margin:0 0 7px;color:var(--color-navy);font-size:0.98rem}
.query-tools-section .query-card p{margin:0;color:var(--color-muted);font-size:0.76rem;line-height:1.55}
.query-tools-section .query-card .btn{position:absolute;z-index:2;inset:0;width:auto;height:auto;margin:0;padding:0;opacity:0}

/* CTA & Footer */
.cta-section{position:relative;padding:82px 0 84px;background:var(--color-navy);overflow:hidden}
.cta-section::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(7,27,56,0.96),rgba(7,27,56,0.74)),url("../images/hero/hero-port-night.webp") center 58%/cover no-repeat}
.cta-section .container{position:relative}
.cta-section h2{margin:0 0 14px;font-size:clamp(2rem,3.4vw,3rem);letter-spacing:-0.025em}
.cta-section h2[data-en-title]::after{content:attr(data-en-title);display:block;margin-top:9px;color:rgba(222,231,243,.66);font-family:var(--font-en);font-size:.28em;font-weight:750;letter-spacing:.17em;line-height:1.3}
:root[lang^="en"] .cta-section h2[data-en-title]::after{display:none}
.cta-section p{max-width:680px;margin:0 auto 30px;color:rgba(255,255,255,0.72);font-size:1rem;line-height:1.75}
.cta-actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.cta-section .btn{height:44px;min-width:116px;padding:0 18px;border-radius:8px;font-size:.88rem}
.cta-section .cta-quote-btn{height:44px;min-width:116px;padding:0 18px;border-radius:8px;background:var(--color-orange);box-shadow:none}
.cta-section .cta-quote-btn svg{width:15px;height:15px}
.footer{padding:64px 0 0;background:#05152d}
.footer-grid{grid-template-columns:minmax(280px,1.55fr) minmax(130px,0.75fr) minmax(150px,0.85fr) minmax(280px,1.35fr);gap:clamp(34px,5vw,72px);padding-bottom:52px}
.footer-logo{display:inline-flex;align-items:center;gap:13px;color:#fff}
.footer-logo:hover{color:#fff}
.footer-logo img{width:52px;height:52px;object-fit:contain}
.footer-logo strong{font-size:1.18rem;letter-spacing:0.02em}
.footer-brand p{max-width:360px;margin:19px 0 20px;color:rgba(255,255,255,0.62);font-size:0.9rem;line-height:1.82}
.footer-brand-tags{display:flex;gap:8px;flex-wrap:wrap}
.footer-brand-tags span{padding:6px 10px;border:1px solid rgba(255,255,255,0.14);border-radius:7px;color:rgba(255,255,255,0.66);font-family:var(--font-en);font-size:0.66rem;letter-spacing:0.08em}
.footer-col h4{margin-bottom:18px;font-size:0.98rem}
.footer-col a{padding:5px 0;color:rgba(255,255,255,0.62);font-size:0.9rem}
.footer-contact a{gap:10px;margin-bottom:8px;line-height:1.6}
.footer-contact svg{width:17px;height:17px;margin-top:4px}
.footer-contact-links{margin-bottom:15px}
.footer-office-list{display:grid;gap:14px}
.footer-office{padding-top:13px;border-top:1px solid rgba(255,255,255,.09)}
.footer-office strong{display:block;margin-bottom:5px;color:rgba(255,255,255,.88);font-size:.82rem;font-weight:650;line-height:1.55}
.footer-office a{margin:0;color:rgba(255,255,255,.56);font-size:.8rem;line-height:1.62}
.footer-bottom{min-height:72px;padding:15px 0;border-top-color:rgba(255,255,255,0.09);gap:22px}
.footer-legal{display:flex;align-items:center;gap:18px;flex-wrap:wrap;color:rgba(255,255,255,0.5)}
.footer-legal a{color:rgba(255,255,255,0.62)}
.footer-bottom-actions{display:flex;align-items:center;justify-content:flex-end;gap:18px;margin-left:auto}
.footer-icp{color:rgba(255,255,255,.62);font-size:.84rem;white-space:nowrap}
.footer-icp:hover{color:#fff}
.footer-lang-toggle{height:36px;color:rgba(255,255,255,0.75);border-color:rgba(255,255,255,0.18);background:transparent}

@media(prefers-reduced-motion:reduce){
  .hero-slide,.hero-slide.is-active,.hero-slide.is-active img,.hero-slide.hero-zoom-in img,.hero-slide.hero-zoom-out img,.why-photo img,.home-partner-card,.capability-card,.credential-card,.query-tools-section .query-card{transition:none;animation:none!important;transform:none}
}

/* ============================================================
   Homepage polish v2
   ============================================================ */
.home-v2{overflow-x:clip}
.home-v2 .header-actions{gap:0}
.home-v2 .header-quote-btn{height:42px;padding:0 18px;gap:6px;border:1px solid rgba(255,255,255,.1);border-radius:8px;background:#f58220;box-shadow:0 3px 10px rgba(245,130,32,.15);font-size:.82rem;font-weight:700;letter-spacing:.01em;filter:none;transition:background-color 180ms ease,box-shadow 180ms ease,transform 180ms ease}
.home-v2 .header-quote-btn svg{width:14px;height:14px;margin:0;transition:transform 180ms ease}
.home-v2 .header-quote-btn:hover{background:#e97314;box-shadow:0 6px 15px rgba(245,130,32,.2);transform:translateY(-1px)}
.home-v2 .header-quote-btn:hover svg{transform:translateX(3px)}
.home-v2 .header-quote-btn:active{transform:translateY(0)}
.home-v2 .menu-toggle.active span{background:#071b38}

@keyframes home-v2-header-in{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}
@keyframes home-v2-rise-in{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
@keyframes home-v2-stats-in{from{opacity:0;transform:translate3d(0,48px,0) scale(.92)}to{opacity:1;transform:translate3d(0,0,0) scale(1)}}

@media(prefers-reduced-motion:no-preference){
  .home-v2 .hero-content h1{animation:home-v2-rise-in 720ms 80ms ease-out both}
  .home-v2 .hero-content>p{animation:home-v2-rise-in 720ms 180ms ease-out both}
  .home-v2 .hero-buttons>:first-child{animation:home-v2-rise-in 680ms 260ms ease-out both}
  .home-v2 .hero-buttons>:nth-child(2){animation:home-v2-rise-in 680ms 340ms ease-out both}
  .home-v2 .stats-bar-wrapper{animation:home-v2-stats-in 900ms 380ms cubic-bezier(.16,1,.3,1) both}
}

.home-v2 .v2-reveal{opacity:0;transform:translate3d(0,16px,0);transition:opacity 680ms cubic-bezier(.22,1,.36,1),transform 680ms cubic-bezier(.22,1,.36,1);transition-delay:var(--v2-delay,0ms);will-change:opacity,transform}
.home-v2 .v2-reveal[data-v2-direction="left"]{transform:translate3d(-18px,0,0)}
.home-v2 .v2-reveal[data-v2-direction="right"]{transform:translate3d(18px,0,0)}
.home-v2 .v2-reveal.is-visible{opacity:1;transform:translate3d(0,0,0);will-change:auto}

.home-v2 :is(.service-matrix-card,.r1-nav-item,.capability-card,.credential-card,.home-partner-card,.query-card,.floating-toolbar-item){transition:transform 180ms ease,border-color 180ms ease,box-shadow 180ms ease,background-color 180ms ease,color 180ms ease}
.home-v2 :is(.service-matrix-card,.capability-card,.credential-card,.home-partner-card,.query-card):hover{transform:translateY(-2px);border-color:rgba(245,130,32,.28);box-shadow:0 10px 24px rgba(7,27,56,.08)}
.home-v2 :is(.service-matrix-card,.capability-card,.credential-card,.query-card):hover svg{transform:scale(1.04)}
.home-v2 :is(.service-matrix-card,.capability-card,.credential-card,.query-card) svg{transition:transform 180ms ease}

.home-v2 .team-photo-primary{inset:0}
.home-v2 .team-photo-secondary{right:0;bottom:6px;width:49%;height:218px;border-width:4px;box-shadow:0 12px 26px rgba(7,27,56,.12)}
.home-v2 .team-photo-info-band{position:absolute;right:0;bottom:0;left:0;z-index:2;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));padding:14px 18px;color:#fff;background:rgba(7,27,56,.88)}
.home-v2 .team-photo-info-band span{display:flex;align-items:baseline;gap:7px;min-width:0}
.home-v2 .team-photo-info-band span+span{padding-left:16px;border-left:1px solid rgba(255,255,255,.2)}
.home-v2 .team-photo-info-band strong{color:#fff;font-size:1.42rem;font-weight:800;line-height:1}
.home-v2 .team-photo-info-band em{overflow:hidden;color:rgba(255,255,255,.76);font-size:.78rem;font-style:normal;white-space:nowrap;text-overflow:ellipsis}
.home-v2 .team-departments{gap:8px 12px}
.home-v2 .team-departments li{position:relative;padding:11px 12px 11px 20px;border:0;border-radius:10px;transition:background-color 180ms ease}
.home-v2 .team-departments li::before{position:absolute;top:50%;left:5px;width:7px;height:2px;margin:0;background:#f58220;border:0;border-radius:1px;transform:translateY(-50%);content:""}
.home-v2 .team-departments li:hover{background:#f5f7fa}
.home-v2 .team-departments li:last-child{grid-column:1/-1}
.home-v2 .team-departments .department-number{color:rgba(245,130,32,.8)}

.home-v2 .why-section::before{background:radial-gradient(circle at 84% 18%,rgba(48,111,168,.045),transparent 38%)}

.home-v2 .credential-card,.home-v2 .credential-card-primary{color:#172238;background:#fff;border:1px solid #e5e9f0;box-shadow:0 10px 28px rgba(7,27,56,.055)}
.home-v2 .credential-card .credential-type,.home-v2 .credential-card-primary .credential-type{display:inline-flex;width:fit-content;padding:5px 9px;color:#b6530d;background:#fff4ea;border-radius:7px}
.home-v2 .credential-card h3,.home-v2 .credential-card-primary h3{color:#071b38}
.home-v2 .credential-card p,.home-v2 .credential-card-primary p{color:#667085}
.home-v2 .credential-card .credential-scene{transition:transform 420ms cubic-bezier(.22,1,.36,1)}
.home-v2 .credential-card:hover .credential-scene{transform:translateY(-2px) scale(1.025)}
.home-v2 .capability-card:hover .capability-icon svg{transform:scale(1.05)}

.floating-toolbar{position:fixed;top:70%;right:20px;z-index:99;width:60px;padding:6px 0;overflow:hidden;background:#fff;border:1px solid #e5e9f0;border-radius:30px;box-shadow:0 8px 22px rgba(7,27,56,.09);transform:translateY(-50%);transition:opacity 180ms ease}
.floating-toolbar-item{display:flex;width:100%;min-height:58px;padding:6px 2px;flex-direction:column;align-items:center;justify-content:center;gap:4px;color:#173b66;background:transparent;border:0;border-radius:0;box-shadow:none;cursor:pointer;transition:transform 180ms ease,background-color 180ms ease,color 180ms ease}
.floating-toolbar-item+.floating-toolbar-item{border-top:1px solid #edf0f4}
.floating-toolbar-item svg{width:20px;height:20px;stroke-width:1.7;transition:transform 180ms ease}
.floating-toolbar-item .toolbar-icon-accent{color:#f5a33a;stroke:currentColor}
.floating-toolbar-item span{color:#43536a;font-size:.63rem;font-weight:650;line-height:1.2;white-space:nowrap}
.floating-toolbar-item:hover{color:#f58220;background:#fff9f3;transform:translateY(-1px)}
.floating-toolbar-item:hover span{color:#d96818}
.floating-toolbar-item:hover svg{transform:scale(1.04)}
.floating-toolbar .back-top{position:static;width:100%;height:auto;color:#173b66;background:#fff;border-radius:0;box-shadow:none;opacity:.34;visibility:visible;pointer-events:none;transform:none}
.floating-toolbar .back-top.visible{opacity:1;visibility:visible;pointer-events:auto;transform:none}
.floating-toolbar .back-top:hover{color:#f58220;background:#fff9f3;transform:translateY(-1px)}

@media(prefers-reduced-motion:reduce){
  .home-v2 .header,.home-v2 .hero-content h1,.home-v2 .hero-content>p,.home-v2 .hero-buttons>*,.home-v2 .stats-bar-wrapper{animation:none!important}
  .home-v2 .v2-reveal,.home-v2 .v2-reveal[data-v2-direction]{opacity:1;transform:none;transition:none}
  .routes-card-bg-enter{clip-path:inset(0);transform:scale(1.01);transition:none}
  .routes-card-content.route-content-forward,.routes-card-content.route-content-backward{animation:none}
  .home-v2 .process-item.v2-reveal,.home-v2 .process-item.v2-reveal .process-icon,.home-v2 .process-item.v2-reveal::after{opacity:1;transform:none;transition:none}
  .home-v2 :is(.service-matrix-card,.r1-nav-item,.capability-card,.credential-card,.home-partner-card,.query-card,.floating-toolbar-item):hover,.home-v2 :is(.service-matrix-card,.capability-card,.credential-card,.query-card,.floating-toolbar-item):hover svg{transform:none}
  .process-media,.process-media img,.capability-media img,.credential-scene{transform:none!important;transition:none!important}
  .process-item:hover .process-media,.process-item:focus-visible .process-media{clip-path:none}
  .floating-toolbar,.floating-toolbar-item,.floating-toolbar-item svg,.careers-openings .job-toggle svg{transition:none}
}

/* ===== Advantage Routes · Reference Layout ===== */
.routes-reference-section{position:relative;padding:104px 0 62px;overflow:hidden;background:linear-gradient(180deg,#fff 0%,#f8fafc 100%)}
.routes-reference-section::before{position:absolute;inset:0;background:radial-gradient(ellipse 44% 32% at 10% 74%,rgba(211,225,240,.44),transparent 76%),radial-gradient(ellipse 38% 35% at 91% 22%,rgba(238,243,249,.76),transparent 78%);content:"";pointer-events:none}
.routes-reference-container{position:relative;width:min(100% - 48px,1440px);margin:0 auto}
.routes-reference-heading{margin:0 auto 40px;text-align:center}
.routes-reference-heading p{margin:9px 0 0;color:#94a3b8;font-family:var(--font-en);font-size:.82rem;font-weight:760;letter-spacing:.16em;line-height:1.35}
.routes-reference-heading h2{display:flex;align-items:center;justify-content:center;gap:clamp(18px,2.2vw,36px);margin:0;color:var(--color-navy);font-size:clamp(2.1rem,3.1vw,2.85rem);font-weight:790;line-height:1.15;letter-spacing:-.035em}
.routes-reference-heading h2::before,.routes-reference-heading h2::after{content:"";width:clamp(26px,3vw,44px);height:2px;background:var(--color-orange);flex:none}
:root[lang^="en"] .routes-reference-heading p{display:none}
.routes-reference-layout{display:grid;grid-template-columns:minmax(0,1.22fr) minmax(0,.96fr);gap:20px;align-items:stretch}
.route-reference-featured{min-width:0;overflow:hidden;background:#fff;border:1px solid #e2e9f1;border-radius:15px;box-shadow:0 14px 34px rgba(7,27,56,.055)}
.route-reference-featured-main{display:grid;grid-template-columns:minmax(0,.91fr) minmax(0,1.28fr);min-height:385px}
.route-reference-copy{display:flex;min-width:0;padding:46px 26px 28px 43px;flex-direction:column;align-items:flex-start;transition:opacity 180ms ease,transform 180ms ease}
.route-reference-copy.is-switching{opacity:0;transform:translateY(8px)}
.route-reference-index{margin:0 0 11px;color:var(--color-orange);font-family:var(--font-en);font-size:1.55rem;font-weight:760;line-height:1}
.route-reference-copy h3{margin:0;color:var(--color-navy);font-size:clamp(1.55rem,2.2vw,2.18rem);font-weight:790;line-height:1.23;letter-spacing:-.03em}
.route-reference-en{margin:7px 0 22px;color:#8997aa;font-family:var(--font-en);font-size:.78rem;font-weight:680;letter-spacing:.02em}
.route-reference-desc{margin:0 0 auto;color:#65758a;font-size:.87rem;line-height:1.75}
.route-reference-flags{display:flex;align-items:flex-start;flex-wrap:wrap;gap:10px;margin-top:28px}
.route-reference-flags-label{width:100%;color:#718095;font-size:.73rem;font-weight:680;letter-spacing:.04em}
.route-reference-flags-flow{display:inline-flex;align-items:center;flex-wrap:wrap;gap:7px}
.route-reference-flag{display:block;width:32px;height:21px;object-fit:cover;background:#fff;border:1px solid rgba(7,27,56,.16);border-radius:4px;box-shadow:0 2px 5px rgba(7,27,56,.07)}
.route-reference-flag-origin{border-color:rgba(245,130,32,.44)}
.route-reference-flags-arrow{color:#94a3b8;font-size:1rem;line-height:1}
.route-reference-media{position:relative;min-height:287px;margin:45px 36px 28px 0;overflow:hidden;background:#d7e2ed;border-radius:8px;box-shadow:0 8px 20px rgba(7,27,56,.09)}
.route-reference-media::after{position:absolute;inset:0;background:linear-gradient(135deg,rgba(255,255,255,.12),transparent 42%,rgba(7,27,56,.05));content:"";pointer-events:none}
.route-reference-media img{display:block;width:100%;height:100%;object-fit:cover;transform:scale(1.012);transition:opacity 280ms ease,transform 620ms cubic-bezier(.22,1,.36,1)}
.route-reference-media.is-switching img{opacity:0;transform:scale(1.05)}
.route-reference-benefits{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));margin:0 30px 30px;padding:26px 18px;background:linear-gradient(135deg,#f1f7fd 0%,#f8fbfe 100%);border:1px solid #e2edf8;border-radius:11px}
.route-reference-benefit{display:flex;min-width:0;align-items:flex-start;gap:12px;padding:4px 16px}
.route-reference-benefit+.route-reference-benefit{border-left:1px solid #dbe7f2}
.route-reference-benefit-icon{display:grid;width:44px;height:44px;place-items:center;flex:0 0 44px;color:var(--color-orange);background:#fff;border-radius:50%;box-shadow:0 4px 12px rgba(7,27,56,.045)}
.route-reference-benefit-icon svg{display:block;width:24px;height:24px;min-width:24px;stroke:var(--color-orange);stroke-linecap:round;stroke-linejoin:round}
.route-reference-benefit>div>strong,.route-reference-benefit>div>span{display:block}
.route-reference-benefit strong{margin:2px 0 6px;color:#31445f;font-size:.8rem;line-height:1.35}
.route-reference-benefit span{color:#7b8ca2;font-size:.68rem;line-height:1.58}

.route-reference-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));grid-auto-rows:minmax(0,1fr);gap:20px}
.route-reference-card{position:relative;display:flex;min-height:242px;overflow:hidden;padding:38px 30px 26px;flex-direction:column;align-items:flex-start;color:var(--color-navy);background:#fff;border:1px solid #e2e9f1;border-radius:15px;cursor:pointer;font:inherit;text-align:left;transition:transform 240ms cubic-bezier(.22,1,.36,1),border-color 240ms ease,box-shadow 240ms ease;isolation:isolate}
.route-reference-card:hover,.route-reference-card:focus-visible{border-color:rgba(245,130,32,.55);box-shadow:0 14px 28px rgba(7,27,56,.095);outline:none;transform:translateY(-3px)}
.route-reference-card-index{position:relative;z-index:2;margin:0 0 11px;color:var(--color-orange);font-family:var(--font-en);font-size:1.23rem;font-weight:760;line-height:1}
.route-reference-card-title{position:relative;z-index:2;max-width:92%;font-size:1.15rem;font-weight:780;line-height:1.35}
.route-reference-card-en{position:relative;z-index:2;max-width:94%;margin-top:7px;color:#8a99ae;font-family:var(--font-en);font-size:.72rem;font-weight:620;line-height:1.35}
.route-reference-city{position:absolute;z-index:-1;right:0;bottom:0;left:0;height:142px;background-position:center 68%;background-repeat:no-repeat;background-size:cover;filter:grayscale(1) sepia(.24) hue-rotate(158deg) saturate(.65);mix-blend-mode:multiply;opacity:.34;transform:scale(1.03);transition:opacity 240ms ease,transform 480ms cubic-bezier(.22,1,.36,1);mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.42) 30%,#000 100%)}
.route-reference-card:hover .route-reference-city,.route-reference-card:focus-visible .route-reference-city{opacity:.46;transform:scale(1.07)}
.route-reference-card-arrow{position:absolute;z-index:3;right:22px;bottom:17px;display:flex;width:42px;height:42px;align-items:center;justify-content:center;color:var(--color-navy);background:rgba(255,255,255,.94);border:1px solid #e6edf4;border-radius:50%;box-shadow:0 5px 13px rgba(7,27,56,.08);font-size:1.23rem;transition:color 220ms ease,background-color 220ms ease,transform 220ms ease}
.route-reference-card:hover .route-reference-card-arrow,.route-reference-card:focus-visible .route-reference-card-arrow{color:#fff;background:var(--color-orange);transform:translateX(3px)}
.routes-reference-trust{display:flex;align-items:center;justify-content:center;gap:11px;margin:33px 0 0;color:#7f8da1;font-size:.89rem}
.routes-reference-trust svg{width:20px;height:20px;stroke:var(--color-orange)}

@media(max-width:1120px){
  .routes-reference-container{width:min(100% - 40px,1000px)}
  .routes-reference-layout{grid-template-columns:minmax(0,1.13fr) minmax(0,.87fr)}
  .route-reference-copy{padding:38px 22px 26px 31px}
  .route-reference-media{margin:38px 24px 24px 0}
  .route-reference-benefits{margin:0 21px 21px;padding:20px 9px}
  .route-reference-benefit{gap:8px;padding:4px 10px}
  .route-reference-benefit-icon{width:38px;height:38px;flex-basis:38px}
  .route-reference-card{min-height:222px;padding:30px 22px 22px}
}

@media(max-width:820px){
  .routes-reference-section{padding:78px 0 58px}
  .routes-reference-container{width:min(100% - 32px,720px)}
  .routes-reference-layout{grid-template-columns:1fr;gap:18px}
  .route-reference-featured-main{grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr)}
  .route-reference-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:580px){
  .routes-reference-section{padding:60px 0 48px}
  .routes-reference-container{width:min(100% - 28px,430px)}
  .routes-reference-heading{margin-bottom:28px}
  .routes-reference-heading p{font-size:.69rem}
  .routes-reference-heading h2{font-size:1.92rem}
  .routes-reference-heading>span{font-size:.84rem}
  .route-reference-featured-main{display:flex;flex-direction:column}
  .route-reference-media{order:-1;min-height:0;aspect-ratio:16 / 9;margin:0;border-radius:0}
  .route-reference-copy{min-height:0;padding:28px 22px 23px}
  .route-reference-copy h3{font-size:1.62rem}
  .route-reference-en{margin-bottom:15px;font-size:.68rem}
  .route-reference-desc{font-size:.85rem}
  .route-reference-flags{margin-top:21px}
  .route-reference-benefits{grid-template-columns:1fr;margin:0 13px 14px;padding:8px 10px}
  .route-reference-benefit{padding:10px 5px}
  .route-reference-benefit+.route-reference-benefit{border-top:1px solid #dbe7f2;border-left:0}
  .route-reference-benefit strong{font-size:.77rem}
  .route-reference-benefit span{font-size:.68rem}
  .route-reference-grid{gap:12px}
  .route-reference-card{min-height:204px;padding:24px 17px 19px;border-radius:12px}
  .route-reference-card-index{font-size:1.05rem}
  .route-reference-card-title{font-size:.95rem}
  .route-reference-card-en{font-size:.64rem}
  .route-reference-city{height:112px}
  .route-reference-card-arrow{right:13px;bottom:12px;width:34px;height:34px;font-size:1rem}
  .routes-reference-trust{align-items:flex-start;margin-top:23px;font-size:.76rem;line-height:1.6;text-align:left}
}

@media(prefers-reduced-motion:reduce){
  .route-reference-copy,.route-reference-media img,.route-reference-card,.route-reference-city,.route-reference-card-arrow{transition:none}
}

/* ============================================================
   Homepage brand intro, navigation and six-route layout · 2026-07
   ============================================================ */
:root{--header-height:92px}
html{overflow-x:hidden}
@media(min-width:769px){html{scrollbar-gutter:stable}}
html.show-site-intro,html.site-intro-leaving{overflow:hidden}
html.skip-site-intro .site-intro{display:none!important}
body.is-intro-active,body.is-mobile-menu-open{overflow:hidden}
.home-v2 .mobile-nav{right:0;transform:translateX(110%);transition:transform 350ms ease}
.home-v2 .mobile-nav.active{right:0;transform:translateX(0)}

/* The intro is hidden in markup by default. It is only made interactive by JS. */
.site-intro[hidden]{display:none!important}
.site-intro{position:fixed;z-index:2100;inset:0;display:flex;overflow:hidden;align-items:center;justify-content:center;color:#fff;background:radial-gradient(ellipse 46% 45% at 50% 48%,rgba(29,91,144,.42),transparent 70%),radial-gradient(ellipse 34% 32% at 7% 87%,rgba(17,58,99,.44),transparent 74%),linear-gradient(132deg,#020d20 0%,#061d3c 47%,#0a3159 100%);isolation:isolate;opacity:0;outline:0;pointer-events:none;cursor:pointer;touch-action:manipulation;will-change:opacity;transition:opacity 760ms cubic-bezier(.4,0,.2,1)}
.site-intro::before,.site-intro::after{position:absolute;z-index:-1;inset:auto -12% 14%;height:32%;border-top:1px solid rgba(159,194,222,.14);border-radius:50%;content:"";transform:rotate(-8deg);box-shadow:0 -28px 0 -27px rgba(159,194,222,.1),0 -56px 0 -55px rgba(159,194,222,.07)}
.site-intro::after{right:-20%;bottom:8%;left:22%;height:46%;border-color:rgba(245,130,32,.14);transform:rotate(14deg)}
.site-intro__watermark{position:absolute;z-index:-1;inset:0;background:repeating-linear-gradient(112deg,transparent 0 102px,rgba(187,213,234,.035) 103px 104px,transparent 105px 206px),linear-gradient(120deg,transparent 15%,rgba(255,255,255,.065) 46%,transparent 74%);opacity:.78;transform:translateX(-45%)}
.site-intro.is-active{opacity:1;pointer-events:auto}
html.show-site-intro .site-intro{opacity:1;pointer-events:auto}
.site-intro.is-active::before{animation:site-intro-arc-drift-a 18s ease-in-out infinite alternate}
.site-intro.is-active::after{animation:site-intro-arc-drift-b 22s ease-in-out infinite alternate}
.site-intro.is-active .site-intro__watermark{animation:site-intro-light 16s ease-in-out infinite alternate}
.site-intro__signals{position:absolute;z-index:1;inset:0;pointer-events:none}
.site-intro__signal{position:absolute;color:rgba(239,247,255,.94);opacity:0;transform:translate3d(0,16px,0) scale(.94);will-change:opacity,transform,filter}
.site-intro__signal-label{display:block;margin-bottom:17px;color:rgba(211,230,244,.76);font-family:var(--font-en);font-size:.65rem;font-weight:800;letter-spacing:.2em;line-height:1.2}
.site-intro__signal--strength{top:10%;right:auto;left:50%;width:min(80vw,1380px);margin-left:0;padding-top:34px;translate:-50% 0}
.site-intro__signal-stats{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:clamp(18px,2.8vw,52px);justify-items:center}
.site-intro__signal-stats span{display:grid;gap:8px;min-width:0;justify-items:center;text-align:center}
.site-intro__signal-stats b{overflow-wrap:anywhere;color:#fff;font-family:var(--font-en);font-size:clamp(1.9rem,3vw,4rem);font-weight:760;letter-spacing:-.045em;line-height:.92;text-shadow:0 10px 28px rgba(0,8,24,.2)}
.site-intro__signal-stats small{color:rgba(216,232,244,.78);font-size:clamp(.6rem,.72vw,.84rem);font-weight:650;line-height:1.35}
.site-intro__signal-stat--credential b{font-size:clamp(1.12rem,1.65vw,2.05rem);letter-spacing:-.01em;white-space:nowrap}
html[lang="en"] .site-intro__signal-stat--credential b{font-size:clamp(1rem,1.4vw,1.78rem);letter-spacing:0}
@media(min-width:769px){
  .site-intro__signal-stats{--intro-stat-align-offset:clamp(4px,.35vw,7px)}
  .site-intro__signal-stat--credential{padding-top:var(--intro-stat-align-offset)}
  .site-intro__signal-stat--credential small{transform:translateY(var(--intro-stat-align-offset))}
}
.site-intro__signal--partners{right:auto;bottom:7%;left:50%;width:min(84vw,1360px);margin-left:max(-680px,-42vw)}
.site-intro__signal--partners .site-intro__signal-label{margin-bottom:20px;font-size:clamp(.82rem,.98vw,1.06rem);letter-spacing:.25em;text-align:center}
.site-intro__partner-logos{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));grid-auto-rows:48px;align-items:center;justify-items:center;gap:clamp(12px,1.2vw,20px) clamp(22px,2vw,46px);min-height:168px}
.site-intro__partner-logos img{display:block;max-width:min(100%,190px);height:42px;object-fit:contain;filter:brightness(0) invert(1);opacity:.9}
.site-intro__partner-logos>*{transform-origin:center}
.site-intro__partner-logos>:nth-child(1){transform:scale(2)}
.site-intro__partner-logos>:nth-child(6){transform:scale(1.5)}
.site-intro__partner-logos>:nth-child(9){transform:scale(1.9)}
.site-intro__partner-logos>:nth-child(12){transform:scale(1.8)}
.site-intro__partner-logos>:nth-child(14){transform:scale(1.7)}
.site-intro__partner-logos>:nth-child(15){transform:scale(1.75)}
.site-intro__partner-wordmark{display:flex;width:min(100%,190px);height:42px;align-items:center;justify-content:center;color:rgba(248,252,255,.9);font-family:var(--font-en);font-size:clamp(.68rem,.95vw,1rem);font-weight:800;letter-spacing:.07em;line-height:1;text-align:center}
.site-intro__partner-wordmark--emirates{font-family:Georgia,serif;font-size:clamp(.86rem,1.18vw,1.28rem);font-weight:700;letter-spacing:.03em}
.site-intro__partner-wordmark--bicm{font-size:clamp(1rem,1.4vw,1.55rem);font-weight:860;letter-spacing:.045em}
.site-intro__partner-wordmark--freightned{font-size:clamp(.58rem,.77vw,.84rem);letter-spacing:.04em}
.site-intro.is-active .site-intro__signal--strength{animation:site-intro-signal-strength 5s cubic-bezier(.22,1,.36,1) both}
.site-intro.is-active .site-intro__signal--partners{animation:site-intro-signal-partners 5s cubic-bezier(.22,1,.36,1) both}
.site-intro.is-active .site-intro__signal--strength .site-intro__signal-stats span{animation:site-intro-signal-item-in 520ms cubic-bezier(.22,1,.36,1) both}
.site-intro.is-active .site-intro__signal--strength .site-intro__signal-stats span:nth-child(1){animation-delay:.54s}.site-intro.is-active .site-intro__signal--strength .site-intro__signal-stats span:nth-child(2){animation-delay:.64s}.site-intro.is-active .site-intro__signal--strength .site-intro__signal-stats span:nth-child(3){animation-delay:.74s}.site-intro.is-active .site-intro__signal--strength .site-intro__signal-stats span:nth-child(4){animation-delay:.84s}.site-intro.is-active .site-intro__signal--strength .site-intro__signal-stats span:nth-child(5){animation-delay:.94s}
.site-intro__brand{position:relative;z-index:2;display:flex;align-items:center;gap:30px;max-width:calc(100% - 48px);opacity:0;transform:translate3d(0,32px,0) scale(.78);transform-origin:center;will-change:opacity,transform,filter}
.site-intro__brand::after{position:absolute;top:-16%;bottom:-16%;left:-16%;width:22%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);content:"";opacity:0;pointer-events:none;transform:translateX(-260%) skewX(-18deg)}
.site-intro.is-active .site-intro__brand{animation:site-intro-brand-in 1.05s cubic-bezier(.16,1,.3,1) both}
.site-intro.is-active .site-intro__brand::after{animation:site-intro-brand-sweep 1.05s .48s cubic-bezier(.22,1,.36,1) both}
.site-intro__brand img{width:auto;height:clamp(88px,7vw,128px);object-fit:contain;filter:blur(10px);opacity:.4;will-change:opacity,transform,filter}
.site-intro.is-active .site-intro__brand img{animation:site-intro-logo-in .94s .12s cubic-bezier(.16,1,.3,1) both}
.site-intro__brand-copy{display:grid;gap:14px;min-width:0}
.site-intro__brand-copy strong{color:#fff;font-size:clamp(2.55rem,4.4vw,5rem);font-weight:800;letter-spacing:.035em;line-height:1.08;white-space:nowrap;text-shadow:0 8px 32px rgba(0,8,24,.25);will-change:opacity,transform,filter,clip-path}
.site-intro.is-active .site-intro__brand-copy strong{animation:site-intro-title-in .9s .22s cubic-bezier(.16,1,.3,1) both}
.site-intro__brand-copy span{color:rgba(224,236,247,.75);font-family:var(--font-en);font-size:clamp(.7rem,1.08vw,.94rem);font-weight:750;letter-spacing:.2em;line-height:1.45}
.site-intro.is-active .site-intro__brand-copy span{animation:site-intro-support-in .66s .56s ease-out both}
html[lang="en"] .site-intro__brand-copy{gap:0}
html[lang="en"] .site-intro__brand-copy strong{font-family:var(--font-en);font-size:clamp(2.8rem,4.1vw,5.2rem);font-weight:800;letter-spacing:.045em;line-height:1;white-space:nowrap}
html[lang="en"] .site-intro__brand-copy span{display:none}
.site-intro.is-leaving,
html.show-site-intro .site-intro.is-leaving{opacity:0;pointer-events:none}
.site-intro.is-leaving .site-intro__brand{animation:site-intro-brand-out 620ms cubic-bezier(.4,0,.2,1) both}
.site-intro.is-leaving .site-intro__brand img{opacity:1;filter:brightness(1.55) saturate(1.13) drop-shadow(0 0 18px rgba(97,190,255,.28));transform:none;transition:none}
.site-intro.is-leaving .site-intro__brand-copy strong{opacity:1;filter:none;clip-path:inset(0 0 0 0);transform:none;transition:none}
.site-intro.is-leaving .site-intro__brand-copy span{opacity:1;transform:none;transition:none}
.site-intro.is-leaving .site-intro__signal--strength{opacity:0;filter:blur(6px);transform:translate3d(0,-78px,0) scale(.86);transition:transform 480ms cubic-bezier(.22,1,.36,1),opacity 340ms ease,filter 300ms ease}
.site-intro.is-leaving .site-intro__signal--partners{opacity:0;filter:blur(6px);transform:translate3d(0,62px,0) scale(.92);transition:transform 480ms cubic-bezier(.22,1,.36,1),opacity 340ms ease,filter 300ms ease}
.site-intro.is-leaving .site-intro__watermark{opacity:0;transform:translateX(-45%);transition:opacity 660ms ease}
/* Reveal the loaded hero beneath the departing intro instead of exposing it in a single frame. */
.home-v2 .hero{transition:filter 760ms cubic-bezier(.22,1,.36,1),transform 840ms cubic-bezier(.22,1,.36,1)}
body.home-v2.is-intro-active .hero{filter:brightness(.76) saturate(.88);transform:scale(1.018)}
body.home-v2.is-intro-active.is-intro-leaving .hero{filter:brightness(1) saturate(1);transform:scale(1)}
@keyframes site-intro-brand-in{0%{opacity:0;filter:blur(18px);transform:translate3d(0,38px,0) scale(.74)}58%{opacity:1;filter:blur(0);transform:translate3d(0,-5px,0) scale(1.03)}100%{opacity:1;filter:blur(0);transform:translate3d(0,0,0) scale(1)}}
@keyframes site-intro-brand-out{from{opacity:1;filter:none;transform:scale(1)}to{opacity:.72;filter:blur(1px);transform:scale(.985)}}
@keyframes site-intro-logo-in{0%{opacity:0;filter:blur(14px) brightness(1.55) saturate(1.13) drop-shadow(0 0 18px rgba(97,190,255,.28));transform:translateX(-58px) scale(.46) rotate(-9deg)}62%{opacity:1;filter:blur(0) brightness(1.55) saturate(1.13) drop-shadow(0 0 18px rgba(97,190,255,.28));transform:translateX(5px) scale(1.04) rotate(1deg)}100%{opacity:1;filter:blur(0) brightness(1.55) saturate(1.13) drop-shadow(0 0 18px rgba(97,190,255,.28));transform:translateX(0) scale(1) rotate(0)}}
@keyframes site-intro-title-in{0%{opacity:0;filter:blur(11px);clip-path:inset(0 100% 0 0);transform:translateX(56px)}100%{opacity:1;filter:blur(0);clip-path:inset(0 0 0 0);transform:translateX(0)}}
@keyframes site-intro-support-in{from{opacity:0;transform:translateY(8px);letter-spacing:.3em}to{opacity:1;transform:translateY(0);letter-spacing:.2em}}
@keyframes site-intro-brand-sweep{0%{opacity:0;transform:translateX(-260%) skewX(-18deg)}15%{opacity:1}100%{opacity:0;transform:translateX(720%) skewX(-18deg)}}
@keyframes site-intro-light{0%{opacity:.68;transform:translate3d(-3%,0,0) scale(1.04)}50%{opacity:.82;transform:translate3d(1%,-.5%,0) scale(1.055)}100%{opacity:.72;transform:translate3d(4%,.5%,0) scale(1.04)}}
@keyframes site-intro-arc-drift-a{from{opacity:.72;transform:translate3d(-1%,0,0) rotate(-8deg)}to{opacity:1;transform:translate3d(1.5%,-2%,0) rotate(-6.5deg)}}
@keyframes site-intro-arc-drift-b{from{opacity:.68;transform:translate3d(1%,1%,0) rotate(14deg)}to{opacity:.95;transform:translate3d(-1.5%,-1%,0) rotate(12.5deg)}}
@keyframes site-intro-signal-strength{0%,9%{opacity:0;filter:blur(9px);transform:translate3d(0,-28px,0) scale(.94)}18%,51%{opacity:.92;filter:blur(0);transform:translate3d(0,0,0) scale(1)}62%,100%{opacity:0;filter:blur(6px);transform:translate3d(0,-42px,0) scale(1.02)}}
@keyframes site-intro-signal-partners{0%,22%{opacity:0;filter:blur(8px);transform:translate3d(0,28px,0) scale(.94)}32%,62%{opacity:.9;filter:blur(0);transform:translate3d(0,0,0) scale(1)}72%,100%{opacity:0;filter:blur(6px);transform:translate3d(0,42px,0) scale(1.02)}}
@keyframes site-intro-signal-item-in{from{opacity:0;filter:blur(7px);transform:translate3d(0,13px,0)}to{opacity:1;filter:blur(0);transform:translate3d(0,0,0)}}

/* A taller, contained brand bar keeps the identity prominent without over-spreading on wide screens. */
.home-v2 .header{--header-scroll-alpha:0;--header-scroll-shadow-alpha:0;--header-scroll-divider-alpha:0;height:var(--header-height);background:rgba(7,27,56,var(--header-scroll-alpha));backdrop-filter:none;-webkit-backdrop-filter:none;box-shadow:0 8px 24px rgba(2,14,31,var(--header-scroll-shadow-alpha)),0 1px 0 rgba(255,255,255,var(--header-scroll-divider-alpha));transition:none}
.home-v2 .header.scrolled{background:rgba(7,27,56,var(--header-scroll-alpha));box-shadow:0 8px 24px rgba(2,14,31,var(--header-scroll-shadow-alpha)),0 1px 0 rgba(255,255,255,var(--header-scroll-divider-alpha));backdrop-filter:none;-webkit-backdrop-filter:none}
.home-v2 .header .container{max-width:1480px;padding:0 clamp(22px,3vw,48px)}
.home-v2 .header-logo{gap:16px}
.home-v2 .header-logo img{width:78px;height:56px}
.home-v2 .header-logo span{font-size:clamp(1.48rem,1.65vw,1.78rem);font-weight:780;letter-spacing:.02em}
html[lang="en"] .header-logo span{max-width:440px;font-family:var(--font-en);font-size:clamp(1.08rem,1.35vw,1.5rem);font-weight:800;letter-spacing:.045em;line-height:1.14;white-space:normal}
html[lang="en"] .home-v2 .header-logo span{max-width:440px;font-size:clamp(1.08rem,1.35vw,1.5rem)}
.home-v2 .nav{gap:clamp(8px,1vw,18px);margin-left:auto}
.home-v2 .nav>li>a,.home-v2 .nav .services-nav-link,.home-v2 .nav>li>.dropdown-toggle{display:flex;align-items:center;gap:5px;min-height:44px;padding:8px 4px;color:rgba(255,255,255,.9);background:transparent;border:0;border-radius:0;font-size:clamp(.84rem,.78vw,.94rem);font-weight:650;white-space:nowrap;transition:color 180ms ease}
.home-v2 .nav>li>a::after,.home-v2 .nav .services-nav-control::after{position:absolute;right:4px;bottom:6px;left:4px;height:2px;background:var(--color-orange);content:"";opacity:0;transform:scaleX(.45);transition:opacity 180ms ease,transform 180ms ease}
.home-v2 .nav>li>a:hover,.home-v2 .nav>li>a.active,.home-v2 .nav .services-nav-link:hover,.home-v2 .nav .services-nav-link.active,.home-v2 .nav .dropdown-toggle:hover,.home-v2 .nav li.is-open .dropdown-toggle{color:#fff}
.home-v2 .nav>li>a:hover::after,.home-v2 .nav>li>a.active::after,.home-v2 .nav .nav-services:hover .services-nav-control::after,.home-v2 .nav .nav-services:focus-within .services-nav-control::after,.home-v2 .nav .nav-services.is-open .services-nav-control::after{opacity:1;transform:scaleX(1)}
.home-v2 .nav .dropdown-toggle svg{width:14px;height:14px;transition:transform 180ms ease}
.home-v2 .nav li.is-open .dropdown-toggle svg{transform:rotate(180deg)}
.home-v2 .nav .dropdown-menu{top:100%;left:50%;min-width:214px;padding:8px;opacity:0;visibility:hidden;background:rgba(255,255,255,.98);border:1px solid rgba(226,233,241,.95);border-radius:12px;box-shadow:0 18px 42px rgba(2,20,43,.2);transform:translateX(-50%) translateY(10px);transition:opacity 180ms ease,visibility 180ms ease,transform 180ms ease}
.home-v2 .nav li.is-open .dropdown-menu,.home-v2 .nav li:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(5px)}
.home-v2 .nav .dropdown-menu a{min-height:38px;padding:9px 12px;font-weight:650}
.home-v2 .header-actions{gap:12px;margin-left:clamp(13px,1.5vw,24px)}
.home-v2 .lang-toggle{display:inline-flex;min-width:108px;height:48px;align-items:center;justify-content:flex-end;gap:9px;padding:0 2px;color:rgba(255,255,255,.92);background:transparent;border:0;border-radius:0;font-family:var(--font-en);font-size:.9rem;font-weight:780;letter-spacing:.06em;box-shadow:none;transition:color 180ms ease}
.home-v2 .lang-toggle-globe{width:20px;height:20px;flex:0 0 20px;color:rgba(217,232,244,.76);transition:color 180ms ease,transform 180ms ease}
.home-v2 .lang-toggle-option{position:relative;display:inline-flex;height:38px;align-items:center;padding:0 3px;background:transparent;border-radius:0;transition:color 180ms ease,opacity 180ms ease}
.home-v2 .lang-toggle:hover{color:#fff;background:transparent;border-color:transparent;outline:0;transform:none}
.home-v2 .lang-toggle:hover .lang-toggle-globe{color:var(--color-orange);transform:rotate(-10deg)}
.home-v2 .lang-toggle:focus-visible{outline:2px solid var(--color-orange);outline-offset:4px}
.home-v2 .lang-toggle-current{color:#fff;background:transparent;font-weight:820}
.home-v2 .lang-toggle-current::after{position:absolute;right:3px;bottom:1px;left:3px;height:3px;background:var(--color-orange);content:"";transform-origin:left;transition:transform 180ms ease}
.home-v2 .lang-toggle-next{color:rgba(255,255,255,.5)}
.home-v2 .lang-toggle:hover .lang-toggle-next{color:rgba(255,255,255,.9)}
.home-v2 .header-quote-btn{height:36px;padding:0 12px;border-radius:7px;font-size:.88rem}

/* The hero remains a loaded, immersive vessel scene while giving copy a stronger left-side stage. */
.home-v2 .hero{height:max(760px,100svh);min-height:760px}
.home-v2 .hero-overlay{background:linear-gradient(90deg,rgba(4,20,42,.93) 0%,rgba(4,20,42,.82) 35%,rgba(4,20,42,.42) 61%,rgba(4,20,42,.08) 100%)}
.home-v2 .hero .container{max-width:1480px;padding:clamp(210px,25vh,255px) clamp(22px,3vw,48px) 150px}
.home-v2 .hero-content{max-width:750px}
.home-v2 .hero-content h1{margin-bottom:12px;font-size:clamp(4rem,5.2vw,5.25rem);font-weight:800;line-height:1.08;letter-spacing:-.052em}
.home-v2 .hero-title-en{margin-bottom:28px;color:rgba(224,236,247,.72);font-size:.83rem;letter-spacing:.22em}
.home-v2 .hero-content p{max-width:645px;color:rgba(255,255,255,.92);font-size:clamp(1rem,1.08vw,1.16rem);line-height:1.86}
.home-v2 .hero-buttons{gap:13px;margin-top:34px}
.home-v2 .btn-hero-primary,.home-v2 .btn-hero-white{height:52px;padding:0 24px;border-radius:8px;font-size:.96rem;font-weight:720}
.home-v2 .stats-bar-wrapper{margin-top:-62px}
.home-v2 #routes{scroll-margin-top:calc(var(--header-height) + 16px)}
@media(prefers-reduced-motion:no-preference){.home-v2 .hero-title-en{animation:home-v2-rise-in 700ms 150ms ease-out both}.home-v2 .hero-buttons{animation:home-v2-rise-in 700ms 240ms ease-out both}}

/* Fixed DOM order: 01 / 02 / 03 then 04 / 05 / 06 / 07. */
.routes-reference-section{padding:112px 0 74px}
.routes-reference-container{width:min(100% - 56px,1480px)}
.routes-reference-layout{display:block}
.route-reference-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));grid-auto-rows:auto;gap:20px;align-items:stretch}
.route-reference-grid>.route-reference-card{min-width:0;opacity:0;transform:translateY(18px);transition:opacity 500ms ease var(--route-delay,0ms),transform 500ms cubic-bezier(.22,1,.36,1) var(--route-delay,0ms)}
.route-reference-grid>.route-reference-card.is-revealed{opacity:1;transform:translateY(0)}
.route-reference-grid>.route-reference-featured{grid-column:span 6}
.route-reference-grid>.route-reference-card--standard:nth-child(2),.route-reference-grid>.route-reference-card--standard:nth-child(3){grid-column:span 3}
.route-reference-grid>.route-reference-card--standard:nth-child(n+4){grid-column:span 3}
.route-reference-featured{display:flex;padding:0;flex-direction:column;cursor:default}
.route-reference-featured-main{min-height:354px}
.route-reference-copy{padding:34px 24px 23px 34px}
.route-reference-copy h3{font-size:clamp(1.7rem,2.05vw,2.2rem)}
.route-reference-desc{font-size:.9rem}
.route-reference-featured .route-reference-en{margin-bottom:15px}
.route-reference-featured .route-reference-flags{margin-top:18px}
.route-reference-media{min-height:0;aspect-ratio:1.28 / 1;margin:25px 22px 18px 0;align-self:center}
.route-featured-link{display:inline-flex;align-items:center;gap:9px;margin-top:17px;color:var(--color-orange);font-size:.82rem;font-weight:760;transition:gap 180ms ease}
.route-featured-link:hover,.route-featured-link:focus-visible{gap:13px;outline:none}
.route-reference-benefits{margin:0 24px 24px;padding:21px 13px}
.route-reference-benefit{padding:4px 11px}
.route-reference-benefit-icon{width:40px;height:40px;flex-basis:40px}
.route-reference-benefit-icon svg{width:21px;height:21px}
.route-reference-card--standard{position:relative;display:flex;min-height:292px;overflow:hidden;padding:31px 28px 24px;flex-direction:column;align-items:flex-start;justify-content:flex-start;color:var(--color-navy);background:#fff;border:1px solid #dfe6ee;border-radius:15px;cursor:pointer;font:inherit;text-align:left;isolation:isolate;transition:opacity 500ms ease var(--route-delay,0ms),transform 300ms cubic-bezier(.22,1,.36,1),border-color 260ms ease,box-shadow 260ms ease}
.route-reference-card--standard:hover,.route-reference-card--standard:focus-visible{border-color:rgba(245,130,32,.52);box-shadow:0 18px 34px rgba(7,27,56,.1);outline:none;transform:translateY(-3px)}
.route-reference-card-city{position:absolute;z-index:-1;right:0;bottom:0;left:0;height:73%;background-position:center bottom;background-repeat:no-repeat;background-size:cover;filter:grayscale(1) contrast(.82);opacity:.18;transform:scale(1.025);transition:opacity 320ms ease,transform 420ms cubic-bezier(.22,1,.36,1);mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.18) 22%,#000 100%);-webkit-mask-image:linear-gradient(180deg,transparent 0%,rgba(0,0,0,.18) 22%,#000 100%)}
.route-reference-card--standard:hover .route-reference-card-city,.route-reference-card--standard:focus-visible .route-reference-card-city{opacity:.3;transform:scale(1.045)}
.route-reference-card--standard .route-reference-card-index{margin:0 0 14px;color:#ff9c45;font-size:1.15rem}
.route-reference-card--standard .route-reference-card-title{max-width:calc(100% - 36px);min-height:2.7em;color:var(--color-navy);font-size:clamp(1.04rem,1.17vw,1.23rem);font-weight:760;line-height:1.35}
.route-reference-card--standard .route-reference-card-en{max-width:95%;min-height:2.8em;margin-top:8px;color:#8a99ae;font-size:.68rem;font-weight:700;letter-spacing:.04em;line-height:1.42}
.route-reference-card--standard .route-reference-card-arrow{right:20px;bottom:18px;width:42px;height:42px;color:var(--color-navy);background:rgba(255,255,255,.96);border-color:#dfe7ef;box-shadow:0 5px 13px rgba(7,27,56,.08)}
.route-reference-card--standard:hover .route-reference-card-arrow,.route-reference-card--standard:focus-visible .route-reference-card-arrow{color:#fff;background:var(--color-orange);border-color:var(--color-orange);transform:translateX(3px)}
.route-reference-featured:focus-visible{outline:2px solid var(--color-orange);outline-offset:4px}
.route-reference-featured-main,.route-reference-card--standard>span{transition:opacity 120ms ease,transform 160ms ease}
.route-reference-featured.is-switching .route-reference-featured-main,.route-reference-card--standard.is-switching>span{opacity:0;transform:translateY(5px)}
.route-reference-card--standard.is-switching{pointer-events:none}

@media(min-width:1200px){
  .route-reference-grid{grid-template-rows:300px 250px}
  .route-reference-featured-main{min-height:0;flex:1 1 auto}
  .route-reference-copy{padding:14px 18px 12px 24px}
  .route-reference-featured .route-reference-index{margin-bottom:7px;font-size:1.3rem}
  .route-reference-featured .route-reference-copy h3{font-size:clamp(1.45rem,1.75vw,1.85rem);line-height:1.18}
  .route-reference-featured .route-reference-en{margin:5px 0 8px;font-size:.7rem}
  .route-reference-featured .route-reference-desc{font-size:.78rem;line-height:1.52}
  .route-reference-featured .route-reference-flags{margin-top:8px}
  .route-reference-media{aspect-ratio:1.75 / 1;margin-top:16px;margin-bottom:14px}
  .route-featured-link{margin-top:8px;font-size:.76rem}
  .route-reference-card--standard{min-height:0;padding:24px 22px 18px}
}

@media(max-width:1199px){
  :root{--header-height:82px}
  .home-v2 .header .container{padding:0 24px}
  .home-v2 .header-logo{gap:13px}
  .home-v2 .header-logo img{width:66px;height:48px}
  .home-v2 .header-logo span{font-size:1.35rem}
  .home-v2 .nav{display:none}
  .home-v2 .menu-toggle{display:flex}
  .home-v2 .header-actions .header-quote-btn{display:none}
  .home-v2 .header-actions{margin-left:auto;margin-right:10px}
  .home-v2 .hero{height:max(720px,100svh);min-height:720px}
  .home-v2 .hero .container{padding-top:210px}
  .home-v2 .hero-content h1{font-size:clamp(3.35rem,6.5vw,4.5rem)}
  .route-reference-grid>.route-reference-featured{grid-column:1/-1}
  .route-reference-grid>.route-reference-card--standard:nth-child(n){grid-column:span 6}
  .route-reference-grid>.route-reference-card--standard:nth-child(6){grid-column:span 6}
}

@media(max-width:767px){
  :root{--header-height:72px}
  body.home-v2{padding-top:72px}
  html{scroll-padding-top:84px}
  .home-v2 .header{height:72px;background:#071b38;backdrop-filter:none;-webkit-backdrop-filter:none}
  .home-v2 .header .container{padding:0 16px}
  .home-v2 .header-logo{gap:10px;min-width:0}
  .home-v2 .header-logo img{width:48px;height:40px}
  .home-v2 .header-logo span{overflow:visible;font-size:1.04rem;text-overflow:clip;white-space:nowrap}
  .home-v2 .header-actions{display:none}
  .home-v2 .menu-toggle{min-width:44px;min-height:44px;padding:9px 0 9px 12px;align-items:flex-end}
  .home-v2 .menu-toggle span{width:25px}
  .home-v2 .mobile-nav{top:0;right:-100%;width:min(88vw,340px);height:100dvh;max-height:none;padding:92px 22px calc(28px + env(safe-area-inset-bottom));background:#fff;box-shadow:-18px 0 48px rgba(7,27,56,.24);overscroll-behavior:contain}
  .home-v2 .mobile-nav.active{right:0}
  .home-v2 .mobile-nav-topline{display:flex;align-items:center;justify-content:space-between;margin:-6px 0 14px;padding-bottom:15px;color:#6d7d91;border-bottom:1px solid #e6edf4;font-size:.75rem;font-weight:700;letter-spacing:.08em}
  .home-v2 .mobile-nav .mobile-lang-toggle{min-width:108px;height:44px;padding:0 2px;color:var(--color-navy);background:transparent;border:0;border-radius:0;font-size:.86rem}
  .home-v2 .mobile-nav .mobile-lang-toggle .lang-toggle-globe{width:19px;height:19px;flex-basis:19px}
  .home-v2 .mobile-nav .mobile-lang-toggle .lang-toggle-globe{color:var(--color-orange)}
  .home-v2 .mobile-nav .mobile-lang-toggle .lang-toggle-current{color:var(--color-navy);background:transparent}
  .home-v2 .mobile-nav .mobile-lang-toggle .lang-toggle-next{color:rgba(7,27,56,.55)}
  .home-v2 .mobile-nav .mobile-lang-toggle:hover{background:transparent;border-color:transparent}
  .home-v2 .mobile-nav a,.home-v2 .mobile-nav .mobile-sub-toggle{display:flex;width:100%;min-height:48px;align-items:center;justify-content:space-between;gap:18px;padding:12px 2px;color:var(--color-navy);background:transparent;border:0;border-bottom:1px solid #edf1f5;font-size:.98rem;font-weight:680;text-align:left}
  .home-v2 .mobile-nav a::after{width:16px;height:16px;flex:0 0 16px;content:"";background:currentColor;opacity:.42;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 5l7 7-7 7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat}
  .home-v2 .mobile-nav .mobile-sub-toggle svg{width:17px;height:17px;transition:transform 180ms ease}
  .home-v2 .mobile-nav .mobile-sub-toggle.open svg{transform:rotate(180deg)}
  .home-v2 .mobile-nav .mobile-services-control a{width:auto;flex:1}
  .home-v2 .mobile-nav .mobile-services-control a::after{display:none}
  .home-v2 .mobile-nav .mobile-services-control .mobile-sub-toggle{width:auto;flex:0 0 auto;padding:12px 2px 12px 18px}
  .home-v2 .mobile-nav .mobile-sub{padding:0 0 5px 14px}
  .home-v2 .mobile-nav .mobile-sub a{min-height:42px;padding:9px 2px;font-size:.88rem;font-weight:570}
  .home-v2 .mobile-nav .mobile-nav-quote{display:flex;width:100%;min-height:46px;justify-content:center;margin-top:15px;padding:10px 18px;color:#fff;background:var(--color-orange);border:0;border-radius:8px;font-size:.9rem}
  .home-v2 .hero{height:auto;min-height:0}
  .home-v2 .hero .container{padding:142px 20px 104px}
  .home-v2 .hero-content{max-width:100%}
  .home-v2 .hero-content h1{font-size:clamp(2.25rem,10vw,3.15rem);line-height:1.12}
  .home-v2 .hero-title-en{margin-bottom:20px;font-size:.65rem;letter-spacing:.16em}
  .home-v2 .hero-content p{font-size:.92rem;line-height:1.75}
  .home-v2 .hero-buttons{width:100%;margin-top:27px}
  .home-v2 .btn-hero-primary,.home-v2 .btn-hero-white{min-height:50px;height:50px;padding:0 19px}
  .home-v2 .hero-slide:nth-child(n) img{object-position:64% center}
  .home-v2 .stats-bar-wrapper{margin-top:-34px}
  .routes-reference-section{padding:72px 0 56px}
  .routes-reference-container{width:min(100% - 28px,620px)}
  .routes-reference-heading{margin-bottom:30px}
  .route-reference-grid{grid-template-columns:1fr;gap:14px}
  .route-reference-grid>.route-reference-featured,.route-reference-grid>.route-reference-card--standard:nth-child(n){grid-column:1/-1}
  .route-reference-featured-main{display:flex;min-height:0;flex-direction:column}
  .route-reference-copy{padding:29px 22px 25px}
  .route-reference-copy h3{font-size:1.72rem}
  .route-reference-media{min-height:0;aspect-ratio:16/9;margin:0 14px 14px;border-radius:10px}
  .route-reference-benefits{grid-template-columns:1fr;margin:0 14px 14px;padding:8px 10px}
  .route-reference-benefit{padding:10px 5px}
  .route-reference-benefit+.route-reference-benefit{border-top:1px solid #dbe7f2;border-left:0}
  .route-reference-card--standard{min-height:250px;padding:26px 21px 20px}
  .route-reference-card--standard .route-reference-card-title{font-size:1.1rem}
  .route-reference-card--standard .route-reference-card-en{font-size:.65rem}
  .route-reference-card--standard .route-reference-card-arrow{right:16px;bottom:14px;min-width:44px;min-height:44px}
  .routes-reference-trust{font-size:.76rem}
  .site-intro__signal--partners{display:none}
  .site-intro__signal--strength{top:auto;right:16px;bottom:118px;left:16px;width:auto;margin-left:0;padding-top:0;translate:none}
  .site-intro__signal-label{margin-bottom:12px;font-size:.57rem}
  .site-intro__signal-stats{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px 12px}
  .site-intro__signal-stats span{gap:5px}
  .site-intro__signal-stats b{font-size:1.48rem}
  .site-intro__signal-stats small{font-size:.55rem}
  .site-intro__signal-stat--credential b{font-size:.82rem;line-height:1.1;white-space:normal}
  html[lang="en"] .site-intro__signal-stat--credential b{font-size:.72rem}
  .site-intro__brand{gap:16px;align-items:flex-start}
  .site-intro__brand img{height:68px}
  .site-intro__brand-copy{gap:8px;padding-top:5px}
  .site-intro__brand-copy strong{font-size:clamp(1.75rem,8.2vw,2.25rem);white-space:normal}
  .site-intro__brand-copy span{font-size:.54rem;letter-spacing:.11em}
  html[lang="en"] .site-intro__brand-copy strong{font-size:clamp(1.14rem,4.85vw,1.5rem);letter-spacing:.045em}
  html[lang="en"] .site-intro__brand-copy span{font-size:.5rem;letter-spacing:.1em}
  html[lang="en"] .header-logo span{max-width:220px;font-size:.57rem;letter-spacing:.04em}
}

@media(max-width:390px){
  .home-v2 .header-logo img{width:43px;height:37px}
  .home-v2 .header-logo span{font-size:.93rem}
  .home-v2 .hero .container{padding:137px 16px 92px}
  .home-v2 .hero-content h1{font-size:2.14rem}
  .home-v2 .hero-content p{font-size:.86rem}
  .route-reference-card--standard{min-height:240px}
  .site-intro__brand-copy strong{font-size:1.55rem}
}

@media(prefers-reduced-motion:reduce){
  .site-intro,.site-intro::before,.site-intro::after,.site-intro *,.route-reference-grid>.route-reference-card,.route-reference-card-media img,.route-reference-card-detail{animation:none!important;transition:none!important}
  .route-reference-grid>.route-reference-card{opacity:1;transform:none}
}

/* Compact the intro into a fast, legible brand hand-off on every screen. */
.site-intro{transition-duration:760ms}
.site-intro.is-active .site-intro__watermark{animation-duration:16s}
.site-intro__partner-logos{grid-template-columns:repeat(5,minmax(0,1fr));grid-auto-rows:48px;min-height:176px;gap:10px clamp(20px,2.2vw,38px)}
.site-intro__partner-logos>*{--intro-logo-scale:1;display:flex;width:min(100%,170px);max-width:170px;height:36px;min-width:0;align-items:center;justify-content:center;color:rgba(238,246,252,.92);opacity:.94;transform:scale(var(--intro-logo-scale))!important;transform-origin:center}
.site-intro__partner-logos img{width:min(100%,170px);max-width:170px;height:36px;object-fit:contain;filter:brightness(0) invert(1);opacity:1}
.site-intro__partner-logos>:nth-child(1){--intro-logo-scale:.9}
.site-intro__partner-logos img.site-intro__partner-logo--maersk{filter:none}
.site-intro__partner-logos>:nth-child(2){--intro-logo-scale:.9}
.site-intro__partner-logos>:nth-child(3){--intro-logo-scale:1.22}
.site-intro__partner-logos>:nth-child(4){--intro-logo-scale:1.12}
.site-intro__partner-logos>:nth-child(5){--intro-logo-scale:1.05}
.site-intro__partner-logos>:nth-child(7){--intro-logo-scale:.92}
.site-intro__partner-logos>:nth-child(9){--intro-logo-scale:1.55}
.site-intro__partner-logos>:nth-child(10){--intro-logo-scale:1.5}
.site-intro__partner-logos>:nth-child(12){--intro-logo-scale:1.28}
.site-intro__partner-logos>:nth-child(13){--intro-logo-scale:.98}
.site-intro__partner-logos>:nth-child(15){--intro-logo-scale:1.52}
.site-intro__partner-wordmark{font-size:1.2rem;font-weight:790;letter-spacing:.065em}
.site-intro__partner-wordmark--emirates{font-size:1.2rem}
.site-intro__partner-wordmark--bicm{font-size:1.18rem;letter-spacing:.05em}
.site-intro__partner-wordmark--duvenbeck{gap:5px;font-size:1rem;letter-spacing:.04em}
.site-intro__partner-wordmark--duvenbeck i{display:grid;width:15px;height:15px;place-items:center;color:#0b2d55;background:rgba(238,246,252,.92);font-family:Arial,sans-serif;font-size:.62rem;font-style:normal;font-weight:900;letter-spacing:0;line-height:1}
.site-intro__partner-wordmark--freightned{font-size:1.2rem;letter-spacing:.04em}
.site-intro.is-active .site-intro__signal--strength,.site-intro.is-active .site-intro__signal--partners{animation-duration:2.8s}
.site-intro.is-active .site-intro__signal--strength .site-intro__signal-stats span{animation-duration:420ms}
.site-intro.is-active .site-intro__signal--strength .site-intro__signal-stats span:nth-child(1){animation-delay:.32s}
.site-intro.is-active .site-intro__signal--strength .site-intro__signal-stats span:nth-child(2){animation-delay:.4s}
.site-intro.is-active .site-intro__signal--strength .site-intro__signal-stats span:nth-child(3){animation-delay:.48s}
.site-intro.is-active .site-intro__signal--strength .site-intro__signal-stats span:nth-child(4){animation-delay:.56s}
.site-intro.is-active .site-intro__signal--strength .site-intro__signal-stats span:nth-child(5){animation-delay:.64s}
.site-intro.is-active .site-intro__brand{animation-duration:.78s}
.site-intro.is-active .site-intro__brand::after{animation-duration:.78s;animation-delay:.32s}
.site-intro.is-active .site-intro__brand img{animation-duration:.7s;animation-delay:.08s}
.site-intro.is-active .site-intro__brand-copy strong{animation-duration:.68s;animation-delay:.16s}
.site-intro.is-active .site-intro__brand-copy span{animation-duration:.5s;animation-delay:.4s}
.site-intro.is-leaving .site-intro__signal--strength,.site-intro.is-leaving .site-intro__signal--partners{transition-duration:360ms,270ms,240ms}
.site-intro.is-leaving .site-intro__watermark{transition-duration:760ms,660ms}
.home-v2 .hero{transition-duration:760ms,820ms}

/* Match the Chinese motion path while keeping the English logo filter static to avoid repeated filter rasterization. */
html[lang="en"] .site-intro__brand{will-change:opacity,transform}
html[lang="en"] .site-intro__brand img{height:clamp(104px,8.4vw,148px);filter:blur(0) brightness(1.55) saturate(1.13) drop-shadow(0 0 18px rgba(97,190,255,.28));opacity:0;transform:translate3d(-58px,0,0) scale(.46) rotate(-9deg);will-change:opacity,transform}
html[lang="en"] .site-intro__brand-copy strong{will-change:opacity,transform}
html[lang="en"] .site-intro.is-active .site-intro__brand{animation-name:site-intro-brand-in-light;animation-duration:.78s}
html[lang="en"] .site-intro.is-active .site-intro__brand img{animation-name:site-intro-logo-in-light;animation-duration:.7s;animation-delay:.08s}
html[lang="en"] .site-intro.is-active .site-intro__brand-copy strong{animation-name:site-intro-title-in-light;animation-duration:.68s;animation-delay:.16s}
html[lang="en"] .site-intro.is-active .site-intro__brand-copy span{animation-name:site-intro-support-in-light;animation-duration:.5s;animation-delay:.4s}
html[lang="en"] .site-intro.is-leaving .site-intro__brand{animation-name:site-intro-brand-out-light}
html[lang="en"] .site-intro.is-leaving .site-intro__brand img{filter:blur(0) brightness(1.55) saturate(1.13) drop-shadow(0 0 18px rgba(97,190,255,.28));opacity:1;transform:none}

@keyframes site-intro-brand-in-light{0%{opacity:0;transform:translate3d(0,38px,0) scale(.74)}58%{opacity:1;transform:translate3d(0,-5px,0) scale(1.03)}100%{opacity:1;transform:translate3d(0,0,0) scale(1)}}
@keyframes site-intro-logo-in-light{0%{opacity:0;transform:translate3d(-58px,0,0) scale(.46) rotate(-9deg)}62%{opacity:1;transform:translate3d(5px,0,0) scale(1.04) rotate(1deg)}100%{opacity:1;transform:translate3d(0,0,0) scale(1) rotate(0)}}
@keyframes site-intro-title-in-light{from{opacity:0;clip-path:inset(0 100% 0 0);transform:translate3d(56px,0,0)}to{opacity:1;clip-path:inset(0 0 0 0);transform:translate3d(0,0,0)}}
@keyframes site-intro-support-in-light{from{opacity:0;transform:translate3d(0,8px,0)}to{opacity:1;transform:translate3d(0,0,0)}}
@keyframes site-intro-brand-out-light{from{opacity:1;transform:scale(1)}to{opacity:.72;transform:scale(.985)}}

@keyframes site-intro-signal-strength{
  0%,12%{opacity:0;filter:blur(9px);transform:translate3d(0,-28px,0) scale(.94)}
  27%,100%{opacity:.92;filter:blur(0);transform:translate3d(0,0,0) scale(1)}
}
@keyframes site-intro-signal-partners{
  0%,22%{opacity:0;filter:blur(8px);transform:translate3d(0,28px,0) scale(.94)}
  40%,100%{opacity:.9;filter:blur(0);transform:translate3d(0,0,0) scale(1)}
}

@media(max-width:767px){
  .site-intro__brand{position:absolute;top:27%;right:20px;left:20px;max-width:none;gap:13px;align-items:center}
  .site-intro__brand img{height:clamp(54px,15vw,68px)}
  .site-intro__brand-copy{gap:6px;padding-top:0}
  .site-intro__brand-copy strong{font-size:clamp(1.58rem,7.4vw,2rem);line-height:1.13;white-space:nowrap}
  .site-intro__brand-copy span{font-size:.48rem;letter-spacing:.1em}
  .site-intro__signal--partners{display:block;top:55.5%;right:16px;bottom:auto;left:16px;width:auto;margin-left:0}
  .site-intro__signal--partners .site-intro__signal-label{margin-bottom:13px;font-size:.92rem;letter-spacing:.2em;text-align:center}
  .site-intro__partner-logos{grid-template-columns:repeat(3,minmax(0,1fr));grid-auto-rows:28px;min-height:172px;gap:8px 10px}
  .site-intro__partner-logos>*,.site-intro__partner-logos .site-intro__partner-wordmark{width:100%;max-width:100px;height:24px;min-width:0;transform:scale(var(--intro-logo-scale))!important}
  .site-intro__partner-logos img{width:100%;max-width:100px;height:24px}
  .site-intro__partner-logos>:nth-child(1){--intro-logo-scale:.9}
  .site-intro__partner-logos>:nth-child(2){--intro-logo-scale:.86}
  .site-intro__partner-logos>:nth-child(3){--intro-logo-scale:1.12}
  .site-intro__partner-logos>:nth-child(4){--intro-logo-scale:1.05}
  .site-intro__partner-logos>:nth-child(5){--intro-logo-scale:.98}
  .site-intro__partner-logos>:nth-child(7){--intro-logo-scale:.92}
  .site-intro__partner-logos>:nth-child(9){--intro-logo-scale:1.48}
  .site-intro__partner-logos>:nth-child(10){--intro-logo-scale:1.34}
  .site-intro__partner-logos>:nth-child(12){--intro-logo-scale:1.18}
  .site-intro__partner-logos>:nth-child(13){--intro-logo-scale:.92}
  .site-intro__partner-logos>:nth-child(15){--intro-logo-scale:1.42}
  .site-intro__partner-wordmark{font-size:.82rem}
  .site-intro__partner-wordmark--emirates{font-size:.86rem}
  .site-intro__partner-wordmark--bicm{font-size:.82rem}
  .site-intro__partner-wordmark--duvenbeck{gap:3px;font-size:.72rem}
  .site-intro__partner-wordmark--duvenbeck i{width:11px;height:11px;font-size:.46rem}
  .site-intro__partner-wordmark--freightned{font-size:.75rem}
  .site-intro__signal--strength{top:45%;right:16px;bottom:auto;left:16px;padding-top:0}
  .site-intro__signal--strength .site-intro__signal-label{display:none}
  .site-intro__signal--strength .site-intro__signal-stats span:nth-child(n+4){display:none}
  .site-intro__signal-label{margin-bottom:10px;font-size:.54rem}
  .site-intro__signal-stats{gap:12px}
  .site-intro__signal-stats b{font-size:1.38rem}
  .site-intro__signal-stats small{font-size:.54rem}
  .site-intro__signal-stat--credential b{font-size:.78rem;white-space:nowrap}
}

@media(max-width:390px){
  .site-intro__brand{right:16px;left:16px;gap:11px}
  .site-intro__brand-copy strong{font-size:1.46rem}
  .site-intro__partner-logos{gap:8px 10px}
}

@media(max-width:767px){
  .site-intro__brand-copy strong{font-size:clamp(1.2rem,5.4vw,1.5rem);line-height:1.12;white-space:normal}
  html[lang="en"] .site-intro__brand-copy strong{font-size:clamp(1.06rem,4.45vw,1.38rem);letter-spacing:.04em;line-height:1.08}
}

@media(max-width:390px){
  .site-intro__brand-copy strong{font-size:1.2rem}
  html[lang="en"] .site-intro__brand-copy strong{font-size:1.04rem}
}

/* Mobile intro is intentionally reduced to the brand mark and company name. */
@media(max-width:767px){
  .site-intro__signals{display:none}
  .site-intro__brand{position:relative;top:auto;right:auto;left:auto;width:calc(100vw - 48px);max-width:calc(100% - 48px);flex-direction:column;align-items:center;gap:18px;text-align:center}
  .site-intro__brand img{height:clamp(84px,25vw,112px)}
  .site-intro__brand-copy{width:100%;justify-items:center;gap:9px;padding-top:0}
  .site-intro__brand-copy strong{max-width:100%;text-align:center}
  .site-intro__brand-copy span{display:block;width:100%;overflow:visible;font-size:clamp(.42rem,1.9vw,.5rem);letter-spacing:.1em;text-align:center;white-space:nowrap}
  /* English already uses the full company name in the main heading. Keep one stable title block on mobile. */
  html[lang="en"] .site-intro__brand-copy{min-height:1.2em;gap:0}
  html[lang="en"] .site-intro__brand-copy strong{display:block;width:100%;min-height:1.2em;font-size:clamp(1.2rem,6vw,1.65rem);line-height:1.16;letter-spacing:.045em;white-space:nowrap}
  html[lang="en"] .site-intro__brand-copy span{display:none}
  .site-intro.is-leaving .site-intro__brand{animation-duration:660ms}
  .site-intro.is-leaving .site-intro__brand img,
  .site-intro.is-leaving .site-intro__brand-copy strong,
  .site-intro.is-leaving .site-intro__brand-copy span{opacity:1;filter:none;clip-path:none;transform:none;transition:none}
}

/* Desktop intro follows the same clear logo-over-name hierarchy in both languages. */
@media(min-width:768px){
  .site-intro__brand{flex-direction:column;align-items:center;gap:22px;text-align:center}
  .site-intro__brand-copy{justify-items:center}
  .site-intro__brand-copy strong{text-align:center}
  .site-intro__brand img,
  html[lang="en"] .site-intro__brand img{height:clamp(190px,14vw,280px)}
}

/* The Chinese intro uses the Chinese company name only. */
html[lang^="zh"] .site-intro__brand-copy span{display:none}
