/* ============================================================
   HUB Systems - pages: page-specific styles, one banner per page
   ============================================================ */
/* ============================================================
   HOME (index.html) - hero fact cards, journey graphic, checklist,
   configurability animations
   ============================================================ */
/* hero fact cards (static - no looping motion) */
.fact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fact-card {
  position: relative;
  background: #16201b;
  border-radius: 18px;
  padding: 26px 24px 24px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.fact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px -24px rgba(16, 22, 12, 0.6);
  border-color: rgba(123, 192, 67, 0.55);
}
.fact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}
.fact-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(123, 192, 67, 0.16);
  color: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.fact-card .fact-lead {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 9px;
}
.fact-card .fact-lead .accent {
  color: var(--green-light);
}
.fact-card p {
  font-size: 13.5px;
  color: var(--dark-muted);
  line-height: 1.55;
}
@media (max-width: 920px) {
  .fact-cards {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
@media (max-width: 560px) {
  .fact-cards {
    grid-template-columns: 1fr;
  }
}

/* hero journey graphic (home-only; .jmap/.road/.waypoint/.ping are in the shell above) */
.jwrap {
  position: relative;
}
.jmap-v {
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
}
.mroute {
  display: none;
}
@media (max-width: 920px) {
  .mroute {
    display: block;
    margin: 22px auto 4px;
    max-width: 350px;
  }
  .mroute-svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
  }
}

/* "What HUB does" claim + feature checklist split (home-only) */
.split2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  margin-top: 8px;
}
.split2 .col {
  align-self: center;
  order: 2;
}
.split2 .prodstack {
  order: 1;
}
.split2 .col h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  max-width: 460px;
}
.prodstack {
  display: grid;
  gap: 16px;
}
.ticks-wrap {
  position: relative;
  margin: 28px 0 34px;
}
.ticks {
  list-style: none;
  display: grid;
  gap: 13px;
}
.ticks li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.ticks li .tick {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  position: relative;
  z-index: 2;
  transition:
    transform 0.3s,
    background 0.3s,
    color 0.3s;
}
.ticks li.on .tick {
  background: var(--green);
  color: var(--on-green);
  transform: scale(1.2);
}
.tickrail {
  position: absolute;
  left: 11px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  overflow: hidden;
  z-index: 0;
}
.tickrail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  bottom: -16px;
  background: repeating-linear-gradient(
    to bottom,
    var(--green) 0 5px,
    transparent 5px 13px
  );
  opacity: 0.38;
  animation: railflow 0.7s linear infinite;
}
@keyframes railflow {
  to {
    transform: translateY(13px);
  }
}
.tickrail-truck {
  position: absolute;
  left: -1px;
  top: 0;
  z-index: 3;
  opacity: 0;
  will-change: transform;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .tickrail::before {
    animation: none;
  }
  .tickrail-truck {
    display: none;
  }
}
@media (max-width: 920px) {
  .split2 {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .split2 .col {
    order: 0;
  }
  .split2 .prodstack {
    order: 1;
  }
}

/* configurability section (home-only) */
.cfg-head .sub {
  margin: 14px auto 0;
  max-width: 600px;
}
.cfg-bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 26px;
}
.cfg-make {
  background: linear-gradient(
    165deg,
    rgba(123, 192, 67, 0.16),
    rgba(123, 192, 67, 0.03)
  );
  border: 1px solid rgba(123, 192, 67, 0.4);
  border-radius: 18px;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cfgveh-lane {
  position: relative;
  height: 30px;
  overflow: hidden;
  margin-bottom: 18px;
}
.cfgveh-lane::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  border-top: 1.5px dashed rgba(78, 138, 34, 0.26);
}
.cfgveh {
  position: absolute;
  left: -120px;
  bottom: 2px;
  width: 0;
  height: 26px;
  animation: cfgdrive 16s linear infinite;
}
.cfgveh .vehicle {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 26px;
  opacity: 0;
  transition: opacity 0.55s ease;
}
.cfgveh .vehicle svg {
  display: block;
  height: 26px;
  width: auto;
}
.cfgveh .vehicle.on {
  opacity: 1;
}
@keyframes cfgdrive {
  0% {
    left: -120px;
  }
  100% {
    left: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cfgveh {
    animation: none;
    left: 24px;
  }
}
.cfg-make b {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--green-deep);
  margin-top: 20px;
}
.cfg-make-lbl {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-deep);
  margin-top: 4px;
}
.cfg-make h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.cfg-make p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 7px;
  max-width: 400px;
}
.cfg-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.cfg-pill {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: 0.3s;
}
.cfg-pill:hover {
  border-color: rgba(123, 192, 67, 0.5);
  box-shadow: 0 14px 36px rgba(28, 38, 34, 0.07);
  transform: translateY(-3px);
}
.cfg-pill .icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--green-dim);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cfg-pill h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 5px;
}
.cfg-pill p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* home section spacing + heading cap (were inline styles) */
.fact-band {
  padding: 14px 0 34px;
}
.section.home-platform {
  padding: 40px 0 96px;
}
.section.home-quote {
  padding-bottom: 44px;
}
.home-clients {
  padding: 28px 0 84px;
}
.cta-note {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}
.cfg-head h2 {
  max-width: 600px;
  font-size: clamp(28px, 3.6vw, 44px);
  margin-left: auto;
  margin-right: auto;
}

/* home-only responsive tweaks (shell breakpoints are in the shared block above) */
@media (max-width: 920px) {
  .cfg-bento {
    grid-template-columns: 1fr;
  }
  .jwrap {
    display: none;
  }
}

/* ============================================================
   FMS PAGE (freight-management-system.html)
   ============================================================ */
.hero.fms {
  padding: 104px 0 20px;
  overflow: hidden;
}
.fcopy {
  position: relative;
}
.fhero {
  display: grid;
  grid-template-columns: 1.02fr 1.05fr;
  align-items: center;
}
/* hero overlap: map with the HubMobile app overlapping front-right (raw shots, no frames) */
.combo {
  position: relative;
  min-height: 580px;
  isolation: isolate;
}
.screen {
  position: absolute;
  overflow: hidden;
  background: #f8faf4;
  border: 1px solid rgba(28, 38, 34, 0.13);
  box-shadow: 0 30px 72px -30px rgba(28, 38, 34, 0.45);
}
.screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.combo .c-map {
  left: 0;
  top: 44px;
  width: 50%;
  aspect-ratio: 1630/2005;
  border-radius: 14px;
  z-index: 1;
  transform: rotate(-2deg);
}
.combo .c-desk {
  left: 8%;
  top: 166px;
  width: 92%;
  aspect-ratio: 2710/1455;
  border-radius: 14px;
  z-index: 2;
  transform: rotate(1deg);
}
.combo .c-phone {
  position: absolute;
  right: 3%;
  bottom: 54px;
  width: 18%;
  z-index: 4;
  line-height: 0;
  filter: drop-shadow(0 28px 36px rgba(28, 38, 34, 0.42));
}
.combo .c-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}
/* despatch: dashboard + live tracking map side by side (column ratio tuned so both land at the same height) */
.boardpair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 40px;
  align-items: center;
}
.boardpair .board-shot {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 34px 80px -34px rgba(28, 38, 34, 0.5);
  background: #fff;
  line-height: 0;
}
.boardpair .board-shot img {
  display: block;
  width: 100%;
  height: auto;
}
/* PC Despatch (dark band): lighten the board3 captions to match the dark section */
.section.dark .board3 .board-item p {
  color: var(--dark-muted);
}
.panel.static {
  position: static;
}
/* HubMobile section - two framed phones fanned beside the feature list */
.mobsplit {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.mobcombo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.shot-ph {
  position: relative;
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -28px rgba(28, 38, 34, 0.48);
  background: #fff;
  line-height: 0;
}
.shot-ph img {
  display: block;
  width: 100%;
  height: auto;
}
.shot-ph:nth-child(1) {
  justify-self: end;
  transform: rotate(-3deg) translate(18px, 12px);
}
.shot-ph:nth-child(2) {
  justify-self: start;
  z-index: 2;
  transform: rotate(3deg) translate(-18px, -8px);
}
@media (max-width: 920px) {
  .mobsplit {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.board3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}
.board3 .board-item h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}
.board3 .board-item p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 920px) {
  .fhero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .combo {
    min-height: 0;
    aspect-ratio: 1.06;
    margin-top: 8px;
  }
  .combo .c-map {
    width: 54%;
    left: 0;
    right: auto;
    top: 5%;
  }
  .combo .c-desk {
    width: 100%;
    top: 31%;
    left: 4%;
  }
  .combo .c-phone {
    width: 20%;
    left: auto;
    right: 3%;
    bottom: 9%;
  }
  .board3 {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .boardpair {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
@media (max-width: 560px) {
  .hero.fms,
  .hero.fms .wrap,
  .fhero,
  .fcopy {
    max-width: 100vw;
  }
  .hero.fms .cta-row .btn {
    width: 100%;
    justify-content: center;
  }
  .combo {
    aspect-ratio: 1.08;
    overflow: hidden;
    max-width: 100%;
  }
  .combo .c-map {
    width: 52%;
    left: 1%;
    right: auto;
    top: 5%;
  }
  .combo .c-desk {
    width: 92%;
    left: 4%;
    top: 38%;
  }
  .combo .c-phone {
    width: 20%;
    left: auto;
    right: 5%;
    bottom: 12%;
  }
  .shot-ph {
    max-width: 190px;
  }
  .shot-ph:nth-child(1) {
    transform: rotate(-2deg) translate(12px, 8px);
  }
  .shot-ph:nth-child(2) {
    transform: rotate(2deg) translate(-12px, -6px);
  }
}
/* Bookings → Despatch → Accounts lanes */
.lanes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 54px;
}
.lane {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  transition: 0.3s;
}
.lane:hover {
  border-color: rgba(123, 192, 67, 0.5);
  box-shadow: 0 18px 44px rgba(28, 38, 34, 0.07);
  transform: translateY(-3px);
}
.lane .lane-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}
.lane .lane-head .lane-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-dim);
  color: var(--green-deep);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex: none;
}
.lane .lane-head h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lane ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.lane li {
  padding-left: 27px;
  position: relative;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.45;
}
.lane li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--green-deep);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E")
    center/10px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E")
    center/10px no-repeat;
}
@media (max-width: 1080px) {
  .lanes {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 920px) {
  .lanes {
    grid-template-columns: 1fr;
  }
}
/* FMS section spacing (was inline styles) */
.section.fms-how {
  padding: 40px 0 48px;
}
.section.fms-board {
  padding: 56px 0;
}
.section.fms-tools {
  padding: 48px 0 96px;
}
.section.fms-mobile {
  padding: 72px 0;
}
.fms-clients {
  padding: 60px 0 64px;
}

/* ============================================================
   UFM PAGE (unified-freight-management.html)
   ============================================================ */
.hero.ufm {
  padding: 104px 0 70px;
}
.uhero {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 56px;
  align-items: center;
}

/* hero collage: dashboard, track & modify, and tracking detail layered in a cascade */
.ucombo {
  position: relative;
  aspect-ratio: 1/0.94;
  margin-top: 6px;
}
.ucombo > div {
  position: absolute;
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  line-height: 0;
}
.ucombo > div img {
  display: block;
  width: 100%;
  height: auto;
}
.u-card {
  top: 0;
  left: 0;
  width: 60%;
  z-index: 1;
  box-shadow: 0 26px 60px -30px rgba(28, 38, 34, 0.5);
}
.u-mid {
  top: 28%;
  left: 20%;
  width: 60%;
  z-index: 2;
  box-shadow: 0 28px 64px -26px rgba(28, 38, 34, 0.5);
}
.u-main {
  bottom: 0;
  right: 0;
  width: 64%;
  z-index: 3;
  box-shadow: 0 30px 66px -24px rgba(28, 38, 34, 0.55);
}

/* convergence: many carriers merge into one HUB core, out to one unified view */
.converge {
  display: grid;
  grid-template-columns: 0.85fr 96px 1.45fr;
  gap: 30px;
  align-items: center;
  margin-top: 64px;
}
.cgroup .clab {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  text-align: center;
}
.carriers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  @media (max-width:920px) {
    margin-bottom: 3rem;
  }
}
.carriers .carrier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 8px;
  text-align: center;
  transition: 0.3s;
}
.carriers .carrier .carrier-name {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.1;
}
.carriers .carrier:hover {
  border-color: rgba(123, 192, 67, 0.5);
  box-shadow: 0 10px 26px rgba(28, 38, 34, 0.07);
  transform: translateY(-2px);
}
.carriers .carrier img {
  max-height: 24px;
  max-width: 88px;
  width: auto;
  opacity: 0.9;
}
.carriers .carrier img[src$=".svg"] {
  max-height: 20px;
}
.carriers .carrier svg {
  width: 26px;
  height: 26px;
  color: var(--green-deep);
  opacity: 0.92;
}
.cmerge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmerge::before,
.cmerge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 26px;
  height: 2px;
  background: var(--green);
  opacity: 0.55;
}
.cmerge::before {
  left: -26px;
}
.cmerge::after {
  right: -26px;
}
.core {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px -12px rgba(28, 38, 34, 0.5);
  z-index: 2;
}
.core img {
  width: 62px;
  height: 62px;
  animation: spin 60s linear infinite;
}
.core::before,
.core::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  opacity: 0;
  animation: cpulse 2.8s ease-out infinite;
}
.core::after {
  animation-delay: 1.4s;
}
@keyframes cpulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2.05);
  }
}
@media (prefers-reduced-motion: reduce) {
  .core::before,
  .core::after,
  .core img {
    animation: none;
  }
}
/* journey rail: point-of-purchase to point-of-delivery, four connected stages */
.jrail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.jrail::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(123, 192, 67, 0.35),
    var(--green),
    rgba(123, 192, 67, 0.35)
  );
  z-index: 0;
}
.jstep {
  position: relative;
  z-index: 1;
  text-align: center;
}
.jnode {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  margin: 0 auto 20px;
  box-shadow: 0 12px 26px -8px rgba(123, 192, 67, 0.4);
  transition: 0.3s;
}
.jstep:hover .jnode {
  background: var(--green);
  color: var(--on-green);
  transform: translateY(-3px);
}
.jnode .step-num {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jstep h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.jstep p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.jflow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.jflow .arrow {
  color: var(--green-deep);
}
/* journey rail on the dark band: lighten step text and flow labels */
.section.dark .jstep p {
  color: var(--dark-muted);
}
.section.dark .jflow {
  color: var(--dark-muted);
}
.section.dark .jflow .arrow {
  color: var(--green-light);
}
/* step nodes on dark: translucent-green chips (match the other dark sections, not stark white) */
.section.dark .jnode {
  background:
    linear-gradient(rgba(123, 192, 67, 0.14), rgba(123, 192, 67, 0.14)),
    var(--text);
  border-color: rgba(123, 192, 67, 0.5);
  color: var(--green-light);
  box-shadow: none;
}
.section.dark .jstep:hover .jnode {
  background: var(--green);
  color: var(--on-green);
}
.section.dark .jnode .step-num {
  background: var(--green);
  color: var(--on-green);
}
/* (the UFM sign-off uses the shared .signoff.light variant) */

/* unified dashboard band */
.dashband {
  margin-top: 46px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 34px 80px -34px rgba(28, 38, 34, 0.5);
  background: #fff;
}
.dashband img {
  display: block;
  width: 100%;
  height: auto;
}
.dash3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}
.dash3 .dash-item h3 {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}
.dash3 .dash-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
/* unified view as a dark showcase band: lighten captions to match */
.section.dark .dash3 .dash-item p {
  color: var(--dark-muted);
}

/* carrier integration + POD media split (screenshot shown whole, not cropped) */
.usplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ushot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -30px rgba(28, 38, 34, 0.4);
  background: #fff;
  line-height: 0;
}
.ushot img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 920px) {
  .hero.ufm {
    padding: 116px 0 56px;
    overflow: hidden;
  }
  .uhero {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .ucombo {
    aspect-ratio: auto;
    display: grid;
    gap: 16px;
    margin-top: 0;
  }
  .ucombo > div {
    position: static;
    width: 100%;
  }
  .converge {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 40px;
  }
  .cmerge {
    transform: none;
    height: auto;
    padding: 4px 0;
  }
  .cmerge::before,
  .cmerge::after {
    top: auto;
    left: 50%;
    right: auto;
    width: 2px;
    height: 22px;
    transform: translateX(-50%);
  }
  .cmerge::before {
    top: -20px;
  }
  .cmerge::after {
    bottom: -20px;
  }
  .jrail {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .jrail::before {
    display: none;
  }
  .jstep {
    display: grid;
    grid-template-columns: 68px 1fr;
    column-gap: 18px;
    row-gap: 4px;
    align-items: start;
    text-align: left;
  }
  .jstep .jnode {
    margin: 0;
    grid-row: 1 / span 2;
  }
  .jstep h3 {
    align-self: center;
  }
  .jflow {
    display: none;
  }
  .dash3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .usplit {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
@media (max-width: 560px) {
  .carriers {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* UFM section spacing (was inline styles) */
.section.ufm-journey {
  padding: 90px 0;
}
.section.ufm-dash {
  padding: 96px 0;
}

/* ============================================================
   ABOUT PAGE (about.html)
   ============================================================ */
.about-company {
  padding-top: 64px;
}
.about-company h2 {
  max-width: 640px;
}
.about-company .prose {
  margin-top: 28px;
}
/* stat column beside the prose, pushed down to sit with the copy */
.about-stats {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 18px;
  margin-top: 112px;
}
.about-company .stat {
  padding: 24px;
}
.about-mission {
  padding: 92px 0;
}
.about-mission .sub {
  max-width: 760px;
  margin-top: 24px;
}
.about-team .media {
  align-items: center;
}
.about-team .prose {
  margin-top: 26px;
}
.about-team .shot {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 76px -34px rgba(0, 0, 0, 0.55);
}
.about-team .cta-row {
  margin-top: 34px;
}
@media (max-width: 920px) {
  .about-company {
    padding-top: 48px;
  }
  .about-company .prose {
    margin-top: 22px;
  }
  .about-stats {
    margin-top: 0;
  }
  .about-mission {
    padding: 76px 0;
  }
}

/* ============================================================
   COMPLIANCE PAGE (compliance.html)
   ============================================================ */
.section.comp-note-band {
  padding-top: 0;
}
.section.comp-approach {
  padding-top: 24px;
}
.comp-note {
  background: var(--green-dim);
  border: 1px solid rgba(123, 192, 67, 0.5);
  border-left: 4px solid var(--green);
  border-radius: 14px;
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 8px;
}
.comp-note .soc-seal {
  flex: none;
}
.comp-note .soc-seal img {
  width: 92px;
  height: auto;
  display: block;
}
.comp-note h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}
.comp-note p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}
.comp-note a {
  color: var(--green-deep);
  font-weight: 700;
}
.value .value-icon svg {
  width: 100%;
  height: 100%;
  color: var(--green-deep);
}
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-dim);
  border-radius: 999px;
  padding: 3px 10px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ============================================================
   WHATS NEW PAGE (whats-new.html)
   ============================================================ */
.wn-actions {
  padding: 32px 0 54px;
}
.wn-card {
  background: var(--text);
  color: #fff;
  border-radius: 18px;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 218px;
}
.wn-card .eyebrow {
  color: var(--green-light);
  margin-bottom: 18px;
}
.wn-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 14px;
  max-width: 520px;
}
.wn-card p {
  color: var(--dark-soft);
  font-size: 15.5px;
  line-height: 1.62;
  margin-bottom: 24px;
  max-width: 560px;
}
.wn-card .cta-row {
  margin-top: auto;
}
.wn-updates {
  padding-top: 52px;
}
@media (max-width: 920px) {
  .update.has-shot {
    display: block;
  }
  .update.has-shot .shot {
    margin-top: 22px;
    width: 110px;
  }
  .update.has-seal {
    display: block;
  }
  .update.has-seal .soc-seal img {
    margin-top: 22px;
    width: 92px;
  }
  .wn-card {
    min-height: 0;
  }
  .wn-actions {
    padding: 24px 0 42px;
  }
  .wn-updates {
    padding-top: 42px;
  }
}

/* ============================================================
   ENQUIRE PAGE (enquire.html)
   ============================================================ */
.enquire-call {
  margin-top: 6px;
}
.section.enquire-form-band {
  padding-top: 24px;
}
