:root {
  --navy: #0f2444;
  --navy-deep: #071426;
  --navy-soft: #1a3a61;
  --gold: #c4922a;
  --gold-bright: #d8a844;
  --ink: #172235;
  --muted: #667085;
  --line: #d9e1ea;
  --paper: #f8fafc;
  --white: #ffffff;
  --teal: #2b6f7b;
  --rose: #9a5d4e;
  --shadow: 0 22px 55px rgba(6, 33, 62, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 225, 234, 0.85);
  box-shadow: 0 12px 28px rgba(6, 33, 62, 0.08);
  backdrop-filter: blur(16px);
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-logo {
  display: block;
  width: 245px;
  height: auto;
}

.brand-logo-footer {
  width: 265px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid var(--navy);
  transform: rotate(30deg);
  background:
    linear-gradient(135deg, rgba(240, 199, 102, 0.25), transparent 48%),
    var(--white);
  box-shadow: inset 0 0 0 4px rgba(220, 174, 79, 0.22);
}

.brand-mark span {
  width: 24px;
  height: 24px;
  border: 2px solid var(--gold);
  border-left-color: transparent;
  transform: rotate(45deg);
}

.brand-copy {
  display: grid;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 29px;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-copy span {
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.08;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--navy);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px 12px;
  align-items: center;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
  color: #23324a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.primary-nav .portal-link {
  padding: 9px 12px;
  color: var(--white);
  background: var(--navy);
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(6, 33, 62, 0.18);
}

.primary-nav .portal-link::after {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 610px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 20, 38, 0.95) 0%, rgba(6, 33, 62, 0.82) 38%, rgba(6, 33, 62, 0.22) 78%),
    linear-gradient(180deg, rgba(3, 20, 38, 0.18), rgba(3, 20, 38, 0.5)),
    url("assets/images/hero-logistics.jpg") center / cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.42);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1280px) / 2));
  padding: 70px 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 34px;
  height: 3px;
  content: "";
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--gold-bright);
}

.hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-gold {
  color: #142033;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 14px 30px rgba(220, 174, 79, 0.3);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(240, 199, 102, 0.65);
  background: rgba(3, 20, 38, 0.24);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background:
    linear-gradient(90deg, var(--navy-deep), var(--navy), #0a3359);
  border-bottom: 1px solid rgba(220, 174, 79, 0.25);
}

.trust-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  min-height: 132px;
  padding: 30px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-strip article:last-child {
  border-right: 0;
}

.trust-strip svg {
  width: 44px;
  height: 44px;
  color: var(--gold-bright);
  stroke-width: 1.6;
}

.trust-strip h2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.trust-strip p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.home-statement {
  padding: 28px 0;
  color: var(--white);
  background: linear-gradient(90deg, #082744, #0d4968);
  border-top: 1px solid rgba(240, 199, 102, 0.28);
}

.home-statement-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: center;
}

.home-statement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 600;
}

.home-statement p:last-child {
  padding: 18px 20px;
  color: var(--navy);
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 26px rgba(3, 20, 38, 0.16);
}

.section {
  scroll-margin-top: 122px;
  padding: 82px 0;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading .section-kicker {
  justify-content: center;
}

.section-heading p:last-child {
  margin: 16px auto 0;
  max-width: 700px;
}

.section-about {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.45), rgba(255, 255, 255, 0.95)),
    var(--white);
}

.about-grid,
.business-grid,
.compliance-grid,
.corporate-grid,
.portal-grid,
.contact-grid,
.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}

.about-grid > div:first-child p:not(.section-kicker),
.business-grid > div:first-child p,
.corporate-grid > div:first-child p,
.portal-grid > div:first-child p,
.contact-grid > div:first-child p {
  max-width: 600px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
}

.text-link svg {
  width: 18px;
}

.map-panel {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 44%, rgba(18, 52, 86, 0.24) 0 3px, transparent 4px),
    radial-gradient(circle at 38% 24%, rgba(18, 52, 86, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 47%, rgba(18, 52, 86, 0.24) 0 4px, transparent 5px),
    radial-gradient(circle at 76% 31%, rgba(18, 52, 86, 0.24) 0 3px, transparent 4px),
    radial-gradient(circle at 85% 65%, rgba(18, 52, 86, 0.24) 0 3px, transparent 4px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 252, 0.9));
  box-shadow: var(--shadow);
}

.world-map {
  position: relative;
  width: 100%;
  height: 390px;
  background-image:
    linear-gradient(rgba(18, 52, 86, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 52, 86, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.world-map::before {
  position: absolute;
  inset: 42px 38px;
  content: "";
  opacity: 0.24;
  background:
    radial-gradient(ellipse at 16% 42%, var(--navy-soft) 0 9%, transparent 10%),
    radial-gradient(ellipse at 33% 28%, var(--navy-soft) 0 12%, transparent 13%),
    radial-gradient(ellipse at 47% 52%, var(--navy-soft) 0 11%, transparent 12%),
    radial-gradient(ellipse at 62% 40%, var(--navy-soft) 0 15%, transparent 16%),
    radial-gradient(ellipse at 80% 55%, var(--navy-soft) 0 12%, transparent 13%),
    radial-gradient(ellipse at 76% 20%, var(--navy-soft) 0 6%, transparent 7%);
}

.route,
.pin {
  position: absolute;
  display: block;
}

.route {
  height: 90px;
  border-top: 2px solid rgba(220, 174, 79, 0.58);
  border-radius: 50%;
  transform-origin: left center;
}

.route-a {
  left: 18%;
  top: 45%;
  width: 45%;
  transform: rotate(-12deg);
}

.route-b {
  left: 36%;
  top: 31%;
  width: 42%;
  transform: rotate(9deg);
}

.route-c {
  left: 53%;
  top: 54%;
  width: 34%;
  transform: rotate(18deg);
}

.route-d {
  left: 22%;
  top: 59%;
  width: 34%;
  transform: rotate(2deg);
}

.pin {
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 5px rgba(220, 174, 79, 0.16);
}

.pin-1 {
  left: 17%;
  top: 44%;
}

.pin-2 {
  left: 35%;
  top: 27%;
}

.pin-3 {
  left: 52%;
  top: 50%;
}

.pin-4 {
  left: 70%;
  top: 36%;
}

.pin-5 {
  left: 84%;
  top: 60%;
}

.pin-6 {
  left: 28%;
  top: 68%;
}

.pin-7 {
  left: 79%;
  top: 27%;
}

.map-label {
  position: absolute;
  z-index: 2;
  padding: 4px 8px;
  color: var(--navy);
  border: 1px solid rgba(196, 146, 42, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(6, 33, 62, 0.1);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.label-africa {
  left: 16%;
  top: 50%;
}

.label-europe {
  left: 34%;
  top: 20%;
}

.label-uk {
  left: 39%;
  top: 31%;
}

.label-uae {
  left: 54%;
  top: 43%;
}

.label-gcc {
  left: 58%;
  top: 54%;
}

.label-asia {
  left: 75%;
  top: 31%;
}

.section-services,
.section-corporate,
.section-faq,
.section-policy.alternate {
  background: var(--paper);
}

.service-grid,
.category-grid,
.governance-list,
.faq-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article,
.category-grid article,
.governance-list article,
.faq-grid details,
.insight-grid article {
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(6, 33, 62, 0.06);
}

.service-grid svg,
.category-grid svg,
.governance-list svg {
  width: 46px;
  height: 46px;
  color: var(--navy);
  stroke-width: 1.55;
}

.service-grid article:nth-child(2n) svg,
.category-grid article:nth-child(2n) svg,
.governance-list article:nth-child(2n) svg {
  color: var(--teal);
}

.service-grid article:nth-child(3n) svg,
.category-grid article:nth-child(3n) svg,
.governance-list article:nth-child(3n) svg {
  color: var(--rose);
}

.service-grid h3,
.category-grid h3,
.governance-list h3,
.timeline h3,
.faq-grid summary {
  margin: 16px 0 9px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.service-grid p,
.category-grid p,
.governance-list p,
.timeline p,
.faq-grid p {
  margin: 0;
  font-size: 14px;
}

.section-note {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
  padding: 22px 24px;
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), #0d4968);
  box-shadow: 0 14px 32px rgba(6, 33, 62, 0.08);
}

.section-note svg {
  width: 28px;
  height: 28px;
  color: var(--gold-bright);
}

.section-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.section-markets {
  background: var(--white);
}

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

.market-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.market-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 20, 38, 0.12), rgba(3, 20, 38, 0.84)),
    rgba(3, 20, 38, 0.25);
}

.market-card svg {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  stroke-width: 1.45;
}

.market-card h3 {
  margin: 0;
  font-size: 20px;
  text-transform: uppercase;
}

.market-card p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.africa {
  background-image: url("assets/images/market-africa.jpg");
}

.gcc {
  background-image: url("assets/images/market-gcc.jpg");
}

.asia {
  background-image: url("assets/images/market-asia.jpg");
}

.europe {
  background-image: url("assets/images/market-europe.jpg");
}

.emerging {
  background-image: url("assets/images/market-emerging.jpg");
}

.section-business {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 20, 38, 0.95), rgba(6, 33, 62, 0.78)),
    url("assets/images/business-healthcare.jpg") center / cover;
}

.section-business h2,
.section-business .timeline h3 {
  color: var(--white);
}

.section-business p {
  color: rgba(255, 255, 255, 0.78);
}

.business-stack {
  display: grid;
  gap: 28px;
}

.business-intro {
  max-width: 880px;
}

.business-intro p {
  max-width: 800px;
}

.trade-flow {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.flow-node,
.flow-arrow,
.goods-route,
.business-support,
.business-disclaimer {
  border-radius: 8px;
}

.flow-node {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 160px;
  padding: 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 20, 38, 0.42);
}

.flow-node-accent {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.flow-node svg {
  width: 34px;
  height: 34px;
  color: currentColor;
}

.flow-node h3 {
  margin: 0;
  color: currentColor;
  font-size: 18px;
  line-height: 1.25;
}

.flow-node p {
  margin: 0;
  color: currentColor;
  opacity: 0.82;
  font-weight: 700;
}

.flow-arrow {
  display: grid;
  min-width: 86px;
  place-items: center;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.flow-arrow svg {
  width: 24px;
  height: 24px;
  margin-top: 8px;
  color: var(--gold-bright);
}

.goods-route,
.business-note {
  grid-column: 1 / -1;
}

.goods-route {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  color: var(--white);
  border: 1px solid rgba(240, 199, 102, 0.34);
  background: rgba(3, 20, 38, 0.48);
}

.goods-route svg {
  width: 26px;
  min-width: 26px;
  color: var(--gold-bright);
}

.goods-route p,
.business-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.business-note {
  padding: 18px 20px;
  border-left: 4px solid var(--gold-bright);
  background: rgba(240, 199, 102, 0.12);
}

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

.timeline article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--navy);
  border-radius: 50%;
  background: var(--gold-bright);
  font-weight: 800;
}

.business-support {
  padding: 26px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(3, 20, 38, 0.16);
}

.business-support h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 24px;
}

.business-support ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.business-support li {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.business-support svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.business-disclaimer {
  margin: 0;
  padding: 20px 22px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 20, 38, 0.38);
  font-size: 13px;
}

.section-compliance {
  background: #fbfcfd;
}

.compliance-grid {
  align-items: start;
}

.compliance-content {
  display: grid;
  gap: 18px;
}

.compliance-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 33, 62, 0.97), rgba(18, 52, 86, 0.94)),
    var(--navy);
}

.compliance-panel h2 {
  color: var(--white);
}

.compliance-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.compliance-panel a {
  color: var(--gold-bright);
  font-weight: 800;
}

.brand-principle {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 220px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(6, 33, 62, 0.06);
}

.brand-principle p {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
}

.brand-principle p:nth-child(2) {
  color: var(--gold);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
}

.brand-principle span {
  width: 140px;
  height: 4px;
  margin: 16px auto 0;
  background: var(--gold);
}

.governance-list {
  grid-template-columns: repeat(2, 1fr);
}

.governance-list article {
  min-height: 220px;
}

.info-table {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-table div {
  display: grid;
  grid-template-columns: 210px 1fr;
  border-bottom: 1px solid var(--line);
}

.info-table div:last-child {
  border-bottom: 0;
}

.info-table dt,
.info-table dd {
  margin: 0;
  padding: 18px 20px;
}

.info-table dt {
  color: var(--navy);
  background: #eef3f8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-table dd {
  color: var(--muted);
}

.section-industries {
  background: var(--white);
}

.section-portal {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 20, 38, 0.96), rgba(6, 33, 62, 0.76)),
    url("assets/images/secure-portal.jpg") center / cover;
}

.section-portal h2 {
  color: var(--white);
}

.section-portal p {
  color: rgba(255, 255, 255, 0.8);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--gold-bright);
}

.portal-card,
.contact-form {
  display: grid;
  gap: 17px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.portal-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.portal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #c8d4df;
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(220, 174, 79, 0.18);
}

.section-contact {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.88), rgba(255, 255, 255, 0.98)),
    var(--paper);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-image {
  min-height: 260px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(3, 20, 38, 0.05), rgba(3, 20, 38, 0.34)),
    url("assets/images/contact-london-canary-wharf.jpg") center / cover;
  box-shadow: var(--shadow);
}

.contact-list p,
.site-footer p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
}

.contact-list svg,
.site-footer svg {
  width: 18px;
  min-width: 18px;
  color: var(--gold-bright);
}

.contact-form {
  border-color: var(--line);
}

.contact-form .btn {
  width: fit-content;
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.faq-grid details {
  min-height: auto;
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding-right: 26px;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid details p {
  margin-top: 12px;
}

.policy-grid {
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
}

.policy-copy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.policy-copy p:first-child {
  margin-top: 0;
}

.policy-copy p:last-child {
  margin-bottom: 0;
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(90deg, var(--navy-deep), var(--navy), #0a3154);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.74fr 0.9fr 0.7fr 1.05fr;
  gap: 36px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0 34px;
}

.brand-footer .brand-copy strong,
.brand-footer .brand-copy span {
  color: var(--white);
}

.brand-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  max-width: 320px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: flex;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    padding: 18px 0 6px;
    border-top: 1px solid var(--line);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--white);
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav .portal-link {
    border-color: var(--navy);
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .hero {
    min-height: 590px;
    background:
      linear-gradient(90deg, rgba(3, 20, 38, 0.96), rgba(6, 33, 62, 0.7)),
      url("assets/images/hero-logistics.jpg") center / cover;
  }

  .hero-content {
    padding: 48px 0;
  }

  .trust-strip,
  .home-statement-grid,
  .about-grid,
  .compliance-grid,
  .corporate-grid,
  .portal-grid,
  .contact-grid,
  .policy-grid,
  .service-grid,
  .category-grid,
  .governance-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
    scroll-margin-top: 100px;
  }

  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-card {
    min-height: 210px;
  }

  .compliance-panel {
    grid-row: auto;
  }

  .trade-flow,
  .business-support ul {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    min-height: 64px;
  }

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

@media (max-width: 620px) {
  .header-main,
  .container,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1240px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 190px;
  }

  .brand-logo-footer {
    width: 220px;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    margin-left: 14px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions,
  .market-grid,
  .timeline,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-strip article {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .section h2 {
    font-size: 32px;
  }

  .map-panel,
  .world-map {
    min-height: 310px;
    height: 310px;
  }

  .service-grid article,
  .category-grid article,
  .governance-list article,
  .portal-card,
  .contact-form,
  .policy-copy,
  .compliance-panel {
    padding: 24px;
  }

  .info-table div {
    grid-template-columns: 1fr;
  }

  .info-table dt,
  .info-table dd {
    padding: 14px 16px;
  }
}
