:root {
  --ink: #17202b;
  --muted: #5e6a77;
  --paper: #ffffff;
  --soft: #f3f6f8;
  --line: #d9e1e8;
  --navy: #102033;
  --navy-2: #1d344e;
  --red: #b7212b;
  --red-dark: #8f1720;
  --gold: #c99a3d;
  --green: #2e7d6f;
  --shadow: 0 18px 45px rgba(16, 32, 51, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(201, 154, 61, 0.7);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 44px);
  color: #ffffff;
  transition: background-color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 32, 51, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  padding-block: 12px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(183, 33, 43, 0.92);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.92rem;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.main-nav a:hover {
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/hero-logistics.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 18, 30, 0.96) 0%, rgba(12, 27, 43, 0.86) 38%, rgba(12, 27, 43, 0.35) 70%, rgba(12, 27, 43, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.44) 100%);
}

.hero-content {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 118px 0 34px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 4.8rem;
  font-weight: 800;
}

h2 {
  font-size: 3rem;
  font-weight: 800;
}

h3 {
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}


.leader-line {
  max-width: 710px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 800;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(183, 33, 43, 0.28);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button.light {
  background: #ffffff;
  color: var(--navy);
}

.button.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 42px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stats div {
  padding: 20px;
  background: rgba(11, 25, 39, 0.54);
}

.hero-stats dt {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.92rem;
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section-band,
.leadership-section,
.services,
.split-section,
.process,
.compliance-section,
.quote-section {
  padding: clamp(68px, 9vw, 112px) 0;
}

.section-band {
  padding: 58px 0;
  background: var(--soft);
}

.two-column,
.leadership-layout,
.split-layout,
.quote-layout,
.compliance-layout,
.carrier-layout,
.footer-layout {
  display: grid;
  gap: clamp(26px, 5vw, 64px);
}

.two-column {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  align-items: end;
}

.two-column p,
.leadership-copy p,
.split-copy p,
.quote-section p,
.compliance-section p,
.carrier-band p,
.site-footer p {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card,
.leadership-card,
.feature-list div,
.process-list li,
.quote-form,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.07);
}


.leadership-section {
  background: #ffffff;
}

.leadership-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  align-items: center;
}

.leader-title {
  margin: 18px 0 0;
  color: var(--red);
  font-weight: 900;
}

.leadership-copy p:last-child {
  max-width: 760px;
  margin-top: 18px;
}

.leadership-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  background: var(--navy);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.profile-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--red);
  color: #ffffff;
  font-weight: 900;
}

.leadership-card p,
.leadership-card small {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.leadership-card strong {
  color: #ffffff;
}

.service-card {
  min-height: 254px;
  padding: 24px;
}

.service-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(46, 125, 111, 0.12);
  color: var(--green);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.service-icon::before {
  width: 28px;
  height: 15px;
  left: 9px;
  top: 18px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.service-icon::after {
  width: 7px;
  height: 7px;
  right: 10px;
  bottom: 13px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -20px 0 0 currentColor;
}

.service-icon.rail::before {
  width: 31px;
  border-style: dashed;
}

.service-icon.fast::before {
  transform: translateX(3px);
}

.service-icon.fast::after {
  box-shadow: -20px 0 0 currentColor, -31px -11px 0 -2px currentColor;
}

.service-icon.planned::before {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  top: 12px;
  left: 12px;
}

.service-card h3,
.feature-list h3,
.process-list h3,
.contact-panel h3 {
  color: var(--navy);
}

.service-card p,
.feature-list p,
.process-list p,
.form-note {
  margin: 12px 0 0;
  color: var(--muted);
}

.split-section {
  background: #ffffff;
}

.split-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  padding: 24px;
}

.carrier-band {
  padding: clamp(62px, 8vw, 90px) 0;
  background: var(--navy);
  color: #ffffff;
}

.carrier-layout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.carrier-band h2 {
  max-width: 620px;
}

.carrier-band p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.process {
  background: var(--soft);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 232px;
  padding: 26px;
}

.process-list span {
  display: block;
  margin-bottom: 26px;
  color: var(--red);
  font-weight: 900;
}

.compliance-section {
  background: #ffffff;
}

.compliance-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  align-items: center;
}

.quote-section {
  background: linear-gradient(180deg, var(--soft), #ffffff);
}

.quote-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.74fr);
  align-items: start;
}

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

.contact-panel p {
  margin: 8px 0 0;
}

.contact-panel a {
  color: var(--red);
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #c9d3dd;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #ffffff;
}

.quote-form textarea {
  resize: vertical;
  min-height: 148px;
}

.form-note {
  min-height: 22px;
  font-size: 0.9rem;
}

.site-footer {
  padding: 42px 0;
  background: #08121e;
  color: #ffffff;
}

.footer-layout {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 84vh;
  }

  .hero-content {
    padding: 108px 0 44px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 18, 30, 0.94) 0%, rgba(12, 27, 43, 0.83) 58%, rgba(12, 27, 43, 0.5) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.38) 100%);
  }

  .two-column,
  .leadership-layout,
  .split-layout,
  .quote-layout,
  .compliance-layout,
  .carrier-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carrier-layout .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 96px 0 34px;
  }

  .hero-stats {
    display: none;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .leader-line {
    font-size: 0.9rem;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stats,
  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .service-card,
  .leadership-card,
  .feature-list div,
  .process-list li,
  .quote-form,
  .contact-panel {
    padding: 20px;
  }

  .footer-links {
    gap: 14px;
  }
}
/* Multi-page expansion */
body:not(.home-page) .site-header {
  background: rgba(16, 32, 51, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  padding-block: 12px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.main-nav a[aria-current="page"],
.header-cta:hover {
  color: #ffffff;
}

.page-hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.page-hero-content {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 120px 0 58px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: 3.7rem;
}

.page-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

.pathways,
.content-section,
.form-section {
  padding: clamp(68px, 9vw, 112px) 0;
}

.content-section.alt,
.form-section.alt {
  background: var(--soft);
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-contact {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.footer-contact a {
  color: #ffffff;
  font-weight: 800;
}

.contact-direct .info-card h3 a,
.page-hero-content a {
  color: inherit;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.territory-card,
.reference-list article,
.source-panel,
.engagement-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.07);
}

.info-card {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info-card p,
.territory-card p,
.reference-list p,
.form-section p {
  color: var(--muted);
}

.info-card a,
.source-panel a,
.contact-panel a {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
}

.card-kicker {
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

.territory-card,
.reference-list article {
  padding: 22px;
}

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

.source-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
}

.source-panel h3 {
  width: 100%;
  margin: 0;
  color: var(--navy);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.88fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.form-layout.reverse {
  direction: rtl;
}

.form-layout.reverse > * {
  direction: ltr;
}

.engagement-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.engagement-form h2 {
  font-size: 2rem;
}

.engagement-form > p {
  margin: 0;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.form-grid .wide-field {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid #c9d3dd;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #ffffff;
}

.form-grid textarea {
  resize: vertical;
  min-height: 148px;
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 14px;
    font-size: 0.84rem;
  }

  .header-cta {
    display: none;
  }

  .card-grid.four,
  .service-grid,
  .territory-grid,
  .reference-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body:not(.home-page) .site-header {
    position: fixed;
  }

  .page-hero {
    min-height: 52vh;
  }

  .page-hero-content {
    padding: 110px 0 46px;
  }

  .page-hero h1 {
    font-size: 2.45rem;
  }

  .form-layout,
  .form-layout.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

@media (max-width: 640px) {
  .page-hero h1 {
    font-size: 2.05rem;
  }

  .page-hero p {
    font-size: 1.05rem;
  }

  .card-grid.four,
  .card-grid.three,
  .card-grid.two,
  .territory-grid,
  .reference-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .territory-card,
  .reference-list article,
  .engagement-form {
    padding: 20px;
  }
}
/* Bright shipper-attraction refresh */
:root {
  --ink: #123047;
  --muted: #4f6472;
  --paper: #ffffff;
  --soft: #eef8ff;
  --line: #cfe2ee;
  --navy: #123047;
  --navy-2: #235b7a;
  --red: #d31f32;
  --red-dark: #a91425;
  --gold: #d49524;
  --green: #1c9877;
  --shadow: 0 18px 45px rgba(26, 88, 125, 0.14);
}

body {
  background: #ffffff;
  color: var(--ink);
}

.site-header,
.site-header.is-scrolled,
body:not(.home-page) .site-header {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(18, 48, 71, 0.12);
}

.brand-mark {
  border-color: rgba(211, 31, 50, 0.18);
  background: linear-gradient(135deg, var(--red), #ef5a35);
}

.brand small,
.main-nav a,
.header-cta {
  color: var(--navy);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--red);
}

.header-cta {
  border-color: rgba(211, 31, 50, 0.28);
  background: #fff5f3;
}

.hero-media {
  background-image: url("assets/hero-bright-logistics.png");
  background-position: center;
}

.hero,
.page-hero {
  color: var(--navy);
  background: #f7fbff;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 38%, rgba(255,255,255,0.58) 70%, rgba(255,255,255,0.28) 100%),
    linear-gradient(180deg, rgba(238,248,255,0.45), rgba(255,255,255,0.86));
}

.eyebrow {
  color: var(--red);
}

.hero-copy,
.page-hero p,
.leader-line {
  color: #26465b;
}

.leader-line {
  padding: 12px 14px;
  border-left: 5px solid var(--red);
  border-radius: 6px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 24px rgba(18, 48, 71, 0.08);
}

.button.primary {
  background: linear-gradient(135deg, var(--red), #ef5a35);
  color: #ffffff;
}

.button.secondary {
  color: var(--navy);
  border-color: rgba(18, 48, 71, 0.28);
  background: rgba(255,255,255,0.82);
}

.hero-stats {
  border-color: rgba(35, 91, 122, 0.18);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.hero-stats div {
  background: rgba(255,255,255,0.78);
}

.hero-stats dt {
  color: var(--navy);
}

.hero-stats dd {
  color: var(--muted);
}

.credential-strip {
  padding: 18px 0;
  background: linear-gradient(90deg, #e9f8ff 0%, #fff5df 46%, #edf9f3 100%);
  border-top: 1px solid #d9edf7;
  border-bottom: 1px solid #d9edf7;
}

.credential-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.credential-grid strong,
.credential-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 900;
}

.credential-grid strong {
  color: #ffffff;
  background: var(--navy);
}

.credential-grid span {
  color: var(--navy);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(18, 48, 71, 0.1);
}

.brokerage-notice {
  padding: 18px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.brokerage-notice .section-inner {
  padding: 18px 20px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: #f5fcf9;
  color: #24475a;
  box-shadow: 0 10px 24px rgba(28, 152, 119, 0.09);
}

.section-band,
.process,
.content-section.alt,
.form-section.alt {
  background: linear-gradient(180deg, #eef8ff, #ffffff);
}

.info-card,
.service-card,
.leadership-card,
.feature-list div,
.process-list li,
.engagement-form,
.contact-panel,
.territory-card,
.source-panel,
.reference-list article {
  border-color: #d6e8f1;
  box-shadow: 0 12px 28px rgba(26, 88, 125, 0.1);
}

.info-card,
.service-card,
.territory-card,
.reference-list article {
  border-top: 5px solid var(--green);
}

.info-card:nth-child(2n),
.service-card:nth-child(2n),
.territory-card:nth-child(2n),
.reference-list article:nth-child(2n) {
  border-top-color: var(--gold);
}

.info-card:nth-child(3n),
.service-card:nth-child(3n),
.territory-card:nth-child(3n),
.reference-list article:nth-child(3n) {
  border-top-color: var(--red);
}

.leadership-card {
  background: linear-gradient(135deg, #123047, #23627e);
}

.carrier-band {
  background: linear-gradient(135deg, #e8f8ff, #fff6df 55%, #edf9f3);
  color: var(--navy);
}

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

.button.light {
  background: var(--red);
  color: #ffffff;
}

.site-footer {
  background: #f5fbff;
  color: var(--navy);
  border-top: 1px solid var(--line);
}

.site-footer p,
.footer-links {
  color: var(--muted);
}

.footer-brand .brand-text small {
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 64%, rgba(255,255,255,0.64) 100%),
      linear-gradient(180deg, rgba(238,248,255,0.6), rgba(255,255,255,0.84));
  }
}
/* Premium brokerage command-center direction */
.hero-media {
  background-image: url("assets/hero-brokerage-command.png");
  background-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 34%, rgba(255,255,255,0.63) 62%, rgba(255,255,255,0.22) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(246,251,255,0.18) 54%, rgba(255,255,255,0.72) 100%);
}

.hero,
.page-hero {
  background: #f8fcff;
}

.page-hero h1,
h1 {
  color: #102f47;
}

.hero-copy,
.page-hero p {
  color: #274d65;
}

.leader-line {
  max-width: 760px;
  background: rgba(255,255,255,0.88);
  border-left-color: #d61f34;
}

.hero-stats {
  background: rgba(255,255,255,0.92);
  border-color: rgba(20,78,111,0.16);
}

.button.secondary,
.header-cta {
  background: rgba(255,255,255,0.92);
}

@media (max-width: 920px) {
  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 68%, rgba(255,255,255,0.66) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.78));
  }
}
/* Tighter premium hero rhythm */
.hero {
  min-height: 78vh;
}

.hero-content {
  padding: 104px 0 26px;
}

.hero-stats {
  margin-top: 28px;
}

@media (max-width: 640px) {
  .hero {
    min-height: 72vh;
  }

  .hero-content {
    padding: 84px 0 24px;
  }

  h1 {
    font-size: 2.14rem;
  }

  .hero-copy,
  .page-hero p {
    font-size: 0.98rem;
  }

  .leader-line {
    padding: 10px 12px;
    font-size: 0.84rem;
  }

  .button {
    min-height: 44px;
  }
}
/* International multimodal robustness */
.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mode-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,251,255,0.96));
  box-shadow: 0 12px 28px rgba(26, 88, 125, 0.1);
  border-top: 5px solid var(--navy-2);
}

.mode-card:nth-child(2n) {
  border-top-color: var(--green);
}

.mode-card:nth-child(3n) {
  border-top-color: var(--red);
}

.mode-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
}

.mode-card h3 {
  color: var(--navy);
}

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

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

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

  .mode-card {
    min-height: auto;
    padding: 20px;
  }
}
/* Multimodal brokered transportation hero */
.hero-media {
  background-image: url("assets/hero-multimodal-brokerage-v3.png");
  background-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 33%, rgba(255,255,255,0.42) 59%, rgba(255,255,255,0.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(246,251,255,0.08) 54%, rgba(255,255,255,0.46) 100%);
}

@media (max-width: 920px) {
  .hero-media {
    background-position: 78% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 62%, rgba(255,255,255,0.46) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.58));
  }
}
/* Secure portal experience */
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

select:focus-visible {
  outline: 3px solid rgba(201, 154, 61, 0.7);
  outline-offset: 3px;
}

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

.portal-layout,
.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.portal-layout.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.portal-copy h2,
.calculator-layout h2 {
  color: var(--navy);
}

.role-selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0 16px;
}

.role-button,
.small-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.role-button:hover,
.role-button.is-active {
  border-color: rgba(183, 33, 43, 0.36);
  background: #fff5f3;
  color: var(--red);
}

.role-card,
.document-panel,
.calculator-card,
.dashboard-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(18, 48, 71, 0.12);
}

.role-card {
  padding: 22px;
  border-left: 5px solid var(--red);
}

.role-card span,
.dashboard-header span,
.metric-grid span,
.calc-results span,
.source-note,
.security-note {
  color: var(--muted);
}

.role-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.role-card p,
.document-panel p,
.calculator-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.portal-form,
.calculator-card,
.document-panel {
  padding: 26px;
}

.dashboard-shell {
  overflow: hidden;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  background: linear-gradient(135deg, #f8fcff, #fff7ee);
  border-bottom: 1px solid var(--line);
}

.dashboard-header strong,
.metric-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1.12rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.metric-grid div {
  min-height: 104px;
  padding: 20px;
  background: #ffffff;
}

.metric-grid strong {
  margin-top: 8px;
  font-size: 1.7rem;
}

.responsive-table {
  overflow-x: auto;
}

.responsive-table table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: #ffffff;
}

.responsive-table th,
.responsive-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.responsive-table th {
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-chip.in-transit {
  background: #e7f8f0;
  color: #136545;
}

.status-chip.pending {
  background: #fff4db;
  color: #8a5c00;
}

.status-chip.review {
  background: #eef3ff;
  color: #244f9a;
}

.status-chip.complete {
  background: #f3f7ed;
  color: #3b6e22;
}

.document-status-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.document-status-grid div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.document-drop {
  display: grid;
  place-items: center;
  min-height: 132px;
  margin-top: 20px;
  border: 2px dashed rgba(18, 48, 71, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7fbff, #fff9ef);
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.document-drop input {
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.file-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.file-list p,
.file-list div {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--muted);
}

.calculator-section {
  background: linear-gradient(135deg, #102033, #1f5f79 58%, #2e7d6f);
  color: #ffffff;
  padding: 86px 0;
}

.calculator-section h2,
.calculator-section .eyebrow {
  color: #ffffff;
}

.calculator-section p,
.calculator-section .source-note {
  color: rgba(255, 255, 255, 0.82);
}

.source-note a {
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.calc-grid label,
.portal-form label {
  color: var(--navy);
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.calc-results div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f8fcff;
}

.calc-results strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.28rem;
}

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

.security-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(18, 48, 71, 0.08);
  border-top: 5px solid var(--green);
}

.security-grid article:nth-child(2n) {
  border-top-color: var(--gold);
}

.security-grid article:nth-child(3n) {
  border-top-color: var(--red);
}

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

@media (max-width: 1120px) {
  .portal-layout,
  .portal-layout.reverse,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .calc-results,
  .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .role-selector,
  .metric-grid,
  .calc-grid,
  .calc-results,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .portal-form,
  .calculator-card,
  .document-panel,
  .dashboard-header,
  .metric-grid div,
  .security-grid article {
    padding: 18px;
  }

  .dashboard-header {
    align-items: stretch;
    flex-direction: column;
  }
}
/* Portal hero refinement */
.portal-hero .page-hero-content {
  max-width: none;
}

.portal-hero h1 {
  max-width: 790px;
  font-size: 3.35rem;
}

.portal-hero p {
  max-width: 760px;
}

@media (max-width: 920px) {
  .portal-hero h1 {
    font-size: 2.45rem;
  }
}

@media (max-width: 640px) {
  .portal-hero h1 {
    font-size: 2.05rem;
  }
}
/* Homepage shipper-first access band */
.enterprise-access {
  padding: 78px 0;
  background: linear-gradient(135deg, #f6fbff 0%, #ffffff 48%, #fff8ea 100%);
  border-bottom: 1px solid var(--line);
}

.enterprise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.enterprise-layout h2 {
  color: var(--navy);
}

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

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

.enterprise-panel div {
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(18, 48, 71, 0.1);
  border-top: 5px solid var(--green);
}

.enterprise-panel div:nth-child(2n) {
  border-top-color: var(--gold);
}

.enterprise-panel div:nth-child(3n) {
  border-top-color: var(--red);
}

.enterprise-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
}

.enterprise-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.home-page .hero-content {
  max-width: min(var(--max), calc(100% - 36px));
}

.home-page .hero-copy {
  max-width: 720px;
}

@media (max-width: 1120px) {
  .enterprise-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .enterprise-access {
    padding: 54px 0;
  }

  .enterprise-panel {
    grid-template-columns: 1fr;
  }

  .enterprise-panel div {
    min-height: auto;
    padding: 20px;
  }
}
/* Portal request controls and audit monitoring */
.role-selector {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.request-layout,
.audit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.request-layout h2,
.audit-layout h2 {
  color: var(--navy);
}

.request-layout p,
.audit-layout p {
  color: var(--muted);
}

.change-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.change-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(18, 48, 71, 0.12);
}

.change-form label {
  color: var(--navy);
}

.audit-panel {
  display: grid;
  gap: 12px;
}

.audit-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 10px 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(18, 48, 71, 0.08);
  border-left: 5px solid var(--green);
}

.audit-row.warning {
  border-left-color: var(--red);
  background: #fff8f6;
}

.audit-row span {
  grid-row: span 2;
  color: var(--red);
  font-weight: 900;
}

.audit-row strong {
  color: var(--navy);
}

.audit-row p {
  margin: 0;
}

.status-chip.flagged {
  background: #fff0ef;
  color: var(--red-dark);
}

@media (max-width: 1120px) {
  .request-layout,
  .audit-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .role-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .request-layout,
  .audit-layout {
    gap: 22px;
  }

  .role-selector {
    grid-template-columns: 1fr;
  }

  .change-form,
  .audit-row {
    padding: 18px;
  }

  .audit-row {
    grid-template-columns: 1fr;
  }

  .audit-row span {
    grid-row: auto;
  }
}
/* 2026 executive logistics refresh */
:root {
  --ink: #0b1e32;
  --muted: #4d6274;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --line: #cfdee8;
  --navy: #071f35;
  --navy-2: #0e3a5c;
  --red: #df1f32;
  --red-dark: #b91525;
  --gold: #d5a23b;
  --green: #178766;
  --signal-blue: #176bff;
  --shadow: 0 22px 60px rgba(7, 31, 53, 0.14);
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
}

.site-header,
.site-header.is-scrolled,
body:not(.home-page) .site-header {
  border-bottom: 1px solid rgba(7, 31, 53, 0.08);
  backdrop-filter: blur(14px);
}

.brand-mark {
  box-shadow: 0 12px 26px rgba(223, 31, 50, 0.2);
}

.header-cta,
.button {
  border-radius: 7px;
}

.home-page .hero {
  min-height: 89vh;
}

.home-page h1 {
  max-width: 790px;
  font-size: 5.45rem;
  line-height: 0.98;
}

.home-page .hero-copy {
  max-width: 730px;
  font-size: 1.14rem;
}

.home-page .hero-content {
  padding-top: 132px;
}

.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.99) 0%, rgba(255,255,255,0.95) 34%, rgba(255,255,255,0.5) 58%, rgba(255,255,255,0.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(246,251,255,0.10) 48%, rgba(255,255,255,0.52) 100%);
}

.hero-actions .button {
  min-height: 54px;
  padding-inline: 22px;
}

.button.primary {
  background: linear-gradient(135deg, #df1f32 0%, #f05a33 100%);
  box-shadow: 0 18px 36px rgba(223, 31, 50, 0.24);
}

.button.secondary,
.header-cta {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 12px 28px rgba(7, 31, 53, 0.08);
}

.hero-stats {
  border: 1px solid rgba(7, 31, 53, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stats div {
  border-top: 4px solid var(--green);
}

.hero-stats div:nth-child(2) {
  border-top-color: var(--signal-blue);
}

.hero-stats div:nth-child(3) {
  border-top-color: var(--gold);
}

.credential-strip {
  background:
    linear-gradient(90deg, #071f35 0%, #0e3a5c 42%, #0f614e 100%);
  border: 0;
}

.credential-grid strong,
.credential-grid span {
  border: 1px solid rgba(255,255,255,0.18);
}

.credential-grid strong {
  background: #ffffff;
  color: var(--navy);
}

.credential-grid span {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.brokerage-notice {
  background: #ffffff;
}

.brokerage-notice .section-inner {
  border-left: 0;
  border-top: 5px solid var(--green);
  background:
    linear-gradient(135deg, #f4fff9 0%, #ffffff 62%, #f4f8ff 100%);
}

.signature-strip {
  padding: 28px 0;
  background:
    linear-gradient(135deg, #071f35 0%, #0b3150 48%, #08283f 100%);
  color: #ffffff;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  overflow: hidden;
}

.signature-grid > * {
  min-height: 172px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
}

.signature-lead {
  display: grid;
  align-content: space-between;
}

.mono-label,
.signature-grid article span,
.rhythm-rail span {
  display: inline-flex;
  color: #9fd7ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signature-lead strong {
  display: block;
  max-width: 520px;
  font-size: 2.3rem;
  line-height: 1.02;
}

.signature-grid article strong {
  display: block;
  margin-top: 24px;
  font-size: 1.05rem;
}

.signature-grid article p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.76);
}

.enterprise-access {
  background:
    linear-gradient(135deg, #ffffff 0%, #f4f9ff 46%, #fff7e8 100%);
}

.enterprise-layout {
  align-items: stretch;
}

.enterprise-layout > div:first-child {
  display: grid;
  align-content: center;
}

.enterprise-panel div,
.info-card,
.service-card,
.leadership-card,
.territory-card,
.reference-list article,
.contact-panel,
.engagement-form,
.dashboard-shell,
.role-card,
.document-panel,
.calculator-card,
.change-form,
.audit-row {
  border-radius: 8px;
}

.enterprise-panel div {
  position: relative;
  overflow: hidden;
  border-top: 0;
  border-left: 5px solid var(--green);
}

.enterprise-panel div:nth-child(2n) {
  border-left-color: var(--signal-blue);
}

.enterprise-panel div:nth-child(3n) {
  border-left-color: var(--red);
}

.command-rhythm {
  padding: 82px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5faff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: end;
}

.split-heading p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.rhythm-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.rhythm-rail::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--signal-blue), var(--green), var(--gold));
}

.rhythm-rail li {
  position: relative;
  min-height: 208px;
  padding: 58px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 34px rgba(7, 31, 53, 0.08);
}

.rhythm-rail span {
  position: absolute;
  top: 15px;
  left: 18px;
  color: var(--navy);
}

.rhythm-rail span::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(7, 31, 53, 0.14);
}

.rhythm-rail li:nth-child(2) span::after { background: var(--signal-blue); }
.rhythm-rail li:nth-child(3) span::after { background: var(--green); }
.rhythm-rail li:nth-child(4) span::after { background: var(--gold); }
.rhythm-rail li:nth-child(5) span::after { background: var(--red-dark); }

.rhythm-rail strong {
  display: block;
  color: var(--navy);
  font-size: 1.18rem;
}

.rhythm-rail p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pathways,
.services,
.leadership-section {
  background: #ffffff;
}

.info-card,
.service-card {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.info-card:hover,
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(7, 31, 53, 0.14);
}

.service-card h3,
.info-card h3 {
  color: var(--navy);
}

.carrier-band {
  background:
    linear-gradient(135deg, #071f35 0%, #0e3a5c 55%, #125f50 100%);
  color: #ffffff;
}

.carrier-band p,
.carrier-band .eyebrow {
  color: rgba(255,255,255,0.78);
}

@media (max-width: 1120px) {
  .signature-grid,
  .rhythm-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signature-lead {
    grid-column: 1 / -1;
  }

  .rhythm-rail::before {
    display: none;
  }

  .split-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 920px) {
  .home-page .hero-media {
    background-position: 65% center;
  }

  .home-page .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 61%, rgba(255,255,255,0.54) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.62));
  }
}

@media (max-width: 640px) {
  .home-page h1 {
    font-size: 2.65rem;
    line-height: 1.03;
  }

  .home-page .hero-content {
    padding-top: 92px;
  }

  .signature-grid,
  .rhythm-rail {
    grid-template-columns: 1fr;
  }

  .signature-grid > *,
  .rhythm-rail li {
    min-height: auto;
  }

  .command-rhythm {
    padding: 54px 0;
  }
}
/* Official NGI logo integration */
.brand-mark.logo-mark {
  width: 88px;
  height: 70px;
  flex: 0 0 88px;
  padding: 5px;
  border: 1px solid rgba(7, 31, 53, 0.08);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(7, 31, 53, 0.14);
}

.brand-mark.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand .brand-mark.logo-mark {
  width: 74px;
  height: 58px;
  flex-basis: 74px;
}

@media (max-width: 640px) {
  .brand-mark.logo-mark {
    width: 62px;
    height: 50px;
    flex-basis: 62px;
    padding: 4px;
  }
}
/* Compliance downloads and intake forms */
.downloads-section,
.secure-intake {
  padding: 82px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  border-bottom: 1px solid var(--line);
}

.download-grid,
.intake-grid {
  display: grid;
  gap: 16px;
}

.download-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.download-card {
  display: grid;
  align-content: space-between;
  min-height: 280px;
  padding: 22px;
  border: 1px solid rgba(7, 31, 53, 0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 42px rgba(7, 31, 53, 0.1);
}

.download-card h3,
.intake-form h3 {
  color: var(--navy);
  font-size: 1.22rem;
}

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

.download-card.pending {
  background: linear-gradient(135deg, #ffffff 0%, #fff8e8 100%);
}

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 7px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
}

.download-link:hover {
  background: var(--navy-2);
}

.download-link.disabled {
  background: #e8eef3;
  color: #5d7080;
}

.vault-note,
.secure-routing-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px solid rgba(7, 31, 53, 0.1);
  background: linear-gradient(135deg, #071f35 0%, #0e3a5c 100%);
  color: #ffffff;
}

.vault-note strong {
  color: #9fd7ff;
}

.secure-intake {
  background: linear-gradient(135deg, #071f35 0%, #0b3150 52%, #0f614e 100%);
  color: #ffffff;
}

.secure-intake .section-heading h2,
.secure-intake .section-heading p,
.secure-intake .eyebrow.dark {
  color: #ffffff;
}

.secure-intake .section-heading p:last-child {
  color: rgba(255,255,255,0.78);
}

.intake-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.intake-form {
  height: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 22px 48px rgba(0,0,0,0.18);
}

.checkbox-field {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 0.92rem;
}

.checkbox-field input {
  width: auto;
  min-width: 18px;
  margin-top: 4px;
}

.secure-routing-note {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.86);
  border-color: rgba(255,255,255,0.16);
}

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

  .intake-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .downloads-section,
  .secure-intake {
    padding: 54px 0;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    min-height: auto;
  }
}
.downloads-section,
.secure-intake {
  scroll-margin-top: 110px;
}

/* Privacy consent and mandatory legal notices */
.footer-disclaimer {
  max-width: 860px;
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(255,255,255,0.72);
  color: var(--muted);
  font-size: 0.9rem;
}

.form-disclaimer {
  margin: 2px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(7, 31, 53, 0.1);
  background: #f4f9ff;
  color: var(--muted);
  font-size: 0.9rem;
}

.secure-intake .form-disclaimer {
  background: #f4f9ff;
  color: var(--muted);
}

.consent-field a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-policy-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

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

.policy-card {
  min-height: 214px;
  padding: 22px;
  border: 1px solid rgba(7, 31, 53, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(7, 31, 53, 0.08);
}

.policy-card h3 {
  color: var(--navy);
}

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

.wire-alert-section {
  padding: 32px 0;
  background: #fff7e8;
}

.wire-fraud-alert {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 8px;
  border: 1px solid rgba(223, 31, 50, 0.22);
  background: linear-gradient(135deg, #fff7e8 0%, #fff0ef 100%);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(223, 31, 50, 0.08);
}

.wire-fraud-alert strong {
  color: var(--red-dark);
}

.carrier-vetting-alert {
  margin-top: 0;
  background: linear-gradient(135deg, #f4fff9 0%, #eef8ff 100%);
  border-color: rgba(23, 135, 102, 0.22);
}

.policy-download {
  margin-top: 24px;
}

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

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

  .footer-disclaimer,
  .form-disclaimer,
  .wire-fraud-alert {
    padding: 16px;
  }
}
/* Calculator legal notice readability */
.calculator-card .form-disclaimer {
  background: #f4f9ff;
  color: var(--muted);
  border-color: rgba(7, 31, 53, 0.14);
}

.calculator-card .form-disclaimer strong,
.calculator-card .form-note,
.calculator-card .consent-field {
  color: var(--navy) !important;
}

.calculator-card .form-note {
  opacity: 1;
}
/* Bright shipper-facing treatment for intake and calculator areas */
.secure-intake,
.calculator-section {
  background: linear-gradient(135deg, #f6fbff 0%, #ffffff 52%, #fff8ea 100%);
  color: var(--navy);
}

.secure-intake .section-heading h2,
.secure-intake .section-heading p,
.secure-intake .eyebrow.dark,
.calculator-section h2,
.calculator-section .eyebrow,
.calculator-section p,
.calculator-section .source-note {
  color: var(--navy);
}

.secure-intake .section-heading p:last-child,
.calculator-section .source-note {
  color: var(--muted);
}

.secure-intake .intake-form,
.calculator-section .calculator-card {
  border: 1px solid rgba(7, 31, 53, 0.12);
  box-shadow: 0 22px 52px rgba(7, 31, 53, 0.12);
}

.secure-routing-note {
  background: rgba(255,255,255,0.9);
  color: var(--muted);
  border-color: rgba(7, 31, 53, 0.12);
}

.secure-routing-note strong,
.calculator-section .source-note a {
  color: var(--red-dark);
}
.footer-disclaimer a {
  color: var(--red-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.proprietary-notice {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px solid rgba(223, 31, 50, 0.2);
  background: linear-gradient(135deg, #fff7e8 0%, #fff0ef 100%);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(223, 31, 50, 0.08);
}

.proprietary-notice strong {
  color: var(--red-dark);
}
/* Gold-standard homepage command layer */
.home-page .hero {
  min-height: 92vh;
}

.home-page h1 {
  max-width: 830px;
}

.standard-console {
  position: relative;
  padding: 92px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border-top: 1px solid rgba(7, 31, 53, 0.08);
  border-bottom: 1px solid rgba(7, 31, 53, 0.08);
  overflow: hidden;
}

.standard-console::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red), #1c8ec8, var(--green), var(--gold));
}

.console-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 38px;
  align-items: center;
}

.console-copy h2,
.gold-standard-stack h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: 3.25rem;
  line-height: 1.02;
}

.console-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.console-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.console-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(7, 31, 53, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.console-card {
  position: relative;
  border: 1px solid rgba(7, 31, 53, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(246,251,255,0.95));
  box-shadow: 0 28px 70px rgba(7, 31, 53, 0.16);
  overflow: hidden;
}

.console-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), #1c8ec8, var(--green), var(--gold));
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 18px;
  color: var(--navy);
}

.console-topline span,
.console-state,
.proof-grid span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--red);
}

.console-topline strong {
  color: var(--green);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.console-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(7, 31, 53, 0.1);
}

.console-tab {
  min-height: 54px;
  border: 0;
  border-right: 1px solid rgba(7, 31, 53, 0.1);
  background: #f7fbff;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.console-tab:last-child {
  border-right: 0;
}

.console-tab.is-active {
  background: var(--navy);
  color: #ffffff;
}

.console-screen {
  min-height: 318px;
  padding: 28px 30px 26px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f5fbff 62%, #fff8ea 100%);
}

.console-screen h3 {
  max-width: 560px;
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 2.15rem;
  line-height: 1.04;
}

.console-screen p {
  max-width: 620px;
  color: var(--muted);
}

.console-screen ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.console-screen li {
  position: relative;
  padding-left: 26px;
  color: var(--navy);
  font-weight: 800;
}

.console-screen li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 125, 111, 0.12);
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(7, 31, 53, 0.12);
}

.console-metrics div {
  min-height: 94px;
  padding: 18px;
  background: #ffffff;
}

.console-metrics span {
  display: block;
  color: var(--red);
  font-weight: 900;
}

.console-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 1rem;
}

.gold-standard-stack {
  padding: 92px 0;
  background:
    linear-gradient(135deg, #fff8ea 0%, #ffffff 38%, #eef8ff 100%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.proof-grid article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid rgba(7, 31, 53, 0.11);
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 44px rgba(7, 31, 53, 0.09);
}

.proof-grid article:nth-child(2n) {
  border-top: 4px solid var(--green);
}

.proof-grid article:nth-child(2n+1) {
  border-top: 4px solid var(--red);
}

.proof-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.18;
}

.proof-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .console-layout,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .console-layout {
    gap: 26px;
  }
}

@media (max-width: 640px) {
  .standard-console,
  .gold-standard-stack {
    padding: 58px 0;
  }

  .console-copy h2,
  .gold-standard-stack h2 {
    font-size: 2.3rem;
  }

  .console-tabs,
  .console-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .console-screen {
    min-height: auto;
    padding: 24px 20px;
  }

  .console-screen h3 {
    font-size: 1.65rem;
  }
}
/* Accessibility and language controls */
.skip-link {
  position: fixed;
  top: -120px;
  left: 18px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 7px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(7, 31, 53, 0.22);
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 14px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}

.language-select {
  min-height: 40px;
  max-width: 172px;
  border: 1px solid rgba(18, 48, 71, 0.22);
  border-radius: 7px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
}

.language-select option {
  color: var(--navy);
  background: #ffffff;
}

.footer-language-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.footer-language-note + .footer-disclaimer {
  margin-top: 12px;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .language-switcher {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
  }

  .language-select {
    max-width: 126px;
    min-height: 38px;
    padding: 7px 8px;
    font-size: 0.76rem;
  }
}
/* Portal operations data desk */
.operations-desk {
  background: linear-gradient(135deg, #ffffff 0%, #f5fbff 48%, #fff8ea 100%);
  border-top: 1px solid rgba(7, 31, 53, 0.08);
  border-bottom: 1px solid rgba(7, 31, 53, 0.08);
}

.operations-heading {
  max-width: 930px;
}

.operations-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.operations-grid,
.data-model-grid,
.operations-tools {
  display: grid;
  gap: 16px;
}

.operations-grid {
  grid-template-columns: 1.18fr 0.92fr 0.9fr;
  align-items: stretch;
}

.data-model-grid,
.operations-tools {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.ops-panel,
.data-model-grid article,
.rating-card,
.margin-card {
  border: 1px solid rgba(7, 31, 53, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(7, 31, 53, 0.09);
}

.ops-panel,
.data-model-grid article {
  padding: 24px;
}

.ops-panel {
  border-top: 5px solid var(--signal-blue, #1c8ec8);
}

.ops-panel:nth-child(2) {
  border-top-color: var(--green);
}

.ops-panel:nth-child(3) {
  border-top-color: var(--gold);
}

.ops-label {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-panel h3,
.data-model-grid h3,
.margin-card h3,
.rating-card h3 {
  color: var(--navy);
}

.ops-panel p,
.ops-checklist,
.data-model-grid p,
.margin-card p,
.rating-card p {
  color: var(--muted);
}

.source-link-grid,
.compact-link-list,
.rating-matrix {
  display: grid;
  gap: 10px;
}

.source-link-grid {
  margin-top: 20px;
}

.source-link-grid a,
.compact-link-list a,
.rating-matrix span {
  border: 1px solid rgba(7, 31, 53, 0.1);
  border-radius: 7px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 900;
}

.source-link-grid a,
.compact-link-list a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.source-link-grid a:hover,
.compact-link-list a:hover {
  border-color: rgba(211, 31, 50, 0.32);
  color: var(--red-dark);
  box-shadow: 0 12px 28px rgba(7, 31, 53, 0.08);
}

.source-link-grid small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.compact-link-list {
  margin-top: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ops-checklist {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.data-model-grid article {
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.rating-matrix {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.rating-matrix span {
  min-height: 54px;
  padding: 12px 14px;
  border-left: 4px solid var(--green);
}

.rating-matrix.ledger span {
  border-left-color: var(--gold);
}

.operations-tools {
  align-items: start;
}

.margin-card,
.rating-card {
  padding: 26px;
}

.calculator-card .calc-grid input,
.calculator-card .calc-grid select,
.calculator-card .calc-grid textarea {
  width: 100%;
  border: 1px solid #c9d3dd;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #ffffff;
}

.calculator-card .calc-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.calc-grid .wide-field {
  grid-column: 1 / -1;
}

.margin-results strong small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.rating-results {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(7, 31, 53, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, #f4fff9 0%, #eef8ff 100%);
}

.rating-results strong {
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.rating-results span {
  color: var(--muted);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .operations-grid,
  .data-model-grid,
  .operations-tools {
    grid-template-columns: 1fr;
  }

  .compact-link-list,
  .rating-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ops-panel,
  .data-model-grid article,
  .margin-card,
  .rating-card {
    padding: 20px;
  }

  .compact-link-list,
  .rating-matrix {
    grid-template-columns: 1fr;
  }
}
/* Public service feedback */
.feedback-section {
  background: linear-gradient(135deg, #ffffff 0%, #f5fbff 50%, #fff7e8 100%);
  border-top: 1px solid rgba(7, 31, 53, 0.08);
}

.feedback-section .form-layout {
  align-items: start;
}

.feedback-principles {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.feedback-principles article {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(7, 31, 53, 0.1);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(7, 31, 53, 0.07);
}

.feedback-principles article:nth-child(2) {
  border-left-color: var(--signal-blue, #1c8ec8);
}

.feedback-principles article:nth-child(3) {
  border-left-color: var(--gold);
}

.feedback-principles strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.feedback-principles span,
.feedback-form p {
  color: var(--muted);
}

.feedback-form {
  border-top: 5px solid var(--red);
}

.feedback-form .form-disclaimer a {
  color: var(--red-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .feedback-principles article {
    padding: 16px;
  }
}
/* Credential maintenance and counterparty screening */
.credential-watch-section {
  background: linear-gradient(135deg, #ffffff 0%, #f5fbff 48%, #f4fff9 100%);
  border-top: 1px solid rgba(7, 31, 53, 0.08);
  border-bottom: 1px solid rgba(7, 31, 53, 0.08);
}

.credential-watch-section .split-heading p,
.credential-watch-section .section-heading > p:last-child {
  color: var(--muted);
}

.credential-card-grid .info-card {
  border-top: 5px solid var(--green);
}

.credential-card-grid .info-card:nth-child(2n) {
  border-top-color: var(--signal-blue, #1c8ec8);
}

.credential-card-grid .info-card:nth-child(3n) {
  border-top-color: var(--gold);
}

.credential-source-panel {
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(7, 31, 53, 0.08);
}
/* Closeout and archive gate */
.closeout-section {
  background: linear-gradient(135deg, #f5fbff 0%, #ffffff 52%, #fff7e8 100%);
  border-top: 1px solid rgba(7, 31, 53, 0.08);
  border-bottom: 1px solid rgba(7, 31, 53, 0.08);
}

.closeout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.closeout-layout > div > p,
.closeout-card p {
  color: var(--muted);
}

.archive-rules {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.archive-rules article {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(7, 31, 53, 0.1);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(7, 31, 53, 0.07);
}

.archive-rules article:nth-child(2) {
  border-left-color: var(--gold);
}

.archive-rules article:nth-child(3) {
  border-left-color: var(--green);
}

.archive-rules strong,
.closeout-card h2 {
  color: var(--navy);
}

.archive-rules span {
  color: var(--muted);
}

.closeout-card {
  border-top: 5px solid var(--red);
}

.closeout-result {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(7, 31, 53, 0.12);
  border-radius: 8px;
  background: #fff7e8;
}

.closeout-result strong {
  color: var(--red-dark);
  font-size: 1.1rem;
}

.closeout-result span {
  color: var(--muted);
}

.closeout-result.is-ready {
  background: #f4fff9;
  border-color: rgba(28, 152, 119, 0.24);
}

.closeout-result.is-ready strong {
  color: #136545;
}

@media (max-width: 1120px) {
  .closeout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .archive-rules article,
  .closeout-result {
    padding: 16px;
  }
}
/* Routing and distance desk */
.routing-section {
  background: linear-gradient(135deg, #ffffff 0%, #f5fbff 48%, #fff7e8 100%);
}

.routing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.routing-layout > div > p,
.route-builder-form p,
.provider-grid p {
  color: var(--muted);
}

.routing-assurance,
.provider-grid {
  display: grid;
  gap: 14px;
}

.routing-assurance {
  margin-top: 24px;
}

.routing-assurance article,
.provider-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(7, 31, 53, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 32px rgba(7, 31, 53, 0.07);
}

.routing-assurance article {
  border-left: 5px solid var(--signal-blue, #1c8ec8);
}

.routing-assurance article:nth-child(2) {
  border-left-color: var(--green);
}

.routing-assurance article:nth-child(3) {
  border-left-color: var(--gold);
}

.routing-assurance strong,
.provider-grid h3,
.route-builder-form h2,
.route-output strong {
  color: var(--navy);
}

.routing-assurance span,
.route-output span,
.route-output small {
  color: var(--muted);
}

.route-builder-form {
  border-top: 5px solid var(--signal-blue, #1c8ec8);
}

.route-output {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(7, 31, 53, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, #f4fff9 0%, #eef8ff 100%);
}

.route-output .download-link {
  justify-self: start;
  margin-top: 2px;
}

.route-output small {
  font-size: 0.88rem;
}

.provider-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.provider-grid article {
  min-height: 300px;
  align-content: start;
  border-top: 5px solid var(--green);
}

.provider-grid article:nth-child(2n) {
  border-top-color: var(--signal-blue, #1c8ec8);
}

.provider-grid article:nth-child(3n) {
  border-top-color: var(--gold);
}

.provider-grid span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.provider-grid a {
  margin-top: auto;
  color: var(--red-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1120px) {
  .routing-layout,
  .provider-grid {
    grid-template-columns: 1fr;
  }

  .provider-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .routing-assurance article,
  .provider-grid article,
  .route-output {
    padding: 16px;
  }
}
/* Proprietary rights footer notice */
.footer-proprietary {
  max-width: 920px;
  margin-top: 12px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 247, 232, 0.92);
  color: var(--navy);
  font-size: 0.88rem;
}

.footer-proprietary strong {
  color: var(--red-dark);
}

.footer-proprietary a {
  color: var(--red-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .footer-proprietary {
    padding: 14px;
  }
}
/* Required carrier/driver upload fields */
.required-upload-panel {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.required-upload-panel h3 {
  color: var(--navy);
}

.required-upload-panel p {
  margin-top: 10px;
}

.required-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.required-upload-field {
  display: grid;
  gap: 10px;
  min-height: 116px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(135deg, #f8fcff, #ffffff);
  color: var(--navy);
  font-weight: 900;
}

.required-upload-field input {
  width: 100%;
  color: var(--muted);
  font-weight: 700;
}

.required-upload-status {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.required-upload-status p,
.required-upload-status div {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.required-upload-status div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: center;
}

.required-upload-status small {
  grid-column: 1 / -1;
  color: var(--muted);
}

@media (max-width: 640px) {
  .required-upload-grid,
  .required-upload-status div {
    grid-template-columns: 1fr;
  }
}
/* Freight brokerage visual proof section */
.visual-freight-section {
  padding: clamp(68px, 8vw, 104px) 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5fbff 48%, #fff7e8 100%);
  border-bottom: 1px solid rgba(7, 31, 53, 0.08);
}

.visual-freight-section .section-heading {
  max-width: none;
}

.visual-freight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  align-items: stretch;
}

.visual-freight-grid figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  border: 1px solid rgba(7, 31, 53, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(7, 31, 53, 0.12);
}

.visual-freight-grid img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.visual-freight-main {
  grid-row: span 3;
  min-height: 640px;
}

.visual-freight-grid figcaption {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.74);
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(7, 31, 53, 0.12);
}

.visual-freight-grid figcaption strong {
  font-size: 1rem;
}

.visual-freight-grid figcaption span {
  color: var(--muted);
  font-size: 0.9rem;
}

.home-page .hero-media {
  background-image: url("assets/hero-multimodal-brokerage-v3.png");
  background-position: center;
}

@media (max-width: 1120px) {
  .visual-freight-grid {
    grid-template-columns: 1fr;
  }

  .visual-freight-main {
    grid-row: auto;
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .visual-freight-section {
    padding: 54px 0;
  }

  .visual-freight-grid figure,
  .visual-freight-main {
    min-height: 300px;
  }

  .visual-freight-grid figcaption {
    position: static;
    border-radius: 0;
    border-inline: 0;
    border-bottom: 0;
    box-shadow: none;
  }
}
/* Local preview translation notice */
.language-preview-notice {
  position: fixed;
  top: 94px;
  right: clamp(16px, 3vw, 36px);
  z-index: 30;
  max-width: min(420px, calc(100% - 32px));
  padding: 14px 16px;
  border: 1px solid rgba(7, 31, 53, 0.12);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255,255,255,0.97);
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(7, 31, 53, 0.16);
  font-size: 0.9rem;
}

.language-preview-notice a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.language-preview-notice[hidden] {
  display: none;
}

@media (max-width: 640px) {
  .language-preview-notice {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
}
/* Executive logistics palette refinement */
:root {
  --ink: #18231f;
  --muted: #5d665f;
  --paper: #f7f3eb;
  --soft: #eee8dc;
  --line: #d8cebf;
  --navy: #1f2b28;
  --navy-2: #2d403b;
  --red: #a76634;
  --red-dark: #754823;
  --gold: #b99155;
  --green: #1f7468;
  --signal-blue: #3f6f78;
  --shadow: 0 20px 48px rgba(25, 34, 31, 0.16);
}

body {
  background: linear-gradient(180deg, #f7f3eb 0%, #f2eee6 42%, #f8f5ee 100%);
  color: var(--ink);
}

.site-header,
.site-header.is-scrolled,
body:not(.home-page) .site-header {
  background: rgba(247, 243, 235, 0.96);
  color: var(--navy);
  border-bottom: 1px solid rgba(45, 64, 59, 0.12);
  box-shadow: 0 14px 34px rgba(25, 34, 31, 0.14);
}

.brand small,
.footer-brand .brand-text small,
.site-footer p,
.footer-links,
.hero-copy,
.page-hero p,
.two-column p,
.split-copy p,
.quote-section p,
.compliance-section p,
.carrier-band p {
  color: var(--muted);
}

h1,
h2,
h3,
.page-hero h1,
.console-screen h3,
.enterprise-panel strong,
.proof-grid strong {
  color: var(--navy);
}

.eyebrow,
.eyebrow.dark,
.card-kicker,
.provider-grid span,
.console-state,
.mono-label {
  color: var(--red-dark);
}

.button.primary,
.download-link {
  background: linear-gradient(135deg, #8e5a2d 0%, #c28d53 100%);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(114, 78, 43, 0.24);
}

.button.primary:hover,
.download-link:hover {
  background: linear-gradient(135deg, #754823 0%, #a76634 100%);
}

.button.secondary,
.header-cta {
  background: rgba(31, 43, 40, 0.92);
  color: #ffffff;
  border-color: rgba(31, 43, 40, 0.35);
}

.button.secondary:hover,
.header-cta:hover {
  background: var(--green);
  color: #ffffff;
}

.home-page .hero-media,
.hero-media {
  filter: saturate(1.14) contrast(1.08) brightness(1.02);
}

.home-page .hero-overlay,
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247,243,235,0.94) 0%, rgba(247,243,235,0.78) 32%, rgba(247,243,235,0.20) 57%, rgba(25,34,31,0.10) 100%),
    linear-gradient(180deg, rgba(247,243,235,0.04) 0%, rgba(25,34,31,0.10) 58%, rgba(247,243,235,0.18) 100%);
}

.hero-content {
  max-width: 820px;
}

.hero-stats {
  background: rgba(247, 243, 235, 0.92);
  border-color: rgba(45, 64, 59, 0.14);
  box-shadow: 0 18px 40px rgba(25, 34, 31, 0.12);
}

.hero-stats div {
  background: rgba(255, 252, 246, 0.84);
}

.hero-stats dt,
.hero-stats dd {
  color: var(--navy);
}

.leader-line {
  background: rgba(247, 243, 235, 0.92);
  border-left-color: var(--gold);
  color: var(--navy);
}

.brokerage-notice,
.section-band,
.gold-standard-stack,
.enterprise-access,
.operations-desk,
.routing-section,
.feedback-section,
.credential-watch-section,
.closeout-section,
.visual-freight-section {
  background: linear-gradient(135deg, #f7f3eb 0%, #eee8dc 50%, #f8f5ee 100%);
}

.signature-strip,
.calculator-section,
.secure-intake,
.vault-note,
.secure-routing-note {
  background: linear-gradient(135deg, #1f2b28 0%, #2d403b 58%, #1f7468 100%);
  color: #ffffff;
}

.signature-strip h2,
.signature-strip strong,
.calculator-section h2,
.calculator-section .eyebrow,
.secure-intake .section-heading h2,
.secure-intake .eyebrow.dark,
.secure-intake .section-heading p:last-child,
.secure-intake p {
  color: #ffffff;
}

.info-card,
.service-card,
.policy-card,
.download-card,
.contact-panel,
.quote-form,
.engagement-form,
.role-card,
.document-panel,
.calculator-card,
.dashboard-shell,
.console-card,
.proof-grid article,
.enterprise-panel,
.visual-freight-grid figure,
.routing-assurance article,
.provider-grid article,
.archive-rules article,
.security-grid article,
.ops-panel,
.data-model-grid article,
.margin-card,
.rating-card {
  background: rgba(255, 252, 246, 0.96);
  border-color: rgba(45, 64, 59, 0.14);
  box-shadow: 0 18px 42px rgba(25, 34, 31, 0.10);
}

.info-card,
.service-card,
.proof-grid article,
.security-grid article,
.provider-grid article,
.credential-card-grid .info-card {
  border-top-color: var(--gold);
}

.info-card:nth-child(2n),
.service-card:nth-child(2n),
.proof-grid article:nth-child(2n),
.security-grid article:nth-child(2n),
.provider-grid article:nth-child(2n) {
  border-top-color: var(--green);
}

.info-card:nth-child(3n),
.service-card:nth-child(3n),
.proof-grid article:nth-child(3n),
.security-grid article:nth-child(3n),
.provider-grid article:nth-child(3n) {
  border-top-color: var(--red);
}

.visual-freight-grid figure {
  box-shadow: 0 24px 58px rgba(25, 34, 31, 0.20);
}

.visual-freight-grid img {
  filter: saturate(1.18) contrast(1.10) brightness(1.03);
}

.visual-freight-grid figcaption {
  background: rgba(31, 43, 40, 0.86);
  color: #ffffff;
  border-color: rgba(244, 230, 207, 0.36);
  backdrop-filter: blur(12px);
}

.visual-freight-grid figcaption strong,
.visual-freight-grid figcaption span {
  color: #ffffff;
}

.site-footer {
  background: #1f2b28;
  color: #f7f3eb;
  border-top: 1px solid rgba(185, 145, 85, 0.28);
}

.site-footer p,
.site-footer a,
.footer-links,
.footer-brand .brand-text small {
  color: rgba(247, 243, 235, 0.82);
}

.footer-proprietary {
  background: rgba(185, 145, 85, 0.12);
  color: #f7f3eb;
  border-left-color: var(--gold);
}

.footer-proprietary strong,
.footer-proprietary a {
  color: #f0cf94;
}

.fraud-alert,
.wire-fraud-alert,
.language-preview-notice {
  background: rgba(255, 252, 246, 0.97);
  border-color: rgba(185, 145, 85, 0.38);
  border-left-color: var(--gold);
}

@media (max-width: 920px) {
  .home-page .hero-overlay,
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(247,243,235,0.96) 0%, rgba(247,243,235,0.84) 62%, rgba(247,243,235,0.44) 100%),
      linear-gradient(180deg, rgba(247,243,235,0.16), rgba(247,243,235,0.48));
  }
}
/* Prominent official NGI logo sizing */
.brand-mark.logo-mark {
  width: 124px;
  height: 96px;
  flex: 0 0 124px;
  padding: 7px;
  border-radius: 10px;
}

.footer-brand .brand-mark.logo-mark {
  width: 104px;
  height: 82px;
  flex-basis: 104px;
}

.hero-logo-lockup {
  display: inline-grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 12px 14px 10px;
  border: 1px solid rgba(45, 64, 59, 0.14);
  border-radius: 12px;
  background: rgba(255, 252, 246, 0.86);
  box-shadow: 0 18px 42px rgba(25, 34, 31, 0.14);
  backdrop-filter: blur(10px);
}

.hero-logo-lockup img {
  width: clamp(150px, 15vw, 228px);
  height: auto;
}

.hero-logo-lockup span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header {
  padding-block: 12px;
}

.site-header.is-scrolled,
body:not(.home-page) .site-header {
  padding-block: 8px;
}

.hero-content {
  padding-top: 136px;
}

.page-hero-content {
  padding-top: 146px;
}

@media (max-width: 1120px) {
  .brand-mark.logo-mark {
    width: 92px;
    height: 72px;
    flex-basis: 92px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.68rem;
  }
}

@media (max-width: 640px) {
  .brand-mark.logo-mark {
    width: 74px;
    height: 58px;
    flex-basis: 74px;
  }

  .footer-brand .brand-mark.logo-mark {
    width: 82px;
    height: 64px;
    flex-basis: 82px;
  }

  .hero-logo-lockup {
    margin-bottom: 14px;
    padding: 10px 12px 8px;
  }

  .hero-logo-lockup img {
    width: 142px;
  }

  .hero-logo-lockup span {
    font-size: 0.66rem;
  }

  .hero-content {
    padding-top: 116px;
  }

  .page-hero-content {
    padding-top: 128px;
  }
}
/* Executive footer and administrator carrier search refinement */
.footer-executive {
  grid-template-columns: minmax(280px, 1.2fr) minmax(190px, 0.55fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: start;
}

.footer-company,
.footer-legal-stack {
  display: grid;
  gap: 14px;
}

.footer-founder,
.footer-language-note,
.footer-disclaimer,
.footer-proprietary {
  max-width: 78ch;
  line-height: 1.7;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0 2px;
}

.footer-contact-grid > a,
.footer-contact-grid > span {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(240, 207, 148, 0.22);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.07);
  color: #f7f3eb;
}

.footer-contact-grid span span,
.footer-contact-grid a span {
  color: rgba(247, 243, 235, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-contact-grid strong {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

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

.footer-link-grid a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(240, 207, 148, 0.15);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.05);
}

.footer-disclaimer {
  padding: 16px 18px;
  border: 1px solid rgba(240, 207, 148, 0.2);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.06);
}

.carrier-search-section {
  background: linear-gradient(135deg, #f7f3eb 0%, #eef3ef 54%, #fffaf0 100%);
}

.carrier-search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.carrier-search-console,
.verification-stack article,
.admin-access-note {
  border: 1px solid rgba(45, 64, 59, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 18px 42px rgba(25, 34, 31, 0.10);
}

.carrier-search-console {
  padding: 22px;
}

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

.carrier-search-grid label,
.carrier-search-console .checkbox-field {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

.carrier-search-grid input,
.carrier-search-grid select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(45, 64, 59, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  background: #ffffff;
  color: var(--navy);
  font: inherit;
}

.carrier-search-results {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(31, 116, 104, 0.08);
  color: var(--navy);
}

.carrier-search-results strong {
  color: var(--navy);
}

.carrier-search-results span {
  color: var(--muted);
}

.verification-stack {
  display: grid;
  gap: 14px;
}

.verification-stack article,
.admin-access-note {
  padding: 18px;
}

.admin-access-note {
  margin-top: 18px;
  border-left: 4px solid var(--gold);
  color: var(--navy);
}

@media (max-width: 980px) {
  .footer-executive,
  .carrier-search-layout {
    grid-template-columns: 1fr;
  }

  .footer-link-grid,
  .footer-contact-grid,
  .carrier-search-grid {
    grid-template-columns: 1fr;
  }
}
/* 2026 portal and footer legal disclosure update */
.dashboard-title-row {
  display: grid;
  gap: 12px;
}

.access-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(111, 40, 40, 0.22);
  border-left: 4px solid var(--red);
  border-radius: 999px;
  background: rgba(111, 40, 40, 0.08);
  color: #6f2828;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.internal-disclaimer {
  padding: 16px 18px;
  border: 1px solid rgba(45, 64, 59, 0.14);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.92);
  color: var(--navy);
  line-height: 1.65;
}

.footer-compliance-contact {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid rgba(240, 207, 148, 0.22);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.07);
}

.footer-compliance-contact strong,
.footer-compliance-contact a {
  color: #ffffff;
}

.footer-copyright {
  color: #ffffff;
  font-weight: 900;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(240, 207, 148, 0.18);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.05);
}

.footer-policy-links a {
  color: #f0cf94;
  font-weight: 900;
}

.footer-policy-links span {
  color: rgba(247, 243, 235, 0.48);
}
/* Visual clarity review: keep text from covering freight imagery */
.hero,
.page-hero {
  display: block;
  min-height: 0;
  overflow: visible;
  background: linear-gradient(180deg, #fffaf0 0%, #f7f3eb 100%);
  color: var(--navy);
}

.hero-media,
.page-hero .hero-media {
  position: relative;
  inset: auto;
  z-index: 0;
  display: block;
  width: 100%;
  height: clamp(500px, 52vw, 760px);
  min-height: 0;
  transform: none;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(45, 64, 59, 0.12);
  box-shadow: inset 0 -42px 78px rgba(25, 34, 31, 0.10);
}

.home-page .hero-media {
  height: clamp(560px, 56vw, 820px);
  background-position: center center;
}

.page-hero .hero-media {
  background-position: center center;
}

.hero-overlay,
.page-hero .hero-overlay,
.home-page .hero-overlay {
  display: none;
}

.hero-content,
.page-hero-content {
  width: min(var(--max), calc(100% - 36px));
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 66px) 0 clamp(44px, 6vw, 78px);
  color: var(--navy);
}

.home-page .hero-content {
  display: grid;
  gap: 18px;
  max-width: var(--max);
  padding-top: clamp(34px, 4.6vw, 58px);
}

.hero-content h1,
.page-hero h1 {
  max-width: 1060px;
  color: var(--navy);
  text-shadow: none;
}

.hero-copy,
.page-hero p {
  max-width: 760px;
  color: var(--muted);
}

.home-page .hero-copy {
  margin-top: 0;
  max-width: 930px;
  color: #1f2b28;
  font-size: clamp(1.18rem, 2vw, 1.62rem);
  font-weight: 900;
  line-height: 1.28;
}

.leader-line {
  max-width: 920px;
}

.hero-actions {
  margin-top: 12px;
}

.hero-stats {
  width: min(960px, 100%);
  margin-top: 16px;
}

.visual-freight-grid figure {
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  overflow: hidden;
}

.visual-freight-grid img {
  display: block;
  height: 100%;
  min-height: 0;
}

.visual-freight-main {
  min-height: 0;
}

.visual-freight-main img {
  min-height: 640px;
}

.visual-freight-grid figcaption {
  position: static;
  inset: auto;
  border: 0;
  border-top: 1px solid rgba(45, 64, 59, 0.12);
  border-radius: 0;
  background: #fffaf0;
  color: var(--navy);
  box-shadow: none;
  backdrop-filter: none;
}

.visual-freight-grid figcaption strong,
.visual-freight-grid figcaption span {
  color: var(--navy);
}

.visual-freight-grid figcaption span {
  color: var(--muted);
}

.site-footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 920px) {
  .hero-media,
  .page-hero .hero-media,
  .home-page .hero-media {
    height: clamp(360px, 70vw, 560px);
    background-position: center center;
  }

  .hero-content,
  .page-hero-content {
    padding-top: 34px;
  }

  .hero-content h1,
  .page-hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-media,
  .page-hero .hero-media,
  .home-page .hero-media {
    height: clamp(300px, 82vw, 440px);
  }

  .hero-content,
  .page-hero-content {
    width: min(100% - 28px, var(--max));
    padding-top: 28px;
  }

  .visual-freight-grid figure,
  .visual-freight-main,
  .visual-freight-main img {
    min-height: 0;
  }

  .visual-freight-grid img {
    aspect-ratio: 16 / 10;
    height: auto;
  }
}
/* Hero image height balance after visual overlap review */
.hero-media,
.page-hero .hero-media {
  height: clamp(340px, 36vw, 520px);
}

.home-page .hero-media {
  height: clamp(400px, 40vw, 590px);
}

@media (max-width: 920px) {
  .hero-media,
  .page-hero .hero-media,
  .home-page .hero-media {
    height: clamp(320px, 62vw, 500px);
  }
}

@media (max-width: 640px) {
  .hero-media,
  .page-hero .hero-media,
  .home-page .hero-media {
    height: clamp(260px, 76vw, 390px);
  }
}
/* Homepage freight image and headline composition tuning */
.home-page .hero-media {
  background-image: url("assets/hero-tech-brokerage-trucks-v2.png");
  background-position: center center;
}

.home-page .hero-content h1 {
  max-width: 1180px;
  font-size: clamp(2.9rem, 5.2vw, 4.25rem);
  line-height: 1.04;
}

.home-page .hero-content .eyebrow {
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .home-page .hero-content h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }
}
/* Final homepage first-screen fit after visual QA */
.home-page .hero-media {
  height: clamp(360px, 34vw, 500px);
}

.home-page .hero-content {
  padding-top: clamp(28px, 3.6vw, 44px);
}

.home-page .hero-content h1 {
  max-width: 1120px;
  font-size: clamp(2.65rem, 4.55vw, 3.85rem);
}

.home-page .hero-copy {
  font-size: clamp(1.12rem, 1.65vw, 1.42rem);
}

@media (max-width: 640px) {
  .home-page .hero-media {
    height: clamp(250px, 70vw, 360px);
  }
}
/* Fixed-header anchor offset so section headings remain visible */
html {
  scroll-padding-top: 170px;
}

section[id],
main[id],
footer[id] {
  scroll-margin-top: 170px;
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 140px;
  }

  section[id],
  main[id],
  footer[id] {
    scroll-margin-top: 140px;
  }
}
/* Keep fixed header from covering hero imagery */
main {
  padding-top: 154px;
}

@media (max-width: 1120px) {
  main {
    padding-top: 118px;
  }
}

@media (max-width: 640px) {
  main {
    padding-top: 94px;
  }
}
/* Gatekeeper architecture, RBAC preview, and public landing lockdown */
html.ngi-public .main-nav {
  display: none;
}

html.ngi-authenticated .main-nav a {
  display: none;
}

html.ngi-authenticated .main-nav a.is-role-visible {
  display: inline-flex;
}

.site-header::after {
  content: attr(data-auth-role-label);
  display: none;
  padding: 8px 10px;
  border: 1px solid rgba(185, 145, 85, 0.25);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 252, 246, 0.82);
  font-size: 0.74rem;
  font-weight: 1000;
  text-transform: uppercase;
}

html.ngi-authenticated .site-header::after {
  display: inline-flex;
}

.public-landing .hero-actions {
  margin-top: 24px;
}

.public-about .button {
  margin-top: 18px;
}

.public-about-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.92);
  color: var(--navy);
  font-weight: 800;
}

.login-page .login-hero .hero-media,
.manuals-hero .hero-media {
  background-image: url("assets/hero-brokerage-command.png");
}

.login-panel-section {
  background: linear-gradient(135deg, #f7f3eb 0%, #eef3ef 54%, #fffaf0 100%);
}

.login-role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.login-role-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 330px;
  padding: 22px;
  border: 1px solid rgba(45, 64, 59, 0.14);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 18px 42px rgba(25, 34, 31, 0.10);
}

.login-role-card:nth-child(2) {
  border-top-color: var(--green);
}

.login-role-card:nth-child(3) {
  border-top-color: var(--red);
}

.login-role-card.admin-card {
  border-top-color: #1f2b28;
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(240, 207, 148, 0.16));
}

.login-role-card span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.login-role-card h3 {
  color: var(--navy);
  font-size: 1.35rem;
}

.login-role-card p {
  color: var(--muted);
}

.footer-executive {
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
}

.footer-legal-stack {
  gap: 16px;
}

.footer-proprietary {
  background: rgba(185, 145, 85, 0.12);
}

@media (max-width: 1180px) {
  .login-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .login-role-grid,
  .footer-executive {
    grid-template-columns: 1fr;
  }

  html.ngi-authenticated .site-header::after {
    display: none;
  }
}

/* Larger official NGI header identity */
.site-header {
  min-height: 142px;
  padding-block: 14px;
  gap: clamp(14px, 2vw, 28px);
}

.site-header .brand {
  gap: clamp(14px, 1.8vw, 20px);
  flex: 1 1 520px;
  max-width: min(760px, 58vw);
}

.site-header .brand-mark.logo-mark {
  width: 148px;
  height: 116px;
  flex-basis: 148px;
  padding: 8px;
}

.site-header .brand strong {
  font-size: clamp(1.28rem, 1.68vw, 1.68rem);
  line-height: 1.03;
  font-weight: 1000;
}

.site-header .brand small {
  margin-top: 6px;
  font-size: clamp(0.88rem, 0.98vw, 1.04rem);
  line-height: 1.15;
  font-weight: 1000;
  letter-spacing: 0;
}

.site-header.is-scrolled,
body:not(.home-page) .site-header {
  min-height: 132px;
  padding-block: 10px;
}

main {
  padding-top: 184px;
}

html {
  scroll-padding-top: 198px;
}

section[id],
main[id],
footer[id] {
  scroll-margin-top: 198px;
}

html.ngi-authenticated .site-header .brand {
  flex: 0 1 470px;
  max-width: min(470px, 34vw);
}

html.ngi-authenticated .site-header .brand-mark.logo-mark {
  width: 128px;
  height: 100px;
  flex-basis: 128px;
}

html.ngi-authenticated .site-header .brand strong {
  font-size: clamp(1.12rem, 1.2vw, 1.34rem);
}

html.ngi-authenticated .site-header .brand small {
  font-size: clamp(0.76rem, 0.84vw, 0.9rem);
}

@media (max-width: 1280px) {
  .site-header .brand {
    flex-basis: 470px;
    max-width: min(620px, 50vw);
  }

  .site-header .brand-mark.logo-mark {
    width: 132px;
    height: 104px;
    flex-basis: 132px;
  }

  .site-header .brand strong {
    font-size: clamp(1.16rem, 1.45vw, 1.42rem);
  }

  .site-header .brand small {
    font-size: clamp(0.8rem, 0.9vw, 0.92rem);
  }

  main {
    padding-top: 166px;
  }
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 124px;
  }

  .site-header .brand,
  html.ngi-authenticated .site-header .brand {
    flex-basis: 390px;
    max-width: min(440px, 50vw);
  }

  .site-header .brand-mark.logo-mark,
  html.ngi-authenticated .site-header .brand-mark.logo-mark {
    width: 108px;
    height: 84px;
    flex-basis: 108px;
  }

  .site-header .brand strong,
  html.ngi-authenticated .site-header .brand strong {
    font-size: 1.08rem;
  }

  .site-header .brand small,
  html.ngi-authenticated .site-header .brand small {
    font-size: 0.76rem;
  }

  main {
    padding-top: 146px;
  }

  html {
    scroll-padding-top: 162px;
  }

  section[id],
  main[id],
  footer[id] {
    scroll-margin-top: 162px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px 14px;
    padding-block: 12px;
  }

  .site-header .brand,
  html.ngi-authenticated .site-header .brand {
    flex: 1 1 100%;
    max-width: 100%;
    order: 1;
  }

  .site-header .brand-mark.logo-mark,
  html.ngi-authenticated .site-header .brand-mark.logo-mark {
    width: 96px;
    height: 74px;
    flex-basis: 96px;
  }

  .site-header .brand strong,
  html.ngi-authenticated .site-header .brand strong {
    font-size: 1.18rem;
  }

  .site-header .brand small,
  html.ngi-authenticated .site-header .brand small {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .language-switcher {
    order: 2;
    flex: 0 1 148px;
  }

  .language-select {
    width: 100%;
  }

  .header-cta {
    order: 3;
    flex: 1 1 172px;
    justify-content: center;
  }

  main {
    padding-top: 158px;
  }

  html {
    scroll-padding-top: 214px;
  }

  section[id],
  main[id],
  footer[id] {
    scroll-margin-top: 214px;
  }
}

@media (max-width: 430px) {
  .site-header .brand,
  html.ngi-authenticated .site-header .brand {
    gap: 12px;
  }

  .site-header .brand-mark.logo-mark,
  html.ngi-authenticated .site-header .brand-mark.logo-mark {
    width: 90px;
    height: 70px;
    flex-basis: 90px;
  }

  .site-header .brand strong,
  html.ngi-authenticated .site-header .brand strong {
    font-size: 1.1rem;
  }

  .site-header .brand small,
  html.ngi-authenticated .site-header .brand small {
    font-size: 0.75rem;
  }
}

/* Authenticated header formatting: keep NGI identity clear and navigation separate */
.site-header {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) auto auto;
  grid-template-areas: "brand language cta";
  align-items: center;
}

.site-header .brand {
  grid-area: brand;
  width: fit-content;
  max-width: min(760px, 58vw);
}

.language-switcher {
  grid-area: language;
}

.header-cta {
  grid-area: cta;
}

.main-nav {
  grid-area: nav;
}

.site-header::after {
  grid-area: role;
  align-self: center;
}

html.ngi-authenticated .site-header {
  grid-template-columns: minmax(420px, auto) 1fr auto auto;
  grid-template-areas:
    "brand . language cta"
    "nav nav nav role";
  row-gap: 12px;
  min-height: 174px;
  align-items: center;
}

html.ngi-authenticated .site-header .brand {
  max-width: 620px;
  width: auto;
}

html.ngi-authenticated .site-header .brand-mark.logo-mark {
  width: 120px;
  height: 94px;
  flex-basis: 120px;
}

html.ngi-authenticated .site-header .brand strong {
  font-size: clamp(1.22rem, 1.35vw, 1.52rem);
  white-space: nowrap;
}

html.ngi-authenticated .site-header .brand small {
  font-size: clamp(0.84rem, 0.9vw, 0.98rem);
  white-space: nowrap;
}

html.ngi-authenticated .main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px clamp(14px, 1.65vw, 24px);
  max-width: 100%;
}

html.ngi-authenticated .main-nav a {
  line-height: 1.15;
}

html.ngi-authenticated main {
  padding-top: 218px;
}

html.ngi-authenticated {
  scroll-padding-top: 232px;
}

html.ngi-authenticated section[id],
html.ngi-authenticated main[id],
html.ngi-authenticated footer[id] {
  scroll-margin-top: 232px;
}

@media (max-width: 1280px) {
  html.ngi-authenticated .site-header {
    grid-template-columns: minmax(360px, auto) 1fr auto auto;
    min-height: 176px;
  }

  html.ngi-authenticated .site-header .brand-mark.logo-mark {
    width: 108px;
    height: 84px;
    flex-basis: 108px;
  }

  html.ngi-authenticated .site-header .brand strong {
    font-size: 1.18rem;
  }

  html.ngi-authenticated .site-header .brand small {
    font-size: 0.8rem;
  }

  html.ngi-authenticated main {
    padding-top: 214px;
  }
}

@media (max-width: 920px) {
  .site-header,
  html.ngi-authenticated .site-header {
    display: flex;
  }

  html.ngi-authenticated main {
    padding-top: 260px;
  }
}

/* Mobile authenticated header order: NGI identity first, navigation after controls */
@media (max-width: 920px) {
  html.ngi-authenticated .site-header {
    align-items: center;
    justify-content: flex-start;
    gap: 12px 14px;
  }

  html.ngi-authenticated .site-header .brand {
    order: 1;
  }

  html.ngi-authenticated .language-switcher {
    order: 2;
  }

  html.ngi-authenticated .header-cta {
    order: 3;
  }

  html.ngi-authenticated .main-nav {
    order: 4;
    display: flex;
    flex: 1 1 100%;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(45, 64, 59, 0.12);
  }
}
/* Homepage hero truck visibility adjustment */
.home-page .hero-media {
  background-size: 124% auto;
  background-position: 12% center;
}

@media (max-width: 920px) {
  .home-page .hero-media {
    background-size: 150% auto;
    background-position: 18% center;
  }
}

@media (max-width: 640px) {
  .home-page .hero-media {
    background-size: 190% auto;
    background-position: 24% center;
  }
}

/* Transportation-forward hero framing: trucks dominate, multimodal capacity remains visible */
.hero-media,
.page-hero .hero-media,
.home-page .hero-media,
.login-page .login-hero .hero-media,
.manuals-hero .hero-media {
  background-image: url("assets/hero-multimodal-brokerage-v3.png");
  background-position: 68% 35%;
  background-size: cover;
}

.home-page .hero-media {
  background-size: 100% auto;
  background-position: 68% 35%;
}

@media (max-width: 920px) {
  .hero-media,
  .page-hero .hero-media,
  .home-page .hero-media,
  .login-page .login-hero .hero-media,
  .manuals-hero .hero-media {
    background-size: 150% auto;
    background-position: 64% 34%;
  }
}

@media (max-width: 640px) {
  .hero-media,
  .page-hero .hero-media,
  .home-page .hero-media,
  .login-page .login-hero .hero-media,
  .manuals-hero .hero-media {
    background-size: 210% auto;
    background-position: 60% 34%;
  }
}

/* No-whitewash transportation hero visibility: full plane, trucks, city, port, rail, and command screens */
.hero-media,
.page-hero .hero-media,
.home-page .hero-media,
.login-page .login-hero .hero-media,
.manuals-hero .hero-media {
  background-image: url("assets/hero-multimodal-brokerage-v2.png");
  background-size: 138% auto;
  background-position: 80% 24%;
  filter: saturate(1.28) contrast(1.28) brightness(0.92);
}

.page-hero .hero-media,
.home-page .hero-media {
  height: clamp(430px, 39vw, 560px);
}

@media (max-width: 920px) {
  .hero-media,
  .page-hero .hero-media,
  .home-page .hero-media,
  .login-page .login-hero .hero-media,
  .manuals-hero .hero-media {
    background-size: 205% auto;
    background-position: 74% 16%;
    height: clamp(340px, 72vw, 520px);
  }
}

@media (max-width: 640px) {
  .hero-media,
  .page-hero .hero-media,
  .home-page .hero-media,
  .login-page .login-hero .hero-media,
  .manuals-hero .hero-media {
    background-size: 255% auto;
    background-position: 72% 18%;
    height: clamp(300px, 84vw, 430px);
  }
}
/* Future-forward NGI motto and vision blocks */
.motto-line,
.footer-motto {
  color: #b36f22;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: none;
}

.motto-line {
  margin: 12px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.motto-line.compact {
  color: #28606a;
  max-width: 460px;
}

.public-vision-note {
  margin: 16px 0 0;
  padding: 16px 18px;
  border-left: 4px solid #b36f22;
  background: rgba(255, 252, 246, 0.88);
  color: #21363a;
  font-weight: 700;
}

.footer-motto {
  margin: 12px 0 0;
  color: #f0cf94;
}

.vision-statement {
  margin: 24px 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(179, 111, 34, 0.24);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(235, 246, 246, 0.94));
  box-shadow: 0 22px 45px rgba(17, 33, 46, 0.08);
}

.vision-statement span {
  display: block;
  margin-bottom: 10px;
  color: #28606a;
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.vision-statement p {
  margin: 0;
  color: #102033;
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  font-weight: 900;
  line-height: 1.32;
}

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

.objective-grid article {
  padding: 18px;
  border: 1px solid rgba(45, 64, 59, 0.13);
  border-radius: 8px;
  background: #ffffff;
}

.objective-grid strong {
  display: block;
  color: #102033;
  font-size: 1rem;
}

.objective-grid p {
  margin: 8px 0 0;
  color: #44575c;
}

@media (max-width: 760px) {
  .objective-grid {
    grid-template-columns: 1fr;
  }
}
/* Final no-crop multimodal freight visual framing: preserves full trucks, plane, city, port, rail, desk computers, wall monitors, and command-center screens without distortion */
.hero-media,
.page-hero .hero-media,
.home-page .hero-media,
.login-page .login-hero .hero-media,
.manuals-hero .hero-media {
  background-image: url("assets/hero-multimodal-brokerage-v2.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #e8f1ef;
  transform: none;
  filter: saturate(1.22) contrast(1.18) brightness(0.98);
}

.hero,
.page-hero,
.login-page .login-hero,
.manuals-hero {
  background: linear-gradient(135deg, #e8f1ef 0%, #f8fbfa 54%, #d9e9e6 100%);
}

@media (max-width: 920px) {
  .hero-media,
  .page-hero .hero-media,
  .home-page .hero-media,
  .login-page .login-hero .hero-media,
  .manuals-hero .hero-media {
    background-size: contain;
    background-position: center center;
  }
}

@media (max-width: 640px) {
  .hero-media,
  .page-hero .hero-media,
  .home-page .hero-media,
  .login-page .login-hero .hero-media,
  .manuals-hero .hero-media {
    background-size: contain;
    background-position: center center;
  }
}
/* Legal shield footer notice */
.footer-contract-notice {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-contract-notice strong {
  color: #ffffff;
}
/* Public Lobby Trust Pack and self-enforcing portal controls */
.public-trust-pack {
  background: linear-gradient(135deg, #f8fbfa 0%, #eef6f2 100%);
}

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

.download-card.pending {
  opacity: 0.82;
}

.download-link.disabled {
  color: #647477;
  border-color: rgba(100, 116, 119, 0.32);
  cursor: not-allowed;
}

.tactical-red-card {
  border-color: rgba(183, 33, 43, 0.42);
  background: linear-gradient(135deg, rgba(183, 33, 43, 0.10), rgba(255, 187, 92, 0.16));
}

.tactical-red-card h3 {
  color: #8f1720;
}

@media (max-width: 820px) {
  .trust-pack-grid {
    grid-template-columns: 1fr;
  }
}
/* SEO Lobby, Trust Pack, and self-enforcing compliance engine */
.insights-page .page-hero .hero-media {
  background-image: url("assets/hero-brokerage-command.png");
}

.trust-pack-actions {
  margin: 20px 0 0;
}

.button.disabled,
.button[aria-disabled="true"] {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
}

.self-enforcing-controls .info-card {
  min-height: 100%;
}
/* Final public preview correction: fill the full hero width without cropping the primary image.
   The first image preserves the full multimodal scene; the second image fills any side space behind it. */
.home-page .hero,
.public-landing .hero {
  background: #102c34;
}
.home-page .hero-media,
.public-landing .hero-media {
  background-image: url("assets/hero-multimodal-brokerage-v2.png"), url("assets/hero-multimodal-brokerage-v2.png");
  background-size: contain, cover;
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-color: #102c34;
}
@media (max-width: 920px) {
  .home-page .hero-media,
  .public-landing .hero-media {
    background-size: contain, cover;
  }
}

.login-safe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* Final homepage hero crop: remove left-side white fade and fill the view with the freight visual. */
.home-page .hero-media,
.public-landing.home-page .hero-media {
  background-image: url("assets/hero-multimodal-brokerage-v2.png");
  background-size: cover;
  background-position: 68% center;
  background-repeat: no-repeat;
  background-color: #102c34;
  min-height: clamp(560px, 62vw, 860px);
}
@media (max-width: 920px) {
  .home-page .hero-media,
  .public-landing.home-page .hero-media {
    background-size: cover;
    background-position: 64% center;
  }
}
@media (max-width: 640px) {
  .home-page .hero-media,
  .public-landing.home-page .hero-media {
    background-size: cover;
    background-position: 61% center;
  }
}

/* Protected credential request gate */
.credential-gate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: 26px;
}

.credential-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.1);
}

.credential-card.request-card {
  border-top-color: var(--green);
}

.credential-card h3 {
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
}

.credential-form {
  display: grid;
  gap: 14px;
}

.credential-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.credential-form input,
.credential-form select,
.credential-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c9d3dd;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.credential-form textarea {
  resize: vertical;
}

.credential-form .checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.credential-form .checkbox-field input {
  width: auto;
  min-height: 0;
  margin-top: 5px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 900;
}

.login-safe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 920px) {
  .credential-gate-grid {
    grid-template-columns: 1fr;
  }
}

/* Public online onboarding intake */
.online-onboarding-section {
  padding: clamp(64px, 8vw, 96px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #eef6f7 100%);
}

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

.onboarding-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-top: 5px solid var(--green);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.09);
}

.onboarding-card:nth-child(2) {
  border-top-color: var(--gold);
}

.onboarding-card:nth-child(3) {
  border-top-color: var(--red);
}

.onboarding-card:nth-child(4) {
  border-top-color: var(--navy);
}

.onboarding-card h3 {
  color: var(--navy);
  font-size: clamp(1.32rem, 2vw, 1.65rem);
}

.onboarding-card p {
  margin: 0;
  color: var(--muted);
}

.anti-spam-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

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

/* Final live review polish: edge-to-edge hero visual and unclipped official logo. */
.home-page .hero,
.public-landing.home-page .hero {
  width: 100%;
  max-width: none;
  background: #0b2c35;
}

.home-page .hero-media,
.public-landing.home-page .hero-media {
  background-image: url("assets/hero-multimodal-brokerage-v1.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0b2c35;
  transform: none;
  min-height: clamp(560px, 62vw, 860px);
}

.home-page .hero-overlay,
.public-landing.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 31, 44, 0.36) 0%, rgba(8, 31, 44, 0.16) 32%, rgba(8, 31, 44, 0.04) 64%, rgba(8, 31, 44, 0) 100%),
    linear-gradient(180deg, rgba(8, 31, 44, 0.06) 0%, rgba(8, 31, 44, 0) 52%, rgba(8, 31, 44, 0.08) 100%);
}

.site-header .brand-mark.logo-mark,
.site-header.is-scrolled .brand-mark.logo-mark,
body:not(.home-page) .site-header .brand-mark.logo-mark {
  width: 154px;
  height: 154px;
  flex-basis: 154px;
  padding: 14px;
  overflow: visible;
  border-radius: 10px;
}

.site-header .brand-mark.logo-mark img,
.footer-brand .brand-mark.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.site-header {
  min-height: 180px;
}

.site-header.is-scrolled,
body:not(.home-page) .site-header {
  min-height: 170px;
}

main {
  padding-top: 214px;
}

html {
  scroll-padding-top: 228px;
}

section[id],
main[id],
footer[id] {
  scroll-margin-top: 228px;
}

.footer-brand .brand-mark.logo-mark {
  width: 82px;
  height: 82px;
  flex-basis: 82px;
  padding: 8px;
  overflow: visible;
}

@media (max-width: 1120px) {
  .site-header .brand-mark.logo-mark,
  .site-header.is-scrolled .brand-mark.logo-mark,
  body:not(.home-page) .site-header .brand-mark.logo-mark {
    width: 126px;
    height: 126px;
    flex-basis: 126px;
    padding: 10px;
  }

  .site-header {
    min-height: 152px;
  }

  main {
    padding-top: 178px;
  }
}

@media (max-width: 760px) {
  .site-header .brand-mark.logo-mark,
  .site-header.is-scrolled .brand-mark.logo-mark,
  body:not(.home-page) .site-header .brand-mark.logo-mark {
    width: 102px;
    height: 102px;
    flex-basis: 102px;
    padding: 8px;
  }

  .site-header {
    min-height: 0;
  }

  main {
    padding-top: 188px;
  }
}

/* Final photo quality pass: keep every public page colorful, polished, and logistics-forward. */
.login-page .login-hero .hero-media {
  background-image: url("assets/hero-brokerage-command.png");
  background-size: cover;
  background-position: center center;
}

.insights-page .page-hero .hero-media {
  background-image: url("assets/hero-multimodal-brokerage-v3.png");
  background-size: cover;
  background-position: 62% center;
}

.privacy-page .page-hero .hero-media,
.accessibility-page .page-hero .hero-media {
  background-image: url("assets/hero-bright-logistics.png");
  background-size: cover;
  background-position: center center;
}

body:not(.home-page) .page-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 31, 44, 0.72) 0%, rgba(8, 31, 44, 0.44) 46%, rgba(8, 31, 44, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 31, 44, 0.20) 0%, rgba(8, 31, 44, 0.10) 48%, rgba(8, 31, 44, 0.34) 100%);
}

/* Final header identity: official three-line NGI credential block. */
.site-header .brand-text {
  gap: 4px;
}

.site-header .brand-service-line,
.site-header .brand-credentials-line {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: none;
}

body.home-page .site-header:not(.is-scrolled) .brand-service-line,
body.home-page .site-header:not(.is-scrolled) .brand-credentials-line {
  color: rgba(255, 255, 255, 0.88);
}

.site-header.is-scrolled .brand-service-line,
.site-header.is-scrolled .brand-credentials-line,
body:not(.home-page) .site-header .brand-service-line,
body:not(.home-page) .site-header .brand-credentials-line {
  color: rgba(255, 255, 255, 0.84);
}

.site-header .brand-service-line {
  font-size: clamp(0.82rem, 0.9vw, 0.98rem);
  line-height: 1.18;
}

.site-header .brand-credentials-line {
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  line-height: 1.12;
}

@media (max-width: 760px) {
  .site-header .brand-service-line {
    white-space: normal;
    font-size: 0.78rem;
  }

  .site-header .brand-credentials-line {
    white-space: nowrap;
    font-size: 0.76rem;
  }
}

/* Final header contrast fix: make brokerage line and MC/USDOT credentials clearly readable. */
.site-header .brand strong {
  color: #142a28;
  text-shadow: none;
}

.site-header .brand-service-line,
.site-header .brand-credentials-line,
body.home-page .site-header:not(.is-scrolled) .brand-service-line,
body.home-page .site-header:not(.is-scrolled) .brand-credentials-line,
.site-header.is-scrolled .brand-service-line,
.site-header.is-scrolled .brand-credentials-line,
body:not(.home-page) .site-header .brand-service-line,
body:not(.home-page) .site-header .brand-credentials-line {
  color: #42524f;
  text-shadow: none;
}

.site-header.is-scrolled .brand strong,
body:not(.home-page) .site-header .brand strong {
  color: #ffffff;
}

.site-header.is-scrolled .brand-service-line,
.site-header.is-scrolled .brand-credentials-line,
body:not(.home-page) .site-header .brand-service-line,
body:not(.home-page) .site-header .brand-credentials-line {
  color: rgba(255, 255, 255, 0.92);
}

/* Final executive header readability: avoid white text on gray and keep NGI identity crisp. */
.site-header,
body.home-page .site-header,
body.home-page .site-header:not(.is-scrolled),
body:not(.home-page) .site-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 248, 0.96) 100%) !important;
  color: #142a28 !important;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.12) !important;
}

.site-header .brand strong,
body.home-page .site-header .brand strong,
body:not(.home-page) .site-header .brand strong,
.site-header.is-scrolled .brand strong {
  color: #142a28 !important;
  text-shadow: none !important;
}

.site-header .brand-service-line,
.site-header .brand-credentials-line,
body.home-page .site-header .brand-service-line,
body.home-page .site-header .brand-credentials-line,
body:not(.home-page) .site-header .brand-service-line,
body:not(.home-page) .site-header .brand-credentials-line,
.site-header.is-scrolled .brand-service-line,
.site-header.is-scrolled .brand-credentials-line {
  color: #3f5250 !important;
  text-shadow: none !important;
}

.site-header .main-nav a {
  color: #1f3532 !important;
}

.site-header .main-nav a:hover,
.site-header .main-nav a[aria-current="page"] {
  color: #0b6f8f !important;
}

.site-header .header-cta {
  background: #233a36 !important;
  color: #ffffff !important;
  border-color: #233a36 !important;
  box-shadow: 0 14px 32px rgba(35, 58, 54, 0.22) !important;
}

.site-header .language-select {
  background: #ffffff !important;
  color: #142a28 !important;
  border-color: rgba(20, 42, 40, 0.22) !important;
}

/* Final hero text contrast: keep all homepage words readable over the multimodal image. */
.home-page .hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 5vw, 72px);
  margin-right: auto;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(6, 24, 36, 0.86) 0%, rgba(13, 48, 60, 0.74) 100%);
  box-shadow: 0 24px 58px rgba(6, 24, 36, 0.24);
  backdrop-filter: blur(8px);
}

.home-page .hero .eyebrow,
.public-landing.home-page .hero .eyebrow {
  color: #ffd27a !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.46);
}

.home-page .hero h1,
.public-landing.home-page .hero h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.46);
}

.home-page .hero-copy,
.home-page .leader-line,
.home-page .motto-line,
.public-landing.home-page .hero-copy,
.public-landing.home-page .leader-line,
.public-landing.home-page .motto-line {
  color: rgba(255, 255, 255, 0.96) !important;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.42);
}

.home-page .hero-overlay,
.public-landing.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 18, 27, 0.34) 0%, rgba(4, 18, 27, 0.12) 34%, rgba(4, 18, 27, 0.02) 70%, rgba(4, 18, 27, 0) 100%),
    linear-gradient(180deg, rgba(4, 18, 27, 0.02) 0%, rgba(4, 18, 27, 0) 58%, rgba(4, 18, 27, 0.12) 100%);
}

@media (max-width: 760px) {
  .home-page .hero-content {
    width: min(calc(100% - 28px), 720px);
    margin: 0 auto;
    padding: 24px;
  }
}

/* Final navigation safety: visible Home button and direct protected-access login route. */
.header-actions {
  grid-area: cta;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.header-actions .header-cta,
.header-actions .home-cta {
  grid-area: auto;
}

.home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(20, 42, 40, 0.22);
  border-radius: 6px;
  background: #ffffff;
  color: #142a28 !important;
  font-weight: 1000;
  box-shadow: 0 12px 28px rgba(7, 31, 53, 0.08);
}

.home-cta:hover {
  color: #0b6f8f !important;
}

@media (max-width: 760px) {
  .header-actions {
    order: 3;
    flex: 1 1 100%;
    justify-content: stretch;
  }

  .header-actions .home-cta,
  .header-actions .header-cta {
    flex: 1 1 148px;
  }
}

/* Final homepage leader/motto contrast: readable badges over any photo tone. */
.home-page .leader-line,
.public-landing.home-page .leader-line {
  display: inline-block;
  max-width: 720px;
  padding: 10px 13px;
  border-left: 4px solid #ffd27a;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: #142a28 !important;
  text-shadow: none !important;
}

.home-page .motto-line,
.public-landing.home-page .motto-line {
  display: inline-block;
  max-width: 620px;
  padding: 9px 13px;
  border-radius: 6px;
  background: rgba(255, 236, 191, 0.96);
  color: #5f3500 !important;
  text-shadow: none !important;
}

/* Final mobile/tablet header polish: compact buttons, no stretched Home/Login controls. */
.label-short {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand brand"
      "language cta";
    gap: 10px 12px;
    align-items: center;
    justify-content: stretch;
    padding: 12px 16px !important;
  }

  .site-header .brand {
    grid-area: brand;
    max-width: 100% !important;
    width: 100%;
    min-width: 0;
  }

  .site-header .brand-mark.logo-mark,
  .site-header.is-scrolled .brand-mark.logo-mark,
  body:not(.home-page) .site-header .brand-mark.logo-mark {
    width: 88px;
    height: 88px;
    flex-basis: 88px;
    padding: 7px;
  }

  .site-header .brand strong {
    font-size: clamp(1.08rem, 4.8vw, 1.34rem) !important;
  }

  .site-header .brand-service-line {
    font-size: clamp(0.72rem, 3.1vw, 0.9rem) !important;
    white-space: normal !important;
  }

  .site-header .brand-credentials-line {
    font-size: clamp(0.72rem, 3vw, 0.88rem) !important;
    white-space: nowrap !important;
  }

  .language-switcher {
    grid-area: language;
    width: min(168px, 42vw);
    order: initial !important;
    flex: none !important;
  }

  .language-select {
    min-height: 42px;
    width: 100%;
    padding: 8px 34px 8px 11px;
    font-size: 0.9rem;
  }

  .header-actions {
    grid-area: cta;
    justify-self: end;
    display: inline-flex;
    flex: none !important;
    width: auto !important;
    gap: 8px;
    justify-content: flex-end !important;
    align-items: center;
    order: initial !important;
  }

  .header-actions .home-cta,
  .header-actions .header-cta {
    flex: 0 0 auto !important;
    min-height: 42px;
    width: auto !important;
    padding: 8px 12px;
    white-space: nowrap;
    font-size: 0.9rem;
  }

  .header-actions .header-cta .label-full {
    display: none;
  }

  .header-actions .header-cta .label-short {
    display: inline;
  }

  main {
    padding-top: 176px !important;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "language"
      "cta";
  }

  .language-switcher {
    width: 100%;
  }

  .header-actions {
    justify-self: start;
    width: 100% !important;
  }

  .header-actions .home-cta,
  .header-actions .header-cta {
    padding-inline: 13px;
  }

  main {
    padding-top: 222px !important;
  }
}

/* Public strategy section: goals, vision, and objectives without exposing protected workflows. */
.public-strategy {
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 52%, #fff8e8 100%);
}

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

.strategy-grid article {
  min-height: 235px;
  padding: 22px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-top: 5px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 38px rgba(16, 32, 51, 0.08);
}

.strategy-grid article:nth-child(2n) { border-top-color: var(--gold); }
.strategy-grid article:nth-child(3n) { border-top-color: var(--red); }

.strategy-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.strategy-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.18;
}

.strategy-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

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

  .strategy-grid article {
    min-height: auto;
  }
}

/* Final official NGI logo treatment: transparent mark, no white card, larger display. */
.site-header .brand-mark.logo-mark,
.site-header.is-scrolled .brand-mark.logo-mark,
body:not(.home-page) .site-header .brand-mark.logo-mark,
.footer-brand .brand-mark.logo-mark {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.site-header .brand-mark.logo-mark,
.site-header.is-scrolled .brand-mark.logo-mark,
body:not(.home-page) .site-header .brand-mark.logo-mark {
  width: clamp(132px, 10vw, 188px) !important;
  height: clamp(132px, 10vw, 188px) !important;
  flex: 0 0 clamp(132px, 10vw, 188px) !important;
}

.site-header .brand-mark.logo-mark img,
.footer-brand .brand-mark.logo-mark img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 14px 24px rgba(8, 31, 44, 0.16));
}

.footer-brand .brand-mark.logo-mark {
  width: 94px !important;
  height: 94px !important;
  flex: 0 0 94px !important;
}

@media (max-width: 900px) {
  .site-header .brand-mark.logo-mark,
  .site-header.is-scrolled .brand-mark.logo-mark,
  body:not(.home-page) .site-header .brand-mark.logo-mark {
    width: 112px !important;
    height: 112px !important;
    flex-basis: 112px !important;
  }
}

@media (max-width: 560px) {
  .site-header .brand-mark.logo-mark,
  .site-header.is-scrolled .brand-mark.logo-mark,
  body:not(.home-page) .site-header .brand-mark.logo-mark {
    width: 96px !important;
    height: 96px !important;
    flex-basis: 96px !important;
  }

  .footer-brand .brand-mark.logo-mark {
    width: 76px !important;
    height: 76px !important;
    flex-basis: 76px !important;
  }
}

