:root {
  --navy: #004aad;
  --navy-deep: #00265c;
  --sky: #00c1ff;
  --lime: #8ca000;
  --ink: #14171f;
  --slate: #4b5568;
  --slate-light: #828da0;
  --paper: #f5f7fa;
  --line: #e2e6ed;
  --white: #ffffff;
  --radius: 10px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 15px;
}
h1,
h2,
h3,
h4 {
  font-family: "Inter", sans-serif;
  margin: 0;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
::selection {
  background: var(--sky);
  color: #fff;
}

/* ---------- Header ---------- */
header.site {
  background: var(--navy-deep);
  border-bottom: 3px solid var(--sky);
  position: relative;
  z-index: 9999;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
  gap: 20px;
}
nav.primary {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
  font-weight: 600;
}
.logo {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
}
.logo img {
  height: 24px;
  width: auto;
  display: block;
}
nav.primary > a {
  padding: 10px 13px;
  border-radius: 6px;
  color: #c9d6ec;
}
nav.primary > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
nav.primary .dropdown {
  position: relative;
}
nav.primary .dropdown > span {
  cursor: pointer;
  color: #c9d6ec;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 13px;
  display: inline-block;
  border-radius: 6px;
}
nav.primary .dropdown:hover > span {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
nav.primary .dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10000;
  background: #fff;
  color: var(--ink);
  min-width: 580px;
  border-radius: 10px;
  box-shadow: 0 20px 44px rgba(0, 10, 40, 0.3);
  padding: 20px;
  margin-top: 8px;
}
nav.primary .dropdown:hover .dropdown-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dropdown-panel .dpcol h6 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate-light);
  margin: 0 0 8px;
  font-weight: 700;
}
.dropdown-panel a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.dropdown-panel a:hover {
  color: var(--navy);
  text-decoration: underline;
}
.nav-cta {
  margin-left: auto;
  background: var(--sky);
  color: var(--navy-deep);
  padding: 9px 16px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 700;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
@media (max-width: 1080px) {
  nav.primary {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-deep);
}

/* ---------- Hero + quick-match ---------- */
.hero {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 40px 0 0;
}
.hero-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 36px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
  margin-bottom: 12px;
}
.hero p {
  color: #c3d2ec;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.matcher {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 10, 40, 0.18);
  padding: 22px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
  max-width: 760px;
  margin: 0 auto;
  flex-wrap: wrap;
  transform: translateY(-34px);
}
.matcher-field {
  flex: 1;
  min-width: 200px;
  text-align: left;
}
.matcher-field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.matcher select {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", sans-serif;
}
.matcher .btn {
  white-space: nowrap;
  padding: 12px 24px;
}

/* ---------- Sliding hero banner ---------- */
.slider {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}
.slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  min-width: 100%;
  position: relative;
}
.slide-link {
  display: block;
  position: relative;
  height: 380px;
}
.slide-illustration {
  position: absolute;
  inset: 0;
}
.slide-illustration svg {
  width: 100%;
  height: 100%;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 38, 92, 0.94) 0%,
    rgba(0, 38, 92, 0.72) 48%,
    rgba(0, 38, 92, 0.15) 85%
  );
  display: flex;
  align-items: center;
}
.slide-content {
  max-width: 460px;
  padding: 0 24px;
  margin-left: calc(50% - 580px + 24px);
}
@media (max-width: 1180px) {
  .slide-content {
    margin-left: 24px;
  }
}
.slide-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--sky);
  background: rgba(0, 193, 255, 0.14);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.slide-content h2 {
  color: #fff;
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.2;
  margin-bottom: 10px;
}
.slide-content p {
  color: #c3d2ec;
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 400px;
}
.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: var(--navy-deep);
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}
.slide-cta svg {
  width: 15px;
  height: 15px;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.slider-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.slider-nav.prev {
  left: 18px;
}
.slider-nav.next {
  right: 18px;
}
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 10;
}
.slider-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
}
.slider-dots button.active {
  background: var(--sky);
  width: 20px;
  border-radius: 4px;
}
@media (max-width: 640px) {
  .slide-link {
    height: 460px;
  }
  .slide-content {
    max-width: 100%;
  }
}

/* ---------- Category strip ---------- */
.cat-strip {
  padding: 64px 0 40px;
}
.cat-strip-inner {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cat-chip {
  flex: 1;
  min-width: 230px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cat-chip:hover {
  border-color: var(--navy);
}
.cat-chip .ic {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.cat-chip .ic svg {
  width: 20px;
  height: 20px;
}
.cat-chip h4 {
  font-size: 14.5px;
  margin-bottom: 3px;
}
.cat-chip p {
  font-size: 12.5px;
  color: var(--slate);
  margin: 0;
  line-height: 1.45;
}

/* ---------- Trust stats ---------- */
.stats-band {
  background: var(--paper);
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.stat {
  text-align: center;
  flex: 1;
  min-width: 130px;
}
.stat b {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
}
.stat span {
  font-size: 12.5px;
  color: var(--slate);
}
.badges-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 14px;
  background: #fff;
}

/* ---------- Explore accordion ---------- */
.explore {
  padding: 56px 0;
}
.section-title {
  font-size: 22px;
  margin-bottom: 6px;
}
.section-sub {
  color: var(--slate);
  font-size: 14px;
  margin-bottom: 28px;
}
.accordion {
  border-top: 1px solid var(--line);
}
.acc-item {
  border-bottom: 1px solid var(--line);
}
.acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
}
.acc-head .left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.acc-head .ic {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.acc-head .ic svg {
  width: 17px;
  height: 17px;
}
.acc-head h4 {
  font-size: 15.5px;
}
.acc-head .chev {
  color: var(--slate-light);
  transition: transform 0.15s ease;
}
.acc-item.open .acc-head .chev {
  transform: rotate(180deg);
}
.acc-body {
  display: none;
  padding: 0 0 22px 46px;
}
.acc-item.open .acc-body {
  display: block;
}
.acc-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 20px;
}
@media (max-width: 700px) {
  .acc-links {
    grid-template-columns: 1fr 1fr;
  }
}
.acc-links a {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
}
.acc-links a:hover {
  text-decoration: underline;
}
.acc-cta {
  margin-top: 14px;
}
.acc-cta a {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy-deep);
  padding: 52px 0;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}
.final-cta p {
  color: #b9c6e0;
  font-size: 14.5px;
  margin-bottom: 22px;
}
.final-cta .cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: #8fa0c6;
  padding: 44px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.foot-grid h5 {
  color: #fff;
  font-size: 12.5px;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.foot-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot-grid a {
  font-size: 13px;
  color: #9aa6c0;
}
.foot-grid a:hover {
  color: #fff;
}
.foot-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #67739a;
}
.foot-legal {
  font-size: 11px;
  color: #5a6690;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 900px;
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 34px 0 46px;
}
.crumbs {
  font-size: 12px;
  color: #9db0d2;
  margin-bottom: 14px;
}
.crumbs a {
  color: #9db0d2;
}
.crumbs a:hover {
  color: #fff;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(24px, 3.6vw, 32px);
  line-height: 1.2;
  margin-bottom: 10px;
}
.page-hero p {
  color: #c3d2ec;
  font-size: 15px;
  line-height: 1.6;
  max-width: 640px;
  margin: 0;
}
.page-hero .stat-inline {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.page-hero .stat-inline b {
  display: block;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
}
.page-hero .stat-inline span {
  font-size: 11.5px;
  color: #9db0d2;
}

/* ---------- Content sections ---------- */
.content-section {
  padding: 48px 0;
}
.content-section.alt {
  background: var(--paper);
}

/* ---------- Comparison list (TradeByChoice) ---------- */
.compare-list {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child {
  border-bottom: none;
}
.compare-row.head {
  background: var(--paper);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-light);
}
@media (max-width: 800px) {
  .compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
  }
  .compare-row.head {
    display: none;
  }
  .compare-row .cell::before {
    content: attr(data-label);
    display: block;
    font-size: 10.5px;
    color: var(--slate-light);
    font-weight: 700;
    text-transform: uppercase;
  }
}
.compare-row .platform-name {
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
  background: var(--paper);
  padding: 3px 8px;
  border-radius: 6px;
}
.cell {
  font-size: 13.5px;
  color: var(--ink);
}
.compare-row .btn {
  padding: 9px 16px;
  font-size: 13px;
}

/* ---------- Tools / calculators ---------- */
.tool-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tool-tab {
  padding: 9px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  color: var(--slate);
}
.tool-tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.tool-panel {
  display: none;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}
.tool-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 700px) {
  .tool-panel.active {
    grid-template-columns: 1fr;
  }
}
.tool-field {
  margin-bottom: 14px;
}
.tool-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 5px;
}
.tool-field input,
.tool-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.tool-result {
  background: var(--paper);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.tool-result .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--slate-light);
  text-transform: uppercase;
}
.tool-result .value {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
}
.tool-result .sub {
  font-size: 12.5px;
  color: var(--slate);
}

/* ---------- Instrument grid (Trade Finance) ---------- */
.instrument-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .instrument-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .instrument-grid {
    grid-template-columns: 1fr;
  }
}
.instrument-card {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}
.instrument-card .abbr {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: block;
}
.instrument-card h3 {
  font-size: 15.5px;
  margin-bottom: 8px;
}
.instrument-card p {
  font-size: 13px;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}

.instrument-detail {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  margin-bottom: 16px;
  background: #fff;
}
.instrument-detail .idh {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.instrument-detail h3 {
  font-size: 18px;
}
.instrument-detail .idbody {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) {
  .instrument-detail .idbody {
    grid-template-columns: 1fr;
  }
}
.instrument-detail p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.6;
}
.use-case {
  background: var(--paper);
  border-radius: 9px;
  padding: 14px 16px;
  font-size: 12.5px;
  color: var(--ink);
}
.use-case b {
  display: block;
  font-size: 11px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}

/* ---------- Service list (Staff Outsourcing) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 800px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  display: flex;
  gap: 14px;
}
.service-card .num {
  font-size: 13px;
  font-weight: 800;
  color: var(--slate-light);
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 13px;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Lead form ---------- */
.lead-form {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 26px;
}
.lead-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .lead-form .row {
    grid-template-columns: 1fr;
  }
}
.lead-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 5px;
  margin-top: 12px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.lead-form button {
  margin-top: 16px;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 32px;
}
@media (max-width: 800px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 13.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  color: var(--slate-light);
  font-weight: 400;
}
details[open] summary::after {
  content: "–";
}
details p {
  font-size: 13px;
  color: var(--slate);
  margin: 8px 0 0;
  line-height: 1.6;
}

/* ---------- Link grid (Banking) ---------- */
.cat-block {
  margin-bottom: 36px;
}
.cat-block-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.cat-block-head h3 {
  font-size: 15.5px;
}
.cat-block-head span {
  font-size: 11.5px;
  color: var(--slate-light);
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 900px) {
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .link-grid {
    grid-template-columns: 1fr;
  }
}
.link-card {
  border: 1.5px solid var(--line);
  border-radius: 9px;
  padding: 13px 15px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
}
.link-card:hover {
  border-color: var(--navy);
}
