:root {
  --ink: #17202a;
  --muted: #53606d;
  --line: #dfe6ec;
  --panel: #f6f8fb;
  --panel-strong: #eef4fb;
  --brand: #0b4fb3;
  --brand-dark: #12315f;
  --accent: #d6402b;
  --hoson-red: #b9362b;
  --hoson-red-dark: #8f2a22;
  --gold: #f0b83a;
  --white: #ffffff;
  --shadow: 0 16px 45px rgba(23, 32, 42, 0.11);
}

* {
  box-sizing: border-box;
}

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

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

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

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

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-lockup img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-lockup-wide img {
  width: 164px;
  height: auto;
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.button.secondary {
  background: var(--white);
  color: var(--brand);
}

.hero {
  padding: 72px 0 58px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(246, 248, 245, 0.68) 100%),
    url("assets/wire-baskets.jpg") center right / cover no-repeat;
}

.decision-hero {
  padding: 64px 0 50px;
  background:
    linear-gradient(105deg, rgba(246, 248, 251, 0.98) 0%, rgba(246, 248, 251, 0.94) 53%, rgba(255, 255, 255, 0.78) 100%),
    url("assets/wire-baskets.jpg") center right / cover no-repeat;
}

.homepage-hero {
  padding: 68px 0 58px;
  background:
    linear-gradient(105deg, rgba(246, 248, 251, 0.99) 0%, rgba(246, 248, 251, 0.94) 48%, rgba(255, 255, 255, 0.72) 100%),
    url("assets/home-hero-cart-rows.jpg") center right / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: end;
}

.homepage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 0.86fr);
  gap: 46px;
  align-items: center;
}

.decision-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.82fr);
  align-items: center;
}

.hero-copy-block {
  max-width: 780px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
}

h1 {
  margin-top: 14px;
  max-width: 780px;
  font-size: 58px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 21px;
}

.lead {
  margin: 22px 0 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 19px;
}

.nav-cta {
  min-height: 40px;
  padding: 0 16px;
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 8px 18px rgba(11, 79, 179, 0.14);
  white-space: nowrap;
}

.nav-cta:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

.homepage-hero-v3 {
  padding: 62px 0 52px;
  background:
    linear-gradient(105deg, rgba(247, 249, 252, 0.99) 0%, rgba(247, 249, 252, 0.96) 52%, rgba(255, 255, 255, 0.72) 100%),
    url("assets/service-container-loaded-wide.jpg") center right / cover no-repeat;
}

.homepage-hero-grid-v3 {
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  gap: 42px;
}

.hero-evidence-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-evidence-card figure {
  margin: 0;
}

.hero-evidence-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
}

.hero-evidence-card figcaption {
  padding: 11px 16px;
  color: var(--muted);
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-proof-row div {
  min-height: 98px;
  padding: 18px;
}

.hero-proof-row div + div {
  border-left: 1px solid var(--line);
}

.hero-proof-row strong {
  display: block;
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1.2;
}

.hero-proof-row span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.intro-strip {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.intro-strip-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.intro-strip h2 {
  font-size: 28px;
}

.intro-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.service-core-grid article {
  min-height: 285px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
}

.service-core-grid article:nth-child(2) {
  background: var(--panel-strong);
  border-color: rgba(11, 79, 179, 0.22);
}

.service-core-grid span,
.workflow-v3 span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.service-core-grid h3 {
  margin-top: 18px;
  font-size: 25px;
}

.service-core-grid p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.material-entry {
  display: grid;
  grid-template-rows: 190px minmax(190px, auto);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.material-entry:hover {
  border-color: rgba(11, 79, 179, 0.34);
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.08);
}

.material-entry img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.material-entry div {
  padding: 20px;
}

.material-entry h3 {
  font-size: 20px;
}

.material-entry p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.product-showcase-card {
  display: grid;
  grid-template-rows: 210px minmax(168px, auto);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-showcase-card:hover {
  border-color: rgba(11, 79, 179, 0.34);
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.08);
}

.product-showcase-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
}

.product-showcase-card div {
  padding: 18px;
}

.product-showcase-card h3 {
  font-size: 19px;
}

.product-showcase-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.product-showcase-card:nth-child(2) img,
.product-showcase-card:nth-child(5) img,
.product-showcase-card:nth-child(7) img {
  object-position: center top;
}

.evidence-section {
  scroll-margin-top: 90px;
}

.evidence-split-v3 {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.08fr);
}

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

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

.proof-gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: top center;
}

.proof-gallery .proof-large {
  grid-column: 1 / -1;
}

.proof-gallery .proof-large img {
  height: 340px;
}

.proof-gallery figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  background: var(--white);
}

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

.workflow-v3 article {
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
}

.workflow-v3 h3 {
  margin-top: 16px;
  font-size: 20px;
}

.workflow-v3 p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

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

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

.send-grid article {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.send-grid h3 {
  font-size: 20px;
}

.send-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 32px;
  align-items: center;
}

.final-cta .container {
  display: grid;
}

.final-cta .direct-email {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.final-cta .direct-email a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.final-actions .button {
  width: 100%;
}

.final-actions span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.buyer-fit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.buyer-fit span {
  border: 1px solid rgba(11, 79, 179, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
}

.hero-evidence {
  display: grid;
  gap: 14px;
}

.evidence-main,
.report-showcase {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.evidence-main img {
  width: 100%;
  height: 365px;
  object-fit: cover;
  object-position: top center;
}

.evidence-main figcaption,
.report-showcase figcaption {
  padding: 11px 14px;
  color: var(--muted);
  font-size: 12px;
  background: var(--white);
}

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

.evidence-grid img {
  width: 100%;
  height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-media-panel {
  display: grid;
  gap: 14px;
}

.hero-photo-main,
.hero-photo-grid figure,
.evidence-stack figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-photo-main img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

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

.hero-photo-grid img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  object-position: center;
}

.hero-photo-grid figure:nth-child(2) img {
  object-position: top center;
}

.hero-photo-main figcaption,
.hero-photo-grid figcaption,
.evidence-stack figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  background: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 700px;
}

.stat {
  border: 1px solid rgba(29, 107, 79, 0.18);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 15px;
}

.stat strong {
  display: block;
  color: var(--brand);
  font-size: 24px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.hero-note {
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}

.hero-note p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

.compact-section {
  padding-top: 58px;
}

.section.alt {
  background: var(--panel);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
}

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

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

.decision-card {
  min-height: 245px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.decision-card strong {
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
}

.decision-card h3 {
  margin-top: 12px;
}

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

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

.audience-card-v2 {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.audience-card-v2 img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.audience-card-v2 div {
  padding: 22px;
}

.audience-card-v2 strong,
.service-image-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.audience-card-v2 h3 {
  margin-top: 10px;
  font-size: 22px;
}

.audience-card-v2 p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.service-image-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-image-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
}

.service-image-grid article:nth-child(3) img {
  object-position: top center;
}

.service-image-grid div {
  padding: 20px;
}

.service-image-grid h3 {
  margin-top: 10px;
  font-size: 20px;
}

.service-image-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.supplier-network {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

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

.material-grid article,
.category-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.material-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.material-grid h3,
.material-grid p {
  padding-left: 18px;
  padding-right: 18px;
}

.material-grid h3 {
  margin-top: 18px;
}

.material-grid p {
  margin: 9px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.problem-solution {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.problem-list {
  display: grid;
  gap: 12px;
}

.problem-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.problem-row span,
.workflow article span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
}

.problem-row h3 {
  font-size: 19px;
}

.problem-row p {
  margin: 7px 0 0;
  color: var(--muted);
}

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

.workflow article {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
}

.workflow article::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -14px;
  width: 14px;
  border-top: 1px solid var(--line);
}

.workflow article:last-child::after {
  display: none;
}

.workflow h3 {
  margin-top: 18px;
  font-size: 20px;
}

.workflow p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

.card,
.feature,
.product {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.card {
  padding: 24px;
}

.feature {
  padding: 26px;
}

.feature strong {
  color: var(--brand);
}

.product img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: var(--panel);
}

.product div {
  padding: 20px;
}

.product p,
.card p,
.feature p {
  color: var(--muted);
  margin: 10px 0 0;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  border-top: 1px solid var(--line);
  padding: 10px 0;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.process li {
  list-style: none;
  counter-increment: step;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.process li::before {
  content: counter(step, decimal-leading-zero);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
}

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

.evidence-split {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}

.split img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.text-link {
  color: var(--brand);
  font-weight: 700;
}

.report-showcase img {
  width: 100%;
  height: 560px;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
}

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

.evidence-stack > figure img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: top center;
}

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

.evidence-stack > div img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

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

.category-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.category-grid h3 {
  min-height: 76px;
  padding: 16px;
  font-size: 17px;
  line-height: 1.2;
}

.north-america img {
  height: 430px;
  object-fit: cover;
}

.product-entry-grid .product img {
  height: 260px;
}

.product-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.product-jump-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(11, 79, 179, 0.22);
  border-radius: 6px;
  background: var(--white);
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  padding: 0 13px;
}

.product-jump-nav a:hover {
  border-color: var(--brand);
  background: var(--panel-strong);
}

.product-material-section {
  scroll-margin-top: 92px;
}

.about-main-split img {
  height: 430px;
  object-position: center;
}

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

.social-note {
  margin: 18px 0 0;
  color: var(--muted);
}

.social-gallery {
  display: grid;
  gap: 12px;
}

.social-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.social-gallery img {
  width: 100%;
  object-fit: cover;
}

.social-gallery-main img {
  height: 300px;
  object-position: center;
}

.social-gallery-main figcaption {
  padding: 10px 13px;
  color: var(--muted);
  font-size: 12px;
}

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

.social-gallery-pair img {
  height: 180px;
  object-position: center;
}

.brand-structure {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

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

.role-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.role-grid img {
  width: 170px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.role-grid h3 {
  margin-top: 18px;
}

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

.quote-band {
  background: var(--brand-dark);
  color: var(--white);
  padding: 44px 0;
}

.quote-band .container {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.quote-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.page-hero {
  padding: 58px 0;
  background: var(--panel-strong);
}

.page-hero h1 {
  font-size: 50px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

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

.table th {
  background: var(--panel);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.contact-box a {
  color: var(--brand);
  font-weight: 700;
}

.contact-request-box h2 {
  max-width: 720px;
  font-size: 32px;
}

.contact-lead {
  max-width: 760px;
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 18px;
}

.simple-request-list {
  display: grid;
  gap: 12px;
}

.simple-request-list article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.simple-request-list span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--panel-strong);
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
}

.simple-request-list h3 {
  font-size: 20px;
}

.simple-request-list p {
  margin: 7px 0 0;
  color: var(--muted);
}

.contact-email-panel {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(11, 79, 179, 0.18);
  border-radius: 8px;
  background: var(--panel-strong);
  padding: 18px;
}

.contact-email-panel strong {
  display: block;
  color: var(--brand-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-email-panel a {
  display: inline-block;
  margin-top: 4px;
  font-size: 18px;
}

.contact-email-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-primary-action,
.contact-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.contact-primary-action {
  min-width: 220px;
  border: 1px solid var(--brand);
  background: #f7fbff;
  color: var(--brand);
}

.contact-secondary-action {
  min-width: 190px;
  border: 1px solid var(--brand);
  background: #ffffff;
  color: var(--brand);
}

.contact-primary-action span,
.contact-secondary-action span {
  display: inline-block;
  color: inherit;
  opacity: 1;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-grid,
  .split,
  .grid-2,
  .contact-grid,
  .decision-hero-grid,
  .homepage-hero-grid,
  .problem-solution,
  .brand-structure,
  .supplier-network,
  .homepage-hero-grid-v3,
  .intro-strip-grid,
  .about-preview,
  .social-responsibility-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .stats,
  .decision-grid,
  .audience-grid-v2,
  .service-image-grid,
  .workflow,
  .role-grid,
  .category-grid,
  .service-core-grid,
  .material-entry-grid,
  .product-showcase-grid,
  .workflow-v3,
  .send-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .quote-band .container,
  .footer .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .brand-lockup-wide img {
    width: 140px;
  }

  .social-gallery-main img,
  .social-gallery-pair img {
    height: 260px;
  }

  .social-gallery-pair {
    grid-template-columns: 1fr;
  }

  .evidence-main img,
  .report-showcase img {
    height: 360px;
  }

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

  .hero-photo-main img {
    height: 300px;
  }

  .hero-photo-grid,
  .material-grid,
  .evidence-stack > div {
    grid-template-columns: 1fr;
  }

  .service-image-grid img,
  .category-grid img {
    height: 220px;
  }

  .evidence-stack > figure img {
    height: 360px;
  }

  .north-america img {
    height: 300px;
  }

  .hero-evidence-card img,
  .proof-gallery .proof-large img {
    height: 300px;
  }

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

  .hero-proof-row div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .material-entry {
    grid-template-rows: 220px auto;
  }

  .material-entry img,
  .product-showcase-card img,
  .proof-gallery img {
    height: 220px;
  }

  .product-showcase-card {
    grid-template-rows: 220px auto;
  }

  .workflow article {
    min-height: auto;
  }

  .workflow-v3 article,
  .service-core-grid article,
  .send-grid article {
    min-height: auto;
  }

  .workflow article::after {
    display: none;
  }

  .problem-row {
    grid-template-columns: 48px minmax(0, 1fr);
  }

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