:root {
  --navy: #071f41;
  --navy-2: #002d59;
  --blue: #004080;
  --orange: #ff5a12;
  --green: #28a745;
  --ink: #10233d;
  --muted: #66758a;
  --soft: #f8fafc;
  --line: #dfe7f1;
  --white: #fff;
  --shadow: 0 24px 60px rgba(6, 29, 59, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.wrap { width: min(1200px, calc(100% - 42px)); margin: 0 auto; }
.serif { font-family: Cambria, Georgia, "Times New Roman", serif; letter-spacing: 0; }
.orange { color: var(--orange); }
.green { color: var(--green); }
.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #edf1f6;
  backdrop-filter: blur(12px);
}
.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  color: var(--navy);
  font-weight: 900;
}
.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-name { font-size: 18px; letter-spacing: 0; }
.brand-name, .links a { white-space: nowrap; }
.links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
}
.links a { color: #15263d; }
.links a:hover, .links .active { color: var(--orange); }
.links .active { position: relative; }
.links .active:after {
  content: none;
  display: none;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 74px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 74px;
}
.has-dropdown > .nav-link {
  gap: 6px;
}
.has-dropdown > .nav-link:before {
  content: "";
  order: 2;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: .72;
}
.nav-dropdown {
  position: absolute;
  left: 50%;
  top: calc(100% - 8px);
  z-index: 70;
  display: none;
  min-width: 210px;
  padding: 8px;
  border: 1px solid #dce6f1;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7,31,65,.12);
  transform: translateX(-50%);
}
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 4px;
  color: #15263d;
  font-size: 13px;
  line-height: 1.25;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: #f5f8fc;
  color: var(--orange);
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  display: grid;
  gap: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.language {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  height: 42px;
  border-radius: 4px;
  padding: 0 12px;
  font-weight: 900;
}
.menu, .btn.menu { display: none; }

.btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 10px 24px rgba(255,102,0,.2); }
.btn-outline { border: 1px solid #b7c5d6; background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-hero-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}
.btn-hero-white:hover {
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.btn-wide { width: 100%; }

section { padding: 82px 0; }
.hero, .page-hero { padding: 0; }
.soft { background: var(--soft); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}
.section-head h2, .split h2 {
  color: var(--navy);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.08;
  margin: 0;
}
.section-head p { color: var(--muted); max-width: 520px; margin: 0; font-size: 14px; }

.hero {
  --hero-bg: url("assets/hero-consumer-electronics.jpg");
  min-height: clamp(520px, 34vw, 620px);
  display: grid;
  align-items: start;
  position: relative;
  background: #041832;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}
.static-hero:before {
  z-index: 0;
  background: url("assets/hero-brand-packaging-v12.jpg") right bottom/auto 100% no-repeat;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 74% 50%, rgba(4,24,50,0) 0%, rgba(4,24,50,.1) 43%, rgba(4,24,50,.36) 78%),
    linear-gradient(90deg, rgba(4,24,50,.99) 0%, rgba(4,24,50,.94) 32%, rgba(4,24,50,.64) 54%, rgba(4,24,50,.18) 82%, rgba(4,24,50,.16) 100%),
    linear-gradient(180deg, rgba(4,24,50,.03), rgba(4,24,50,.26));
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(5%);
  transition: opacity .55s ease, transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}
.hero-slide.exit-left {
  opacity: 0;
  transform: translateX(-5%);
}
.hero-slide.exit-right {
  opacity: 0;
  transform: translateX(5%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
  padding: 76px 0 72px;
}
.hero-grid > div:first-child {
  padding-left: 88px;
}
.home-page .hero .wrap {
  width: calc(100% - 28px);
  max-width: none;
}
.home-page .hero-grid > div:first-child {
  padding-left: clamp(82px, 5.6vw, 112px);
  padding-top: 0;
}
h1 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(46px, 5vw, 72px);
  line-height: .95;
  font-weight: 700;
}
.static-hero h1 {
  color: #fff;
  max-width: 610px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}
.static-hero .text-link { color: #fff; }
.hero p {
  max-width: 430px;
  color: #1c3554;
  font-size: 14px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.home-page .hero-actions { margin-top: 26px; }
.home-page .hero-subtitle {
  max-width: 500px;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.72;
  text-shadow: 0 1px 12px rgba(0,0,0,.25);
}
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin: -4px 0 24px;
}
.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.94);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-trust-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.home-page .hero .btn-orange {
  box-shadow: 0 14px 34px rgba(255,91,31,.24);
}
.home-page .hero .btn-outline {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.62);
  color: #fff;
}
.home-page .hero .btn-outline:hover {
  background: rgba(255,255,255,.16);
}
.hero-image {
  min-height: 410px;
  background: none;
  filter: none;
}
.hero-carousel {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}
.static-hero .hero-carousel,
.static-hero .hero-slides {
  display: none;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(7,31,65,.16);
  transform: translateY(-50%);
  pointer-events: auto;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.hero-arrow:hover { background: var(--orange); color: #fff; transform: translateY(-50%) scale(1.04); }
.hero-arrow[data-hero-prev] { left: max(22px, calc((100vw - 1200px) / 2 + 18px)); }
.hero-arrow[data-hero-next] { right: max(18px, calc((100vw - 1200px) / 2 + 8px)); }
.home-page .hero .eyebrow { display: none; }
.trusted-line {
  margin: 20px 0 0;
  padding-left: 20px;
  position: relative;
  color: #31445d;
  font-size: 12px;
}
.trusted-line:before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 2px;
  background: var(--orange);
}

.page-hero {
  min-height: 430px;
  color: var(--white);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6,29,59,.98) 0%, rgba(6,29,59,.9) 30%, rgba(6,29,59,.56) 55%, rgba(6,29,59,.08) 82%),
    linear-gradient(180deg, rgba(6,29,59,.08), rgba(6,29,59,.22)),
    url("assets/pi-hero-supplier-packaging-desktop-v2.jpg") right center/cover no-repeat;
}
.page-hero.products-hero {
  min-height: clamp(420px, 31vw, 520px);
  background:
    linear-gradient(90deg, rgba(6,29,59,.98) 0%, rgba(6,29,59,.94) 33%, rgba(6,29,59,.62) 56%, rgba(6,29,59,.12) 82%),
    linear-gradient(180deg, rgba(6,29,59,.04), rgba(6,29,59,.16)),
    url("assets/pi-hero-supplier-packaging-desktop-v2.jpg") right bottom/auto 100% no-repeat,
    #061d3b;
}
.page-hero.products-hero .wrap {
  position: relative;
  z-index: 1;
}
.page-hero.products-hero h1 {
  max-width: 610px;
}
.page-hero.products-hero p {
  max-width: 520px;
}
.page-hero.case-hero {
  min-height: clamp(430px, 32vw, 520px);
  background:
    linear-gradient(90deg, rgba(6,29,59,.98) 0%, rgba(6,29,59,.92) 36%, rgba(6,29,59,.58) 60%, rgba(6,29,59,.22) 100%),
    linear-gradient(180deg, rgba(6,29,59,.08), rgba(6,29,59,.24)),
    url("assets/case-hero-export-projects.jpg") right center/cover no-repeat,
    #061d3b;
}
.page-hero.case-hero .wrap {
  position: relative;
  z-index: 1;
}
.page-hero.case-hero h1 {
  max-width: 660px;
}
.page-hero.case-hero p {
  max-width: 570px;
}
.page-hero.about {
  background:
    linear-gradient(90deg, rgba(6,29,59,.98), rgba(6,29,59,.78), rgba(6,29,59,.12)),
    url("assets/factory-floor.jpg") center/cover no-repeat;
}
.page-hero.contact {
  min-height: 650px;
  background:
    linear-gradient(90deg, rgba(6,29,59,.99) 0%, rgba(6,29,59,.92) 34%, rgba(6,29,59,.5) 67%, rgba(6,29,59,.22) 100%),
    linear-gradient(180deg, rgba(6,29,59,.08), rgba(6,29,59,.34)),
    url("assets/factory-exterior.jpg") center/cover no-repeat;
}
.page-hero h1 {
  color: var(--white);
  max-width: 650px;
  font-size: clamp(42px, 4.7vw, 64px);
}
.page-hero p { color: rgba(255,255,255,.84); max-width: 560px; font-size: 16px; margin: 0 0 26px; }

.stats { margin-top: -42px; position: relative; z-index: 5; }
.home-page .stats .wrap {
  width: min(1200px, calc(100% - 42px));
  max-width: 1200px;
}
.stat-panel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(6,29,59,.07);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.stat { min-height: 96px; padding: 20px 18px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; margin-bottom: 8px; color: var(--blue); font-size: 23px; line-height: 1; }
.stat b sup { font-size: .56em; }
.stat span { display: block; color: var(--muted); font-size: 11px; }

.tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  background: #e8eef6;
  padding: 5px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.tab {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}
.tab.active { background: var(--white); box-shadow: 0 8px 18px rgba(6,29,59,.12); }
.solution-switch {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin-bottom: 42px;
  background: transparent;
  border-radius: 0;
}
.solution-switch .tab {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: left;
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(7,31,65,.04);
}
.solution-switch .tab b {
  font-size: 17px;
  line-height: 1;
}
.solution-switch .tab span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.solution-switch .tab.active {
  border-color: rgba(0,64,128,.45);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 18px 42px rgba(7,31,65,.09);
}
.solution-switch .tab.active b { color: var(--blue); }

.catalog-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}
.category-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 98px;
}
.category-box,
.category-help {
  border: 1px solid #e5edf6;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 16px 36px rgba(7,31,65,.045);
  overflow: hidden;
}
.category-title {
  display: block;
  padding: 20px 20px 10px;
  color: #63758c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.category-item {
  width: calc(100% - 24px);
  min-height: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin: 6px 12px;
  padding: 12px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.category-item em {
  width: auto;
  min-width: 26px;
  color: #8b9bb0;
  font-size: 11px;
  font-style: normal;
  letter-spacing: .08em;
}
.category-item span {
  min-width: 0;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.25;
}
.category-item.active,
.category-item:hover {
  background: #eef5fc;
  color: var(--blue);
  transform: translateX(2px);
}
.category-item.active em,
.category-item:hover em { color: var(--orange); }
.category-item.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 26px rgba(7,31,65,.14);
}
.category-item.active span { color: #fff; }
.category-item.active em { color: #ff7b3a; }
.category-help {
  padding: 24px 18px;
}
.help-icon {
  width: 44px;
  height: 44px;
  border: 1px solid #cdd9e8;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 14px;
}
.category-help h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.15;
}
.category-help p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}
.category-help .btn {
  min-height: 38px;
  width: 100%;
  font-size: 12px;
}
.catalog-main { min-width: 0; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.home-page .industry-preview .card-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; }
.home-page .product-preview .card-grid { grid-template-columns: repeat(3, 1fr); }
.home-page .industry-preview,
.home-page .case-preview {
  padding: 92px 0;
}
.home-solutions,
.home-product-systems,
.delivery-flow,
.buyer-confidence {
  padding: 96px 0;
}
.home-solutions .section-head,
.home-product-systems .section-head,
.buyer-confidence .section-head {
  margin-bottom: 34px;
}
.solution-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr .88fr;
  grid-auto-rows: 238px;
  gap: 18px;
}
.solution-card {
  position: relative;
  min-height: 238px;
  border-radius: 8px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  isolation: isolate;
  box-shadow: 0 18px 44px rgba(7,31,65,.08);
}
.solution-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,20,43,.08), rgba(5,20,43,.76)),
    linear-gradient(90deg, rgba(5,20,43,.46), rgba(5,20,43,.08));
}
.solution-large {
  grid-row: span 2;
}
.solution-large:before {
  background:
    linear-gradient(90deg, rgba(4,24,50,.9) 0%, rgba(4,24,50,.62) 42%, rgba(4,24,50,.14) 100%),
    linear-gradient(180deg, rgba(5,20,43,.08), rgba(5,20,43,.48));
}
.solution-card > div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: #fff;
}
.solution-large > div {
  top: 34px;
  bottom: auto;
  max-width: 380px;
  color: #fff;
}
.solution-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.03;
}
.solution-large h3 {
  font-size: clamp(34px, 4vw, 52px);
}
.solution-card p {
  max-width: 360px;
  margin: 14px 0 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.65;
  opacity: .84;
}
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.system-card {
  min-height: 520px;
  padding: 18px 18px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(7,31,65,.06);
}
.system-card.featured {
  transform: translateY(-16px);
  box-shadow: 0 24px 58px rgba(7,31,65,.1);
}
.system-media {
  height: 330px;
  margin-bottom: 24px;
  border-radius: 6px;
  background-color: #061d3b;
  background-position: center;
  background-size: cover;
}
.system-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.08;
}
.system-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.delivery-flow {
  background: #fff;
}
.flow-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}
.flow-copy h2 {
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
}
.flow-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(7,31,65,.055);
}
.flow-steps div {
  position: relative;
  min-height: 116px;
  padding: 22px 14px;
  display: grid;
  align-content: center;
  gap: 10px;
  border-right: 1px solid var(--line);
}
.flow-steps div:last-child {
  border-right: 0;
}
.flow-steps div:not(:last-child):after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: translateY(-50%) rotate(45deg);
  background: #fff;
  z-index: 2;
}
.flow-steps b {
  color: var(--orange);
  font-size: 13px;
}
.flow-steps span {
  color: var(--navy);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.28;
}
.flow-gallery {
  display: grid;
  grid-template-columns: .75fr 1.5fr .75fr;
  gap: 18px;
}
.flow-gallery article {
  position: relative;
  min-height: 270px;
  border-radius: 8px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 44px rgba(7,31,65,.08);
}
.flow-gallery article:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,24,50,.02), rgba(4,24,50,.68));
}
.flow-gallery span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
}
.confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.confidence-grid article {
  position: relative;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
  box-shadow: 0 16px 38px rgba(7,31,65,.055);
  overflow: hidden;
}
.confidence-grid article:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), #9eb6d2);
  opacity: .75;
}
.confidence-grid b {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 50px;
  height: 34px;
  padding: 0 10px;
  border-radius: 18px;
  background: #eef4fb;
  color: var(--blue);
  font-size: 14px;
  margin-bottom: 20px;
}
.mini-medal {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(0,64,128,.34);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #fff 0 28%, #d9e6f4 29% 62%, #fff 63%);
  box-shadow: 0 2px 6px rgba(0,64,128,.12);
}
.mini-medal:before,
.mini-medal:after {
  content: "";
  position: absolute;
  top: 10px;
  width: 5px;
  height: 7px;
  border-radius: 0 0 2px 2px;
  background: #8ea7c3;
}
.mini-medal:before {
  left: 3px;
  transform: rotate(16deg);
}
.mini-medal:after {
  right: 3px;
  transform: rotate(-16deg);
}
.confidence-grid i {
  position: absolute;
  right: 22px;
  top: 22px;
  color: #d7e1ed;
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}
.confidence-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
}
.confidence-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}
.credential-strip {
  padding: 34px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}
.credential-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.credential-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  background: #f9fbfd;
}

.core-solutions,
.industry-matrix,
.concept-shipment,
.manufacturing-quality,
.buyer-confidence {
  padding: 94px 0;
}
.core-solutions .section-head,
.industry-matrix .section-head,
.buyer-confidence .section-head {
  margin-bottom: 34px;
}
.core-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  grid-template-rows: repeat(2, minmax(290px, 1fr));
  gap: 20px;
}
.core-card {
  display: grid;
  min-height: 290px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7,31,65,.07);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.core-card:hover,
.core-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0,64,128,.28);
  box-shadow: 0 24px 58px rgba(7,31,65,.12);
  outline: 0;
}
.core-card.large {
  grid-row: 1 / span 2;
}
.core-media {
  min-height: 230px;
  background-color: #f3f6fa;
  background-position: center;
  background-size: cover;
  transition: transform .25s ease, filter .25s ease;
}
.core-card:hover .core-media,
.core-card:focus-visible .core-media {
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.03);
}
.core-card.large .core-media {
  min-height: 470px;
}
.core-copy {
  padding: 24px 26px 28px;
}
.core-copy span {
  color: var(--orange);
  font-weight: 900;
  font-size: 12px;
}
.core-copy h3 {
  margin: 10px 0 10px;
  color: var(--navy);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.06;
}
.core-card:not(.large) .core-copy h3 {
  font-size: 24px;
}
.core-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.core-copy .text-btn {
  display: inline-block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 13px;
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.market-grid article,
.market-grid a {
  position: relative;
  min-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 42px rgba(7,31,65,.075);
  isolation: isolate;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.market-grid article:hover,
.market-grid article:focus-visible,
.market-grid a:hover,
.market-grid a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(7,31,65,.16);
  filter: saturate(1.04) contrast(1.03);
  outline: 0;
}
.market-grid article:before,
.market-grid a:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,24,50,.02), rgba(4,24,50,.58)),
    linear-gradient(90deg, rgba(4,24,50,.18), rgba(4,24,50,.04));
}
.market-grid h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 54px;
  margin: 0;
  color: #fff;
  font-size: 27px;
  line-height: 1.05;
}
.market-cta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 900;
}
.featured-cases,
.buyer-work {
  padding: 94px 0;
  background: #fff;
}
.featured-cases .section-head,
.buyer-work .section-head {
  margin-bottom: 34px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.case-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 38px rgba(7,31,65,.06);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.case-card:hover,
.case-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0,64,128,.24);
  box-shadow: 0 26px 54px rgba(7,31,65,.13);
  outline: 0;
}
.case-card-media {
  aspect-ratio: 4 / 3;
  background: #eef3f8 center/cover no-repeat;
  transition: filter .25s ease;
}
.case-card:hover .case-card-media,
.case-card:focus-visible .case-card-media {
  filter: saturate(1.04) contrast(1.03);
}
.case-card span {
  margin: 20px 22px 8px;
  color: #64758c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.case-card h3 {
  margin: 0 22px 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.12;
}
.case-card p {
  flex: 1;
  margin: 0 22px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.case-card .text-btn {
  margin: 0 22px 22px;
  color: var(--navy);
}
.buyer-work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.buyer-work-grid article {
  position: relative;
  min-height: 230px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, #f9fbfd);
  box-shadow: 0 16px 36px rgba(7,31,65,.055);
  overflow: hidden;
}
.buyer-work-grid article:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #a9bfd8);
}
.buyer-work-grid article:not(:last-child):after {
  content: "";
  position: absolute;
  right: -11px;
  top: 46px;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-top: 1px solid #c9d6e7;
  border-right: 1px solid #c9d6e7;
  background: #fff;
  transform: rotate(45deg);
}
.buyer-work-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border: 1px solid #c9d6e7;
  border-radius: 50%;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.buyer-work-grid i {
  display: block;
  margin: -50px 0 22px 52px;
  color: #64758c;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.buyer-work-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.12;
}
.buyer-work-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.concept-shipment {
  background: #fff;
}
.process-head {
  display: grid;
  grid-template-columns: .9fr 1fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 30px;
}
.process-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.06;
}
.process-head > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 590px;
}
.process-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(7,31,65,.055);
}
.process-line div {
  position: relative;
  min-height: 126px;
  padding: 24px 18px;
  display: grid;
  align-content: center;
  gap: 12px;
  border-right: 1px solid var(--line);
}
.process-line div:last-child {
  border-right: 0;
}
.process-line div:not(:last-child):after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
  transform: translateY(-50%) rotate(45deg);
  background: #fff;
  z-index: 2;
}
.process-line b {
  color: var(--orange);
  font-size: 13px;
}
.process-line span {
  color: var(--navy);
  font-weight: 900;
  font-size: 14px;
  line-height: 1.28;
}
.manufacturing-quality {
  background: #f8fafc;
}
.manufacturing-layout {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 42px;
  align-items: center;
}
.manufacturing-image {
  min-height: 520px;
  border-radius: 8px;
  background-color: #e9eef5;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 58px rgba(7,31,65,.09);
}
.manufacturing-layout h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.06;
}
.manufacturing-layout p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.quality-grid span {
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
  font-size: 13px;
  background: #fff;
}
.buyer-confidence {
  padding-top: 92px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  grid-template-rows: repeat(3, minmax(168px, 1fr));
  gap: 18px;
}
.showcase-tile,
.application-panel {
  position: relative;
  min-height: 210px;
  border-radius: 8px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 46px rgba(7,31,65,.08);
  isolation: isolate;
}
.showcase-tile.large {
  grid-row: 1 / span 3;
  min-height: 560px;
}
.showcase-tile:before,
.application-panel:before,
.trust-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5,20,43,.08), rgba(5,20,43,.62));
}
.showcase-tile.large:before {
  background: linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.28) 43%, rgba(5,20,43,.35) 100%);
}
.showcase-tile > div,
.application-panel > div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: #fff;
}
.showcase-tile.large > div {
  top: 36px;
  bottom: auto;
  max-width: 380px;
  color: var(--navy);
}
.showcase-tile h3,
.application-panel h3 {
  margin: 0 0 10px;
  font-size: clamp(25px, 3.5vw, 48px);
  line-height: 1.02;
}
.showcase-tile:not(.large) h3 {
  font-size: 22px;
}
.showcase-tile span,
.application-panel span {
  color: inherit;
  opacity: .82;
  font-size: 14px;
}
.showcase-tile h3,
.application-panel h3 {
  max-width: 620px;
}
.application-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.application-panel {
  min-height: 560px;
}
.application-panel:before {
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(6,29,59,.68));
}
.application-panel.dark:before {
  background: linear-gradient(90deg, rgba(6,29,59,.9), rgba(6,29,59,.28));
}
.trust-showcase {
  padding: 88px 0 96px;
  background: #fff;
  overflow: hidden;
}
.section-head.compact {
  justify-content: center;
  text-align: center;
  margin-bottom: 26px;
}
.section-head.compact h2 {
  font-size: clamp(28px, 3vw, 42px);
}
.trust-coverflow {
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}
.trust-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(148px, 16vw, 210px);
  height: 245px;
  margin: 0 -8px;
  padding: 24px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(7,31,65,.1);
  cursor: default;
  transform: scale(.82);
  opacity: .72;
  transition:
    transform 1s cubic-bezier(.16,1,.3,1),
    opacity .8s ease,
    width 1s cubic-bezier(.16,1,.3,1),
    margin 1s cubic-bezier(.16,1,.3,1),
    box-shadow 1s ease;
}
.trust-card:before {
  background: linear-gradient(180deg, rgba(6,29,59,.18), rgba(6,29,59,.8));
}
.trust-card b,
.trust-card span {
  position: relative;
  z-index: 1;
  display: block;
}
.trust-card b {
  margin-top: 158px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}
.trust-card span {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}
.trust-card.pos-center {
  width: clamp(250px, 27vw, 330px);
  height: 310px;
  margin: 0 14px;
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 28px 70px rgba(7,31,65,.18);
}
.trust-card.pos-center b {
  margin-top: 224px;
  font-size: 24px;
}
.trust-card.pos-near {
  transform: scale(.9);
  opacity: .86;
}
.trust-card.pos-far {
  transform: scale(.76);
  opacity: .58;
}
.card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(7,31,65,.045);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(7,31,65,.09); }
.media { height: 245px; background: #eef3f8 center/cover no-repeat; position: relative; }
.home-page .industry-preview .media { height: 150px; }
.home-page .industry-preview .card-body { padding: 28px 14px 18px; }
.home-page .industry-preview .card h3 { font-size: 17px; }
.home-page .industry-preview .card p { font-size: 12px; min-height: 76px; }
.home-page .industry-preview .card .text-btn { display: none; }
.badge {
  position: absolute;
  left: 18px;
  bottom: -22px;
  min-width: 48px;
  height: 48px;
  padding: 0 12px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(6,29,59,.1);
}
.industry-card .badge { background: var(--blue); color: var(--white); }
.catalog-main .badge { display: none; }
.catalog-main .card-body { padding: 22px 22px 24px; }
.catalog-main .card p { min-height: 58px; }
.catalog-main .card-actions {
  padding-top: 14px;
  border-top: 1px solid #edf1f6;
}
.catalog-main .text-btn {
  color: var(--navy);
  font-size: 13px;
}
.card-body { padding: 36px 22px 24px; }
.card h3 { color: var(--navy); font-size: 20px; margin: 0 0 9px; line-height: 1.15; }
.card p { color: var(--muted); font-size: 13px; min-height: 62px; margin: 0 0 16px; }
.card-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.catalog-main .card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  scroll-margin-top: 120px;
}
.catalog-main .media {
  height: auto;
  aspect-ratio: 4 / 3;
}
.catalog-main .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.catalog-main .card-actions {
  margin-top: auto;
}
.text-btn {
  min-height: 32px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}
.text-btn.orange { color: var(--orange); }
.text-link {
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.text-link.light { color: #fff; }
.text-link.as-button { font-family: inherit; }

.projects { display: grid; grid-template-columns: 1.1fr repeat(3, 1fr); gap: 18px; }
.project {
  min-height: 270px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(6,29,59,.06);
}
.project.big { display: grid; grid-template-columns: 1.05fr .95fr; }
.project-img { min-height: 210px; background: #edf2f7 center/cover no-repeat; }
.project-body { padding: 22px; }
.project h3 { color: var(--navy); font-size: 21px; margin: 0 0 8px; }
.project p { color: var(--muted); font-size: 14px; margin: 0 0 14px; }

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-proof-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}
.case-proof-bar article {
  min-height: 118px;
  padding: 18px;
  border: 1px solid #d9e5f2;
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfdff, #f5f9fd);
  box-shadow: 0 12px 28px rgba(7,31,65,.045);
}
.case-proof-bar b {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}
.case-proof-bar span {
  display: block;
  color: #53677f;
  font-size: 13px;
  line-height: 1.55;
}
.case-study-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7,31,65,.065);
  scroll-margin-top: 120px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.case-detail-trigger { cursor: pointer; }
.case-detail-trigger:hover,
.case-detail-trigger:focus-visible {
  border-color: rgba(0,70,130,.38);
  box-shadow: 0 22px 54px rgba(7,31,65,.12);
  transform: translateY(-2px);
}
.case-detail-trigger:focus-visible {
  outline: 3px solid rgba(255,82,22,.24);
  outline-offset: 3px;
}
.case-study-media {
  aspect-ratio: 16 / 10;
  background: #eef3f8 center/cover no-repeat;
}
.case-study-card > div:not(.case-study-media) {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}
.case-study-card span {
  margin-bottom: 9px;
  color: #66758a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.case-study-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.1;
}
.case-study-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.case-buyer-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}
.case-buyer-facts span {
  display: block;
  min-height: 58px;
  margin: 0;
  padding: 10px 9px;
  border: 1px solid #dce6f1;
  border-radius: 7px;
  background: #f8fbff;
  color: #52677f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}
.case-buyer-facts b {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.case-specs {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}
.case-specs div {
  padding-top: 12px;
  border-top: 1px solid #edf1f6;
}
.case-specs dt {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}
.case-specs dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.case-study-card .btn {
  width: fit-content;
  margin-top: auto;
}
.case-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: auto;
}
.case-study-card .case-card-actions .btn { margin-top: 0; }
.case-detail-link {
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 0;
}
.case-detail-link::after {
  content: " ->";
  color: var(--orange);
}

.case-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(2,17,38,.72);
}
.case-detail-modal.open { display: flex; }
body.case-modal-open { overflow: hidden; }
.case-detail-dialog {
  position: relative;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  width: min(1080px, 100%);
  max-height: calc(100vh - 56px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0,0,0,.32);
}
.case-detail-media {
  min-height: 620px;
  background: #edf2f7 center/cover no-repeat;
}
.case-detail-body {
  overflow-y: auto;
  padding: 34px 36px 32px;
}
.case-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,45,89,.18);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
.case-detail-body h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}
.case-detail-summary {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.case-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.case-detail-meta span {
  min-height: 74px;
  padding: 12px;
  border: 1px solid #d9e3ef;
  border-radius: 8px;
  background: #f7fafc;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.case-detail-meta b {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
}
.case-detail-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.case-detail-panel {
  padding: 17px;
  border: 1px solid #d9e3ef;
  border-radius: 8px;
  background: #fff;
}
.case-detail-panel h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 16px;
}
.case-detail-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-detail-panel li {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.case-detail-panel li::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.case-detail-result {
  margin: 18px 0 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: #f4f8fc;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
}
.case-detail-proof,
.case-detail-next {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #d9e3ef;
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfdff, #f6faff);
}
.case-detail-proof h3,
.case-detail-next h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 16px;
}
.case-proof-list,
.case-next-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case-proof-list span,
.case-next-list span {
  padding: 8px 10px;
  border: 1px solid #dce6f1;
  border-radius: 999px;
  background: #fff;
  color: #243a54;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}
.case-detail-next p {
  margin: 14px 0 0;
  color: #53677f;
  font-size: 13px;
  line-height: 1.55;
}

.dark-band {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(2,22,48,.98) 0%, rgba(0,45,89,.97) 58%, rgba(2,22,48,.98) 100%),
    url("assets/factory-floor.jpg") center/cover no-repeat;
}
.band-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 34px; align-items: center; }
.dark-band h2 { color: var(--white); font-size: clamp(32px, 4vw, 48px); line-height: 1.05; margin: 0 0 18px; }
.dark-band p { color: rgba(255,255,255,.78); }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mini-card {
  position: relative;
  min-height: 92px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.08) center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.mini-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,29,59,.28), rgba(6,29,59,.82)),
    linear-gradient(90deg, rgba(6,29,59,.5), rgba(6,29,59,.2));
}
.mini-card b { display: block; color: #fff; line-height: 1.2; text-shadow: 0 2px 10px rgba(0,0,0,.35); }

.icon-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.icon-item {
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.icon-item b { color: var(--navy); display: block; margin-bottom: 8px; }
.icon-item span { color: var(--muted); font-size: 13px; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; }
.split p { color: var(--muted); }
.photo-panel {
  min-height: 410px;
  border-radius: 8px;
  background: #eef3f8 center/cover no-repeat;
  box-shadow: var(--shadow);
}
.base-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.base-card {
  position: relative;
  min-height: 310px;
  border-radius: 8px;
  overflow: hidden;
  background: #edf2f7 center/cover no-repeat;
  isolation: isolate;
  box-shadow: 0 16px 38px rgba(7,31,65,.08);
}
.base-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5,20,43,.08), rgba(5,20,43,.76));
}
.base-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}
.base-card b {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.base-card span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 34px; }
.time {
  border-top: 2px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
  font-size: 13px;
}
.time b { color: var(--orange); display: block; font-size: 18px; margin-bottom: 6px; }

#manufacturing {
  scroll-margin-top: 112px;
}
.network-map {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 76% 48%, rgba(0,64,128,.055), transparent 27%),
    linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: 0 22px 56px rgba(7,31,65,.075);
}
.network-map:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(7,31,65,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,31,65,.035) 1px, transparent 1px);
  background-size: 58px 58px;
}
.map-viewport {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  cursor: default;
  touch-action: pan-y;
}
.network-map.is-zoomed .map-viewport {
  cursor: grab;
}
.network-map.is-dragging .map-viewport {
  cursor: grabbing;
}
.map-stage {
  position: absolute;
  inset: 0;
  transform-origin: 0 0;
  will-change: transform;
}
.flight-map {
  position: absolute;
  inset: 18px 22px;
  z-index: 1;
  width: calc(100% - 44px);
  height: calc(100% - 36px);
}
.map-controls {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 9;
  display: grid;
  grid-template-columns: 38px 38px auto;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(184,199,217,.85);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 32px rgba(7,31,65,.12);
  backdrop-filter: blur(8px);
}
.map-controls button {
  min-width: 38px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}
.map-controls button:hover {
  border-color: rgba(0,64,128,.42);
  background: #f4f8fc;
}
.world-map-image {
  opacity: .96;
  filter: contrast(1.02) saturate(.88);
}
.flight-routes path {
  fill: none;
  stroke: #2f3640;
  stroke-width: 1.35;
  stroke-dasharray: 5 8;
  stroke-linecap: round;
  opacity: .66;
}
.plane {
  fill: #252b33;
  opacity: .88;
}
.p-na { transform: translate(504px, 170px) rotate(-166deg); }
.p-eu { transform: translate(608px, 188px) rotate(-156deg); }
.p-jp { transform: translate(836px, 242px) rotate(-24deg); }
.p-au { transform: translate(838px, 382px) rotate(58deg); }
.p-af { transform: translate(638px, 350px) rotate(151deg); }
.p-me { transform: translate(646px, 286px) rotate(-170deg); }
.destination-labels text {
  fill: #7d8896;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2px;
}
.base-anchor-lines path {
  fill: none;
  stroke: rgba(56, 66, 80, .32);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  stroke-linecap: round;
}
.map-point {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}
.map-dot {
  position: relative;
  width: 28px;
  height: 28px;
  border: 4px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e7332a;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 0 5px rgba(231,51,42,.13), 0 10px 20px rgba(6,29,59,.14);
}
.map-dot:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 9px;
  height: 9px;
  background: #e7332a;
  transform: translateX(-50%) rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.map-point b {
  display: none;
}
.point-baoan { left: 76.8%; top: 45.8%; }
.point-guangming { left: 78.4%; top: 42.5%; }
.point-huizhou { left: 81.1%; top: 44.1%; }
.point-vietnam { left: 77.7%; top: 55.2%; }
.map-popup {
  position: absolute;
  left: 0;
  bottom: 38px;
  width: 300px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7,31,65,.18);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  text-align: left;
}
.point-baoan .map-popup,
.point-guangming .map-popup,
.point-huizhou .map-popup,
.point-vietnam .map-popup {
  left: auto;
  right: 0;
}
.map-point:hover .map-popup {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .map-point:hover .map-popup {
    opacity: 0;
    transform: translateY(10px);
  }
  .map-point.active .map-popup {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.map-popup img {
  width: 100%;
  height: 126px;
  border-radius: 6px;
  object-fit: cover;
}
.map-popup strong {
  color: var(--navy);
  font-size: 15px;
}
.map-popup em,
.map-popup small {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  line-height: 1.5;
}
.map-popup small {
  color: var(--blue);
  font-weight: 800;
}
.base-pin {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: #e7332a;
  color: #fff;
  box-shadow: 0 0 0 5px rgba(231,51,42,.13), 0 12px 24px rgba(7,31,65,.18);
  transform: rotate(-45deg);
  transition: transform .18s ease, box-shadow .18s ease;
}
.base-pin span {
  display: block;
  transform: rotate(45deg);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.base-marker:hover .base-pin {
  transform: rotate(-45deg) scale(1.08);
  box-shadow: 0 0 0 6px rgba(231,51,42,.17), 0 16px 30px rgba(7,31,65,.2);
}
.region-support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(7,31,65,.045);
}
.region-support-strip b {
  color: var(--navy);
  font-size: 14px;
}
.region-support-strip span {
  color: var(--muted);
  font-size: 13px;
}

.process { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 32px; }
.step {
  position: relative;
  text-align: center;
  padding: 24px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.step:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 21px;
  height: 1px;
  background: #b7c5d6;
}
.step:not(:last-child):before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: -21px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #b7c5d6;
  border-right: 1px solid #b7c5d6;
  transform: rotate(45deg);
}
.step .num {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #b9c8dc;
  color: var(--blue);
  font-weight: 900;
}
.step b { display: block; color: var(--navy); margin-bottom: 8px; }
.step span { color: var(--muted); font-size: 13px; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.feature b { display: block; color: var(--navy); margin-bottom: 8px; }
.feature span { color: var(--muted); font-size: 13px; }

.quote-section {
  margin-top: -525px;
  padding-top: 0;
  position: relative;
  z-index: 4;
}
.quote-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 34px; align-items: start; }
.contact-copy {
  color: #fff;
  padding-top: 40px;
}
.contact-copy h1 { color: #fff; font-size: clamp(42px, 5vw, 64px); }
.contact-copy > p:not(.eyebrow) {
  max-width: 480px;
  line-height: 1.72;
}
.contact-list { display: grid; gap: 16px; margin-top: 24px; }
.contact-copy .contact-list { display: none; }
.contact-item { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-item b { display: block; color: #fff; }
.contact-item span { color: rgba(255,255,255,.8); }
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-card h2 { margin: 0 0 8px; color: var(--navy); font-size: 34px; }
.form-card p { color: var(--muted); margin: 0 0 20px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 7px; color: var(--navy); font-size: 13px; font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.span-2 { grid-column: span 2; }
.file-upload {
  position: relative;
}
.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-upload-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
  padding: 14px;
  border: 1px dashed #b8c7d9;
  border-radius: 6px;
  background: #f7faff;
}
.file-upload-box b,
.file-upload-box em {
  display: block;
}
.file-upload-box b {
  color: var(--navy);
  font-size: 13px;
}
.file-upload-box em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}
.file-upload-box strong {
  flex: 0 0 auto;
  min-width: 104px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}
.form-more {
  display: grid;
  gap: 12px;
}
.form-more-toggle {
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}
.form-more-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: max-height .3s ease, opacity .24s ease, margin-top .24s ease, visibility 0s linear .3s;
}
.form-more-panel:not([hidden]) {
  max-height: 900px;
  margin-top: 4px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 18px 20px;
  background: #fff;
  color: var(--navy);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}
.faq-question b {
  color: var(--blue);
  font-size: 18px;
}
.faq-answer {
  display: none;
  padding: 0 20px 18px;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.product-faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.product-faq article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.product-faq b {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}
.product-faq p {
  margin: 0;
  color: var(--muted);
}

.cta {
  color: var(--white);
  background: linear-gradient(100deg, #061d3b, #082f5d);
  padding: 42px 0;
}
.cta-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cta h2 { margin: 0 0 6px; color: #fff; font-size: 30px; }
.cta p { margin: 0; color: rgba(255,255,255,.74); }

.footer {
  background: #041832;
  color: rgba(255,255,255,.76);
  padding: 46px 0 24px;
}
.footer .brand { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(5, 1fr); gap: 28px; }
.footer b { color: #fff; display: block; margin-bottom: 12px; }
.footer a, .footer span { display: block; margin: 7px 0; font-size: 13px; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.footer .social-links a {
  width: 32px;
  height: 32px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255,255,255,.06);
}
.footer .social-links a:hover {
  border-color: rgba(255,255,255,.46);
  background: rgba(255,255,255,.14);
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, 82px);
  gap: 10px;
}
.qr-card {
  display: grid;
  gap: 7px;
  justify-items: center;
  align-content: start;
}
.footer a.qr-card { margin: 0; }
.qr-card img,
.qr-card span {
  width: 82px;
  height: 82px;
  margin: 0;
  border-radius: 6px;
}
.qr-card img {
  padding: 6px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(255,255,255,.72);
}
.qr-card span {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, #fff 8px, transparent 8px 14px, #fff 14px 22px, transparent 22px 30px, #fff 30px 38px, transparent 38px 46px, #fff 46px),
    linear-gradient(#0b2f5f 8px, transparent 8px 14px, #0b2f5f 14px 22px, transparent 22px 30px, #0b2f5f 30px 38px, transparent 38px 46px, #0b2f5f 46px);
  color: var(--navy);
  font-weight: 900;
  font-size: 12px;
}
.qr-card em {
  display: block;
  width: 82px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-style: normal;
  text-align: center;
  line-height: 1.2;
}
.footer-bottom { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; display: flex; justify-content: space-between; gap: 20px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(3, 14, 30, .64);
}
.modal.open { display: flex; }
.modal-card {
  width: min(760px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.modal-head h2 { margin: 0; color: var(--navy); }
.close { border: 0; background: #eef3f8; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 22px; }
.modal-body { padding: 24px 26px 28px; }
.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1250;
  display: none;
  max-width: 380px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #06264b;
  color: #fff;
  box-shadow: var(--shadow);
}
.toast.show { display: block; }

@media (max-width: 980px) {
  .links { display: none; }
  .btn.menu { display: inline-flex; }
  .nav.open .links {
    display: grid;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 18px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .hero-grid, .band-grid, .split, .quote-grid { grid-template-columns: 1fr; }
  .solution-grid,
  .system-grid,
  .core-grid,
  .market-grid,
  .flow-layout,
  .process-head,
  .process-line,
  .manufacturing-layout,
  .flow-gallery,
  .confidence-grid,
  .case-grid,
  .buyer-work-grid,
  .case-study-grid {
    grid-template-columns: 1fr 1fr;
  }
  .core-card.large {
    grid-row: auto;
    grid-column: 1 / -1;
  }
  .process-line {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-line div:nth-child(3) {
    border-right: 0;
  }
  .process-line div:nth-child(3):after {
    display: none;
  }
  .manufacturing-image {
    min-height: 420px;
  }
  .detail-gallery-stage {
    min-height: 440px;
  }
  .detail-commerce-section {
    grid-template-columns: 1fr;
  }
  .product-info-panel {
    position: static;
  }
  .detail-attribute-strip,
  .detail-option-grid,
  .detail-delivery-grid,
  .description-grid,
  .related-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-attribute-strip article:nth-child(2) {
    border-right: 0;
  }
  .detail-attribute-strip article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
  .solution-large {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 430px;
  }
  .system-card.featured {
    transform: none;
  }
  .flow-layout {
    gap: 28px;
  }
  .flow-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .flow-steps div:nth-child(3) {
    border-right: 0;
  }
  .flow-steps div:nth-child(3):after {
    display: none;
  }
  .flow-gallery .wide {
    grid-column: 1 / -1;
  }
  .catalog-layout { grid-template-columns: 1fr; }
  .category-sidebar { position: static; }
  .category-sidebar { grid-template-columns: 1fr 1fr; }
  .page-hero.products-hero {
    min-height: 500px;
    background:
      linear-gradient(90deg, rgba(6,29,59,.98) 0%, rgba(6,29,59,.91) 40%, rgba(6,29,59,.5) 72%, rgba(6,29,59,.12) 100%),
      linear-gradient(180deg, rgba(6,29,59,.04), rgba(6,29,59,.2)),
      url("assets/pi-hero-supplier-packaging-desktop-v2.jpg") right bottom/auto 100% no-repeat,
      #061d3b;
  }
  .page-hero.case-hero {
    min-height: 500px;
    background:
      linear-gradient(90deg, rgba(6,29,59,.99) 0%, rgba(6,29,59,.94) 44%, rgba(6,29,59,.62) 76%, rgba(6,29,59,.34) 100%),
      linear-gradient(180deg, rgba(6,29,59,.08), rgba(6,29,59,.3)),
      url("assets/case-hero-export-projects.jpg") 68% center/cover no-repeat,
      #061d3b;
  }
  .showcase-grid,
  .application-strip { grid-template-columns: 1fr; }
  .showcase-tile.large { grid-row: auto; min-height: 430px; }
  .application-panel { min-height: 390px; }
  .trust-coverflow { height: auto; flex-wrap: wrap; gap: 16px; }
  .trust-card,
  .trust-card.pos-center,
  .trust-card.pos-near,
  .trust-card.pos-far {
    width: calc(50% - 10px);
    height: 245px;
    margin: 0;
    transform: none;
    opacity: 1;
  }
  .trust-card.pos-center b,
  .trust-card b { margin-top: 126px; font-size: 18px; }
  .buyer-work-grid article:not(:last-child):after {
    display: none;
  }
  .hero { min-height: auto; }
  .hero-grid { padding: 50px 0 96px; }
  .hero-image { min-height: 370px; }
  .static-hero:before {
    background: url("assets/hero-brand-packaging-v12.jpg") right bottom/auto 100% no-repeat;
  }
  .hero-grid > div:first-child { padding-left: 0; }
  .home-page .hero-grid > div:first-child { padding-left: 0; }
  .hero-arrow[data-hero-prev] { left: 18px; }
  .hero-arrow[data-hero-next] { right: 18px; }
  .stat-panel { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3n) { border-right: 0; }
  .card-grid, .projects, .feature-grid, .base-grid { grid-template-columns: repeat(2, 1fr); }
  .project.big { grid-template-columns: 1fr; }
  .icon-row, .process, .timeline { grid-template-columns: repeat(3, 1fr); }
  .step:before,
  .step:after { display: none; }
  .network-map {
    min-height: 560px;
  }
  .flight-map {
    display: block;
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
  }
  .map-point {
    padding: 5px;
  }
  .map-point b,
  .destination-labels {
    display: none;
  }
  .map-popup {
    width: min(280px, calc(100vw - 48px));
  }
  .region-support-strip {
    display: grid;
    gap: 8px;
  }
  .quote-section { margin-top: -300px; }
  .contact-copy { padding-top: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-overview-grid,
  .detail-technical-grid,
  .detail-variation-grid,
  .detail-support-grid,
  .detail-views-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .snapshot-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  .snapshot-highlights article:nth-child(2) {
    border-right: 0;
  }
  .snapshot-highlights article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
  .detail-technical-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1200px); }
  .home-page .hero .wrap { width: min(100% - 28px, 1200px); }
  .brand { min-width: 0; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 15px; }
  .language { display: none; }
  .network-map { min-height: 430px; }
  .flight-routes path { stroke-width: 1.45; stroke-dasharray: 5 7; }
  .plane { opacity: .86; }
  .map-dot {
    width: 18px;
    height: 18px;
    border-width: 3px;
  }
  .map-dot:after {
    bottom: -8px;
    width: 7px;
    height: 7px;
  }
  .solution-switch { grid-template-columns: 1fr; }
  .solution-switch .tab { min-height: 74px; }
  .page-hero.products-hero {
    min-height: clamp(560px, 125vw, 720px);
    align-items: start;
    padding-top: 54px;
    box-sizing: border-box;
    background:
      linear-gradient(180deg, rgba(6,29,59,.98) 0%, rgba(6,29,59,.93) 28%, rgba(6,29,59,.68) 48%, rgba(6,29,59,.24) 74%, rgba(6,29,59,.06) 100%),
      url("assets/pi-hero-supplier-packaging-mobile.jpg") center bottom/cover no-repeat;
  }
  .page-hero.products-hero h1 {
    max-width: 360px;
    font-size: clamp(34px, 10vw, 46px);
  }
  .page-hero.products-hero p {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.75;
  }
  .page-hero.case-hero {
    min-height: 620px;
    align-items: start;
    padding-top: 58px;
    box-sizing: border-box;
    background:
      linear-gradient(180deg, rgba(6,29,59,.99) 0%, rgba(6,29,59,.94) 38%, rgba(6,29,59,.76) 58%, rgba(6,29,59,.42) 100%),
      url("assets/case-hero-export-projects.jpg") 72% bottom/auto 68% no-repeat,
      #061d3b;
  }
  .page-hero.case-hero h1 {
    max-width: 370px;
    font-size: clamp(34px, 10vw, 46px);
  }
  .page-hero.case-hero p {
    max-width: 345px;
    font-size: 15px;
    line-height: 1.75;
  }
  .hero-image { min-height: 280px; }
  .hero-slide { background-size: cover; background-position: center center; }
  .static-hero:before {
    background: url("assets/hero-brand-packaging-v12.jpg") 68% bottom/auto 58% no-repeat;
  }
  .hero:after {
    background:
      linear-gradient(180deg, rgba(4,24,50,.99) 0%, rgba(4,24,50,.94) 43%, rgba(4,24,50,.68) 62%, rgba(4,24,50,.2) 100%),
      linear-gradient(90deg, rgba(4,24,50,.88), rgba(4,24,50,.28));
  }
  .home-page .hero {
    min-height: 650px;
  }
  .home-page .hero-grid {
    padding: 56px 0 34px;
  }
  .static-hero h1 {
    font-size: clamp(35px, 10vw, 46px);
    max-width: 360px;
  }
  .home-page .hero-subtitle {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.7;
  }
  .hero-arrow { width: 38px; height: 38px; font-size: 26px; }
  .hero-arrow[data-hero-prev] { left: 12px; }
  .hero-arrow[data-hero-next] { right: 12px; }
  section { padding: 64px 0; }
  .section-head, .cta-grid { display: grid; }
  .card-grid, .projects, .mini-grid, .icon-row, .feature-grid, .base-grid, .process, .timeline, .form-grid, .footer-grid,
  .solution-grid, .system-grid, .flow-layout, .flow-gallery, .confidence-grid,
  .core-grid, .market-grid, .process-head, .process-line, .manufacturing-layout, .quality-grid, .form-more-panel,
  .case-grid, .buyer-work-grid, .case-study-grid,
  .detail-commerce-section, .quick-inquiry-form .form-more-panel, .detail-attribute-strip,
  .detail-option-grid, .detail-delivery-grid, .description-grid, .related-product-grid,
  .detail-overview-grid, .detail-technical-grid, .detail-variation-grid,
  .detail-support-grid, .detail-views-grid, .snapshot-highlights { grid-template-columns: 1fr; }
  .detail-commerce-gallery {
    grid-template-columns: 1fr;
  }
  .detail-commerce-gallery .detail-gallery-dots {
    grid-template-columns: repeat(3, 1fr);
    order: 2;
  }
  .detail-commerce-stage-wrap {
    order: 1;
  }
  .detail-commerce-gallery .detail-gallery-dot {
    height: 72px;
  }
  .detail-commerce-gallery .detail-gallery-stage {
    min-height: 330px;
  }
  .product-info-panel {
    padding: 20px;
  }
  .product-key-specs div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .detail-attribute-strip article,
  .detail-attribute-strip article:nth-child(2),
  .detail-attribute-strip article:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .detail-attribute-strip article:last-child {
    border-bottom: 0;
  }
  .snapshot-highlights article,
  .snapshot-highlights article:nth-child(2),
  .snapshot-highlights article:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .snapshot-highlights article:last-child {
    border-bottom: 0;
  }
  .detail-spec-table div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 16px;
  }
  .detail-technical-grid article:last-child {
    grid-column: auto;
  }
  .product-detail-content {
    padding: 64px 0;
  }
  .product-detail-stack {
    gap: 58px;
  }
  .detail-gallery-large .detail-gallery-stage {
    min-height: 320px;
  }
  .detail-gallery-large .detail-gallery-dots {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 10px;
  }
  .detail-gallery-thumbs .detail-gallery-dot {
    height: 64px;
  }
  .soft-panel {
    margin-inline: -14px;
    padding: 58px 14px;
  }
  .detail-variation-grid article > div {
    height: 240px;
  }
  .detail-support-grid article {
    min-height: auto;
    padding: 22px;
  }
  .detail-views-grid article > div {
    height: 230px;
  }
  .stat-panel { grid-template-columns: repeat(2, 1fr); }
  .core-solutions,
  .industry-matrix,
  .concept-shipment,
  .manufacturing-quality {
    padding: 68px 0;
  }
  .core-card,
  .core-card.large,
  .market-grid article,
  .market-grid a {
    min-height: auto;
  }
  .core-media,
  .core-card.large .core-media {
    min-height: 270px;
  }
  .process-line div,
  .process-line div:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .process-line div:last-child {
    border-bottom: 0;
  }
  .process-line div:after,
  .process-line div:nth-child(3):after {
    display: none;
  }
  .manufacturing-image {
    min-height: 320px;
  }
  .detail-gallery-stage {
    min-height: 320px;
  }
  .home-solutions,
  .home-product-systems,
  .delivery-flow,
  .buyer-confidence {
    padding: 68px 0;
  }
  .solution-card,
  .solution-large,
  .flow-gallery article {
    min-height: 320px;
  }
  .solution-large > div {
    color: #fff;
    top: auto;
    bottom: 24px;
  }
  .solution-large:before {
    background: linear-gradient(180deg, rgba(5,20,43,.08), rgba(5,20,43,.68));
  }
  .system-card {
    min-height: auto;
  }
  .system-media {
    height: 250px;
  }
  .flow-steps {
    grid-template-columns: 1fr;
  }
  .flow-steps div,
  .flow-steps div:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .flow-steps div:last-child {
    border-bottom: 0;
  }
  .flow-steps div:after,
  .flow-steps div:nth-child(3):after {
    display: none;
  }
  .category-sidebar { grid-template-columns: 1fr; }
  .trust-card,
  .trust-card.pos-center,
  .trust-card.pos-near,
  .trust-card.pos-far { width: 100%; }
  .showcase-tile.large,
  .showcase-tile,
  .application-panel { min-height: 340px; }
  .stat,
  .stat:nth-child(3n) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .stat:nth-child(even) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .media { height: 220px; }
  .span-2 { grid-column: auto; }
  .file-upload-box {
    display: grid;
    justify-items: start;
  }
  .quote-section { margin-top: -260px; }
  .page-hero.contact { min-height: 620px; }
  .footer-bottom { display: grid; }
}

/* Revised professional product-detail and static network modules */
.detail-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 34px;
  align-items: start;
}
.detail-intro-section .product-info-panel { position: static; }
.material-grid,
.finish-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.material-card,
.finish-card {
  display: grid;
  gap: 12px;
  padding: 10px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7,31,65,.045);
}
.material-card b,
.finish-card b {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}
.finish-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}
.material-visual,
.finish-visual {
  min-height: 96px;
  border: 1px solid rgba(184,199,217,.85);
  border-radius: 7px;
  background: #edf2f7;
  overflow: hidden;
}
.kraft-paper { background: linear-gradient(135deg, #b98f59, #dfc397 58%, #a77941); }
.ivory-board { background: linear-gradient(145deg, #ffffff, #eef2f6 48%, #dbe3ec); }
.ccnb { background: linear-gradient(135deg, #f7f8f9 0 45%, #c6ccd4 46% 68%, #f0f2f4 69%); }
.art-paper { background: linear-gradient(135deg, #fbfdff, #e8eef7 50%, #ffffff); }
.specialty-paper { background: radial-gradient(circle at 28% 24%, rgba(255,255,255,.8), transparent 24%), linear-gradient(135deg, #d7d0c3, #f2efe7 48%, #c6c0b3); }
.colored-card { background: linear-gradient(135deg, #123257 0 28%, #f7f9fc 29% 48%, #0f6c7a 49% 68%, #b9964a 69%); }
.greyboard { background: linear-gradient(135deg, #aeb4bc, #d0d4d9 52%, #8f969f); }
.black-card { background: linear-gradient(135deg, #05080d, #1f2937 48%, #05080d); }
.fancy-paper { background: linear-gradient(135deg, #e3c6d8 0 20%, #f3e3a6 21% 40%, #9fc3b2 41% 60%, #9fb7df 61% 80%, #f0f0f0 81%); }
.metallic-paper { background: linear-gradient(120deg, #d4af37, #f9f3cc 22%, #aab7c4 46%, #ffffff 62%, #8d98a6 78%, #d4af37); }
.corrugated-board,
.eflute,
.bflute,
.double-wall {
  background:
    repeating-linear-gradient(0deg, rgba(77,54,29,.22) 0 5px, rgba(255,255,255,.08) 5px 10px),
    linear-gradient(135deg, #b88245, #d6b179);
}
.printed-liner { background: linear-gradient(135deg, #102846 0 30%, #f6f8fb 31% 68%, #c77737 69%); }
.white-corrugated { background: repeating-linear-gradient(0deg, #f8fbff 0 8px, #dfe7ef 8px 12px); }
.paperboard { background: linear-gradient(135deg, #c39a63, #ead5af 55%, #b68248); }
.spot-uv { background: radial-gradient(circle at 34% 42%, rgba(255,255,255,.8), transparent 18%), linear-gradient(135deg, #0f5f69, #102846); }
.embossing { background: linear-gradient(135deg, #2f3745, #111827); }
.debossing { background: linear-gradient(135deg, #d6dce4, #aeb8c5 48%, #eef3f8); }
.gold-foil { background: linear-gradient(135deg, #101827, #d4af37 45%, #fff0a6 52%, #172033); }
.silver-foil { background: linear-gradient(135deg, #0f172a, #c9d3df 45%, #ffffff 56%, #263241); }
.matte { background: linear-gradient(135deg, #232a35, #0e1420); }
.gloss { background: linear-gradient(135deg, #121925 0 48%, #ffffff 49% 51%, #222c3a 52%); }
.soft-touch { background: linear-gradient(135deg, #1f2937, #111827 50%, #344153); }
.silk-printing { background: linear-gradient(135deg, #0c1728, #31435b); }
.finish-visual {
  min-height: 130px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: #f8fbff;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.2;
  text-align: center;
}
.finish-visual span {
  display: block;
  font-size: 15px;
}
.finish-visual.spot-uv span {
  padding: 13px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 18px rgba(255,255,255,.42), 0 0 22px rgba(255,255,255,.16);
}
.finish-visual.embossing span {
  color: #dfe7ef;
  text-shadow: 0 -2px 0 rgba(255,255,255,.18), 0 3px 0 rgba(0,0,0,.46);
}
.finish-visual.debossing span {
  color: #6e7887;
  text-shadow: inset 0 1px 0 rgba(0,0,0,.35), 0 1px 0 rgba(255,255,255,.55);
}
.finish-visual.gold-foil span {
  color: #ffe494;
  text-shadow: 0 0 10px rgba(255,218,112,.5);
}
.finish-visual.silver-foil span {
  color: #f4f8ff;
  text-shadow: 0 0 10px rgba(220,232,245,.58);
}
.finish-visual.matte span {
  color: #d7dde6;
  opacity: .82;
}
.finish-visual.gloss span {
  color: #fff;
  text-shadow: 12px -10px 18px rgba(255,255,255,.45);
}
.finish-visual.soft-touch span {
  color: #e7edf5;
  filter: blur(.15px);
}
.factory-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.custom-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.custom-visual-grid article {
  position: relative;
  min-height: 230px;
  border-radius: 8px;
  overflow: hidden;
  background: #edf2f7;
  isolation: isolate;
}
.custom-visual-grid article:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5,20,43,.04), rgba(5,20,43,.62));
}
.custom-visual-grid b {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 46px;
  color: #fff;
}
.custom-visual-grid span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
}
.custom-visual:after {
  content: "";
  position: absolute;
  inset: 24px 24px 76px;
  border-radius: 8px;
}
.structure-view { background: linear-gradient(135deg, #f8fbff, #dfe8f2); }
.structure-view:after {
  border: 2px solid #0b2a4d;
  background:
    linear-gradient(90deg, transparent 48%, rgba(11,42,77,.55) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(11,42,77,.28) 49% 51%, transparent 52%);
  clip-path: polygon(10% 22%, 70% 22%, 88% 40%, 88% 78%, 22% 78%, 10% 64%);
}
.size-view { background: linear-gradient(135deg, #102846, #eef3f8); }
.size-view:after {
  border: 2px dashed rgba(255,255,255,.78);
  background:
    linear-gradient(90deg, rgba(255,255,255,.12) 0 33%, transparent 34% 66%, rgba(255,255,255,.18) 67%);
}
.artwork-view { background: linear-gradient(135deg, #0b1d35, #f4f7fb); }
.artwork-view:after {
  background:
    linear-gradient(135deg, #0b2a4d 0 32%, #fff 33% 62%, #ff6600 63% 74%, #c8d4e2 75%);
  box-shadow: 0 10px 24px rgba(7,31,65,.22);
}
.production-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.production-flow article {
  position: relative;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(7,31,65,.045);
}
.production-flow article:not(:nth-child(4n)):after {
  content: "鈫?;
  position: absolute;
  top: 86px;
  right: -15px;
  z-index: 2;
  color: #6e7e93;
  font-weight: 900;
}
.production-flow div {
  position: relative;
  height: 150px;
  background: #edf2f7;
  overflow: hidden;
}
.production-flow div:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,24,50,.08), rgba(4,24,50,.36));
}
.production-flow span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
}
.process-visual:after {
  content: "";
  position: absolute;
  inset: 26px 24px 34px;
}
.process-visual.requirements:after {
  background:
    linear-gradient(#fff, #fff) 0 0/56% 100% no-repeat,
    repeating-linear-gradient(0deg, #d6e0eb 0 3px, transparent 3px 13px) 12px 16px/38% 68% no-repeat,
    linear-gradient(135deg, #0b2a4d, #ff6600) 76% 50%/44px 44px no-repeat;
  border-radius: 8px;
}
.process-visual.dieline:after {
  border: 2px dashed #0b2a4d;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(11,42,77,.45) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(11,42,77,.25) 50%, transparent 51%);
}
.process-visual.sample:after {
  border-radius: 8px;
  background:
    linear-gradient(135deg, #0b2a4d 0 48%, #f5f8fc 49% 100%);
  transform: perspective(160px) rotateX(14deg);
  box-shadow: 0 16px 28px rgba(7,31,65,.24);
}
.process-visual.printing:after {
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, #0b2a4d 0 18px, #203a5c 18px 32px),
    linear-gradient(#fff, #fff);
  box-shadow: inset 0 -24px 0 rgba(255,255,255,.8);
}
.process-visual.finishing:after {
  border-radius: 8px;
  background: linear-gradient(135deg, #0b2a4d, #101827 45%, #d4af37 46% 54%, #0b2a4d 55%);
  box-shadow: 0 0 22px rgba(212,175,55,.28);
}
.process-visual.diecut:after {
  border: 2px solid #0b2a4d;
  clip-path: polygon(8% 12%, 78% 12%, 94% 42%, 82% 88%, 18% 88%, 8% 68%);
  background: rgba(255,255,255,.72);
}
.process-visual.qc:after {
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 30%, #28a745 0 10px, transparent 11px),
    linear-gradient(#fff, #fff);
  box-shadow: inset 0 0 0 2px #d6e0eb;
}
.process-visual.delivery:after {
  border-radius: 8px;
  background:
    linear-gradient(#b98952, #d6b179) 0 40%/48% 42% no-repeat,
    linear-gradient(#0b2a4d, #0b2a4d) 64% 56%/46% 24% no-repeat,
    radial-gradient(circle at 70% 82%, #0b2a4d 0 8px, transparent 9px),
    radial-gradient(circle at 92% 82%, #0b2a4d 0 8px, transparent 9px);
}
.production-flow b,
.production-flow p { padding: 0 18px; }
.production-flow b { color: var(--navy); }
.production-flow p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.quality-check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quality-check-grid article,
.capability-points article,
.cert-support-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}
.quality-check-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #edf5fd;
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
}
.quality-check-grid b,
.capability-points b,
.cert-support-grid b {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}
.quality-check-grid ul,
.capability-points span,
.cert-support-grid span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.quality-check-grid ul {
  display: grid;
  gap: 7px;
  padding-left: 16px;
}
.equipment-photo {
  min-height: 440px;
  border-radius: 8px;
  background: #edf2f7 center/cover no-repeat;
  box-shadow: 0 18px 44px rgba(7,31,65,.08);
}
.capability-points,
.cert-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.cert-support-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 0;
}
.cert-support-grid article {
  min-height: 150px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.product-detail-stack .soft-panel {
  margin-inline: 0;
  padding: 58px;
  border-radius: 10px;
  overflow: hidden;
}
.product-detail-stack > section {
  max-width: 100%;
}
.static-network-map { min-height: 720px; background: #fff; }
.static-world-map {
  position: absolute;
  inset: 28px 42px 190px;
  z-index: 1;
  background: url("assets/world-map-reference-clean-hd-optimized.jpg") center/contain no-repeat;
  opacity: .96;
  image-rendering: auto;
}
.static-flight-layer {
  position: absolute;
  inset: 28px 42px 190px;
  z-index: 2;
  width: calc(100% - 84px);
  height: calc(100% - 218px);
  pointer-events: none;
}
.static-flight-layer path {
  fill: none;
  stroke: #2f3640;
  stroke-width: 1.4;
  stroke-dasharray: 6 8;
  stroke-linecap: round;
  opacity: .62;
}
.route-plane {
  position: absolute;
  z-index: 4;
  color: #252b33;
  font-size: 19px;
  line-height: 1;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(255,255,255,.75));
}
.plane-na { left: 50%; top: 34%; transform: rotate(-165deg); }
.plane-eu { left: 59%; top: 28%; transform: rotate(-32deg); }
.plane-jp { left: 83%; top: 42%; transform: rotate(-8deg); }
.plane-au { left: 84%; top: 67%; transform: rotate(54deg); }
.plane-af { left: 64%; top: 60%; transform: rotate(150deg); }
.destination-label {
  position: absolute;
  z-index: 3;
  color: #7d8896;
  font-size: 12px;
  font-weight: 900;
}
.label-na { left: 21%; top: 29%; }
.label-eu { left: 52%; top: 22%; }
.label-jp { left: 83%; top: 36%; }
.label-au { left: 81%; top: 77%; }
.label-af { left: 52%; top: 65%; }
.static-network-map .map-point { z-index: 8; }
.point-baoan { left: 76.7%; top: 46.5%; }
.point-guangming { left: 78.4%; top: 43.1%; }
.point-huizhou { left: 81.2%; top: 44.7%; }
.point-vietnam { left: 77.8%; top: 56.3%; }
.map-point:focus-visible .map-popup,
.map-point.active .map-popup {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.map-base-cards {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.base-info-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(184,199,217,.9);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 34px rgba(7,31,65,.1);
}
.base-info-card span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}
.base-info-card b {
  color: var(--navy);
  font-size: 14px;
}
.base-info-card p {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.base-thumb {
  grid-row: span 3;
  width: 62px;
  height: 62px;
  border-radius: 7px;
  border: 1px solid #d8e2ee;
  background: #edf2f7;
  position: relative;
  overflow: hidden;
}
.base-thumb:before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  height: 34px;
  border-radius: 3px 3px 0 0;
  background: #0b2a4d;
}
.base-thumb:after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 20px;
  height: 4px;
  background: repeating-linear-gradient(90deg, #fff 0 4px, transparent 4px 8px);
}
.baoan-thumb { background: linear-gradient(135deg, #e8eef5, #fff); }
.guangming-thumb { background: linear-gradient(135deg, #dbe7f3, #f8fbff); }
.huidong-thumb { background: linear-gradient(135deg, #edf2f7, #cbd8e6); }
.vietnam-thumb { background: linear-gradient(135deg, #eef5ee, #f8fbff); }
.footprint-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.footprint-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(7,31,65,.055);
}
.footprint-grid article > div {
  height: 190px;
  background: #edf2f7 center/cover no-repeat;
}
.footprint-grid h3,
.footprint-grid p,
.footprint-grid span {
  margin-left: 20px;
  margin-right: 20px;
}
.footprint-grid h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 22px;
}
.footprint-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.footprint-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.confidence-grid article:nth-child(3) {
  border-color: rgba(0,64,128,.38);
  background: linear-gradient(180deg, #f5f9fe, #fff 74%);
  box-shadow: 0 20px 46px rgba(0,64,128,.11);
}
.confidence-grid article:nth-child(3):before {
  background: linear-gradient(180deg, var(--blue), #5f83a9);
  opacity: 1;
}
.confidence-grid article:nth-child(3) b {
  background: #e6f0fa;
  box-shadow: inset 0 0 0 1px rgba(0,64,128,.08);
}
@media (max-width: 980px) {
  .detail-intro-section,
  .factory-split { grid-template-columns: 1fr; }
  .material-grid,
  .finish-grid,
  .production-flow,
  .quality-check-grid,
  .footprint-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-support-grid { grid-template-columns: repeat(2, 1fr); }
  .production-flow article:after { display: none; }
  .map-base-cards { grid-template-columns: repeat(2, 1fr); }
  .static-network-map { min-height: 860px; }
  .static-world-map {
    inset: 28px 42px 350px;
  }
  .static-flight-layer {
    inset: 28px 42px 350px;
    width: calc(100% - 84px);
    height: calc(100% - 378px);
  }
}
@media (max-width: 640px) {
  .material-grid,
  .finish-grid,
  .custom-visual-grid,
  .production-flow,
  .quality-check-grid,
  .capability-points,
  .cert-support-grid,
  .footprint-grid { grid-template-columns: 1fr; }
  .product-detail-stack .soft-panel {
    padding: 34px 20px;
  }
  .static-network-map { min-height: 980px; }
  .static-world-map,
  .static-flight-layer {
    inset: 24px 18px 590px;
    width: calc(100% - 36px);
    height: calc(100% - 614px);
  }
  .map-base-cards {
    grid-template-columns: 1fr;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .destination-label { font-size: 10px; }
  .map-popup { width: 245px; }
}


/* Product detail: footer gallery cert final polish */
.footer {
  height: auto;
  overflow: visible;
}

.footer-grid {
  align-items: start;
}

.footer .qr-grid {
  display: grid;
  grid-template-columns: repeat(2, 82px);
  gap: 10px;
  align-items: start;
  justify-content: start;
}

.footer .qr-card {
  display: grid !important;
  grid-template-rows: 82px auto !important;
  justify-items: center;
  align-items: start;
  gap: 7px !important;
  min-width: 82px;
  margin: 0;
}

.footer a.qr-card,
body:has(.product-detail-hero) .footer a.qr-card {
  display: grid !important;
  grid-template-rows: 82px auto !important;
  gap: 7px !important;
  margin: 0 !important;
}

.footer .qr-card img,
.footer .qr-card span {
  width: 82px;
  height: 82px;
  margin: 0;
}

.footer .qr-card em {
  display: block;
  width: 82px;
  min-height: 14px;
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

/* Home export support: G7 color card exact visual */
.confidence-grid article:nth-child(3) {
  border-color: rgba(0, 64, 128, .54) !important;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 72%) !important;
  box-shadow: 0 20px 48px rgba(0, 64, 128, .12) !important;
}

.confidence-grid article:nth-child(3):before {
  background: linear-gradient(180deg, #004080, #78a1ca) !important;
  opacity: 1 !important;
}

.confidence-grid article:nth-child(3) .support-label-row {
  position: relative !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  height: 44px !important;
  margin-bottom: 10px !important;
  overflow: visible !important;
}

.confidence-grid article:nth-child(3) .support-label-row b {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 58px !important;
  height: 34px !important;
  padding: 0 12px !important;
  margin: 0 !important;
  border-radius: 18px !important;
  background: #eef4fb !important;
  color: #004080 !important;
  box-shadow: inset 0 0 0 1px rgba(0, 64, 128, .08) !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

.confidence-grid article:nth-child(3) .mini-medal {
  display: block !important;
  width: 44px !important;
  height: 52px !important;
  margin-top: -4px !important;
  flex: 0 0 44px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: url("assets/g7-color-medal.png") center / contain no-repeat !important;
  box-shadow: none !important;
  transform: none !important;
}

.confidence-grid article:nth-child(3) .mini-medal::before,
.confidence-grid article:nth-child(3) .mini-medal::after {
  content: none !important;
  display: none !important;
}

/* Case studies hero: refined product distance */
.page-hero.case-hero {
  min-height: clamp(430px, 30vw, 510px) !important;
  background:
    linear-gradient(90deg, rgba(6,29,59,.99) 0%, rgba(6,29,59,.96) 34%, rgba(6,29,59,.75) 54%, rgba(6,29,59,.34) 76%, rgba(6,29,59,.12) 100%),
    linear-gradient(180deg, rgba(6,29,59,.05), rgba(6,29,59,.2)),
    url("assets/case-hero-export-projects.jpg") right bottom / min(1500px, 78vw) auto no-repeat,
    #061d3b !important;
}

.page-hero.case-hero .wrap {
  position: relative !important;
  z-index: 1 !important;
}

.page-hero.case-hero h1 {
  max-width: 650px !important;
}

.page-hero.case-hero p {
  max-width: 560px !important;
}

@media (max-width: 980px) {
  .page-hero.case-hero {
    min-height: 500px !important;
    background:
      linear-gradient(90deg, rgba(6,29,59,.99) 0%, rgba(6,29,59,.96) 48%, rgba(6,29,59,.72) 74%, rgba(6,29,59,.32) 100%),
      linear-gradient(180deg, rgba(6,29,59,.06), rgba(6,29,59,.22)),
      url("assets/case-hero-export-projects.jpg") right bottom / auto 92% no-repeat,
      #061d3b !important;
  }
}

@media (max-width: 640px) {
  .page-hero.case-hero {
    min-height: 620px !important;
    align-items: start !important;
    padding-top: 58px !important;
    background:
      linear-gradient(180deg, rgba(6,29,59,.99) 0%, rgba(6,29,59,.96) 38%, rgba(6,29,59,.78) 60%, rgba(6,29,59,.42) 100%),
      url("assets/case-hero-export-projects.jpg") 74% bottom / auto 62% no-repeat,
      #061d3b !important;
  }
}

/* About map: restored zoom and pan viewport */
.static-network-map .map-viewport {
  touch-action: none;
}

.static-network-map .map-stage {
  transition: transform .16s ease;
}

.static-network-map.is-dragging .map-stage {
  transition: none;
}

/* About map: free real Leaflet map */
.real-network-map {
  min-height: 640px;
  padding: 0;
  background: #eef3f8;
}

.real-map-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 640px;
  background:
    linear-gradient(rgba(239, 244, 249, .84), rgba(239, 244, 249, .84)),
    url("/assets/world-map-reference-clean-hd-optimized.jpg") center / contain no-repeat,
    #e7edf4;
}

.real-network-map .leaflet-container {
  font-family: inherit;
  color: var(--navy);
  background: transparent;
}

.real-network-map .leaflet-tile-pane {
  opacity: .78;
}

.real-network-map .leaflet-control-zoom a {
  color: var(--navy);
  font-weight: 900;
}

.real-network-map .leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7,31,65,.18);
}

.real-network-map .leaflet-popup-content {
  margin: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.real-network-map .leaflet-popup-content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 14px;
}

.real-map-marker {
  display: grid;
  place-items: center;
}

.real-map-marker span {
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(231, 79, 32, .16), 0 12px 24px rgba(7,31,65,.2);
}

.base-marker-dot span {
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  background: var(--orange);
}

.market-marker-dot span {
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  background: #004080;
  box-shadow: 0 0 0 4px rgba(0,64,128,.15), 0 10px 20px rgba(7,31,65,.16);
}

.real-map-legend {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 500;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border: 1px solid rgba(184,199,217,.88);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 32px rgba(7,31,65,.12);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.real-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(7,31,65,.08);
}

.legend-dot.base { background: var(--orange); }
.legend-dot.market { background: #004080; }

.map-fallback {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: var(--navy);
}

@media (max-width: 640px) {
  .real-network-map,
  .real-map-canvas {
    min-height: 520px;
  }
}

/* About map: English labels and curved flight routes */
.real-network-map .leaflet-container {
  background: #eef3f8;
}

.route-plane-icon {
  display: grid;
  place-items: center;
  color: #08284d;
  font-size: 20px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(255,255,255,.85)) drop-shadow(0 6px 12px rgba(7,31,65,.18));
  pointer-events: none;
}

.route-plane-icon span {
  display: block;
  transform-origin: 50% 50%;
}

/* Priority launch fixes: stable map fallback and mobile detail overflow */
.real-network-map .leaflet-container,
.real-network-map .leaflet-pane,
.real-network-map .leaflet-map-pane {
  background: transparent !important;
}

.real-network-map .real-map-canvas.leaflet-container {
  background:
    linear-gradient(rgba(239, 244, 249, .84), rgba(239, 244, 249, .84)),
    url("/assets/world-map-reference-clean-hd-optimized.jpg") center / contain no-repeat,
    #e7edf4 !important;
}


/* About map: base hover intro cards */
.real-network-map .base-intro-popup .leaflet-popup-content-wrapper {
  border: 1px solid rgba(184,199,217,.92);
  border-radius: 8px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 20px 48px rgba(7,31,65,.2);
}

.real-network-map .base-intro-popup .leaflet-popup-tip {
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(184,199,217,.72);
  box-shadow: 0 10px 20px rgba(7,31,65,.12);
}

.base-intro-card {
  display: grid;
  gap: 5px;
  width: 245px;
}

.base-intro-card em {
  color: #004080;
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.base-intro-card strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}

.base-intro-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* About map: base popup images */
.base-intro-card {
  width: 280px;
}

.base-intro-card img {
  width: 100%;
  height: 118px;
  display: block;
  margin-bottom: 7px;
  border: 1px solid rgba(216,226,238,.9);
  border-radius: 7px;
  object-fit: cover;
  background: #edf2f7;
}

@media (max-width: 640px) {
  .base-intro-card {
    width: 238px;
  }
  .base-intro-card img {
    height: 96px;
  }
}

/* Launch polish: clearer home hero copy, full-card product links, shorter detail nav */
.static-hero .hero-eyebrow {
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 4px;
  background: rgba(4,24,50,.46);
  color: #f4f8ff;
  text-shadow: 0 1px 10px rgba(0,0,0,.38);
}

.static-hero .hero-subtitle {
  color: #f1f6ff;
  text-shadow: 0 1px 12px rgba(0,0,0,.42);
}

.catalog-main .product-card-link {
  color: inherit;
  cursor: pointer;
}

.catalog-main .product-card-link:focus-visible {
  outline: 3px solid rgba(255,90,18,.45);
  outline-offset: 3px;
}

body:has(.product-detail-hero) .nav-actions .btn-orange {
  display: inline-flex !important;
}

/* Header navigation dropdowns */
@media (max-width: 980px) {
  .nav.open .links {
    gap: 0;
  }

  .nav.open .links .nav-item {
    display: grid;
    min-height: 0;
  }

  .nav.open .links .nav-link,
  .nav.open .links > .nav-link {
    display: block;
    min-height: 0;
    padding: 14px 18px;
    border-bottom: 1px solid #edf2f7;
    color: #071f41;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
  }

  .nav.open .links .active:after {
    display: none;
  }

  .nav.open .has-dropdown > .nav-link:before {
    float: right;
    margin-top: 4px;
  }

  .nav.open .links .nav-dropdown {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    padding: 0 0 8px;
    border: 0;
    border-bottom: 1px solid #edf2f7;
    border-radius: 0;
    background: #f7fafc;
    box-shadow: none;
    transform: none;
  }

  .nav.open .links .nav-dropdown a {
    padding: 10px 18px 10px 34px;
    border-radius: 0;
    color: #2f4660;
    font-size: 14px;
    font-weight: 800;
  }

  .nav.open .links .nav-dropdown a:hover,
  .nav.open .links .nav-dropdown a:focus-visible {
    background: #fff;
    color: var(--orange);
  }

  body:has(.product-detail-hero) .nav-actions .btn-orange {
    display: inline-flex !important;
  }
}

/* Packaging guides */
.guide-hero .eyebrow,
.article-hero .eyebrow,
.article-detail-hero .eyebrow,
.article-story-hero .eyebrow,
.materials-redesign-hero .eyebrow,
.materials-guide-page .materials-hero .eyebrow,
.structure-hero-copy .eyebrow,
.surface-breadcrumb {
  display: none !important;
}

.guide-page {
  background: #fff;
}

.guide-page section {
  scroll-margin-top: 92px;
}

.guide-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3, 22, 48, .92) 0%, rgba(3, 22, 48, .78) 43%, rgba(3, 22, 48, .22) 100%),
    url("/assets/pi-hero-supplier-packaging-desktop-v2.jpg") right center / cover no-repeat;
}

.guide-hero .wrap {
  max-width: 1120px;
}

.guide-hero h1 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .98;
}

.guide-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255,255,255,.88);
  font-size: 18px;
}

.guide-intro-section {
  padding: 72px 0 24px;
}

.guide-intro {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: end;
}

.guide-intro h2 {
  color: var(--navy);
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.02;
}

.guide-intro p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px 0 74px;
}

.guide-card {
  min-height: 245px;
  padding: 30px 28px;
  border: 1px solid #d7e3ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 31, 65, .06);
}

.guide-card span {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border: 1px solid #b9d2ea;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ff5a12 0 4px, transparent 5px),
    linear-gradient(135deg, #eef6ff, #fff);
}

.guide-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.08;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.guide-process-section {
  padding: 70px 0;
}

.guide-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guide-step-grid article {
  min-height: 190px;
  padding: 26px 24px;
  border: 1px solid #d2e0ed;
  border-radius: 8px;
  background: #fff;
}

.guide-step-grid i {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.guide-step-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
}

.guide-step-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.guide-check-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  padding: 74px 0 84px;
}

.guide-check-panel,
.guide-related {
  border: 1px solid #d7e3ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 31, 65, .06);
}

.guide-check-panel {
  padding: 38px;
}

.guide-check-panel h2 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1.05;
}

.guide-check-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-check-panel li {
  position: relative;
  padding-left: 24px;
  color: #173250;
  font-weight: 800;
  line-height: 1.55;
}

.guide-check-panel li:before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.guide-related {
  align-self: start;
  padding: 24px;
}

.guide-related > b {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 18px;
}

.guide-related a {
  display: block;
  padding: 16px 0;
  border-top: 1px solid #e5edf5;
  color: inherit;
  text-decoration: none;
}

.guide-related strong,
.guide-related span {
  display: block;
}

.guide-related strong {
  color: var(--navy);
  font-size: 16px;
}

.guide-related span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.guide-related a:hover strong,
.guide-related a:focus-visible strong {
  color: var(--orange);
}

@media (max-width: 980px) {
  .guide-hero {
    min-height: 320px;
  }

  .guide-intro,
  .guide-check-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .guide-card-grid,
  .guide-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-check-panel ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .guide-hero {
    min-height: 300px;
    background:
      linear-gradient(90deg, rgba(3, 22, 48, .94) 0%, rgba(3, 22, 48, .82) 100%),
      url("/assets/pi-hero-supplier-packaging-desktop-v2.jpg") center / cover no-repeat;
  }

  .guide-hero h1 {
    font-size: 38px;
  }

  .guide-hero p:not(.eyebrow),
  .guide-intro p:last-child {
    font-size: 15px;
  }

  .guide-intro-section {
    padding: 50px 0 10px;
  }

  .guide-card-grid,
  .guide-step-grid {
    grid-template-columns: 1fr;
  }

  .guide-card {
    min-height: 0;
    padding: 24px;
  }

  .guide-process-section {
    padding: 52px 0;
  }

  .guide-check-layout {
    padding: 54px 0 64px;
  }

  .guide-check-panel {
    padding: 26px 22px;
  }
}

/* Packaging articles index */
.article-index-page {
  background: #f7fbff;
}

.article-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3, 22, 48, .96) 0%, rgba(3, 22, 48, .86) 38%, rgba(3, 22, 48, .28) 100%),
    url("/assets/hero-brand-packaging-v12.jpg") right center / cover no-repeat;
}

.article-hero-copy {
  max-width: 610px;
}

.article-hero .eyebrow {
  color: #fff;
}

.article-hero h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(48px, 5.5vw, 76px);
  line-height: .98;
}

.article-hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 17px;
  line-height: 1.75;
}

.article-index-section {
  padding: 46px 0 70px;
}

.article-section-title {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.08;
}

.featured-articles {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 18px;
}

.article-card {
  display: block;
  overflow: hidden;
  border: 1px solid #d7e3ef;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(7, 31, 65, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.article-card:hover,
.article-card:focus-visible {
  border-color: #9ebbd8;
  box-shadow: 0 22px 54px rgba(7, 31, 65, .12);
  transform: translateY(-2px);
}

.article-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #eaf1f8;
}

.article-card > div {
  padding: 24px 26px;
}

.article-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.08;
}

.article-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.article-card b {
  color: #073b74;
  font-size: 14px;
  font-weight: 900;
}

.featured-main img {
  height: 300px;
}

.featured-main h3 {
  max-width: 560px;
  font-size: 31px;
}

.featured-side {
  display: grid;
  gap: 18px;
}

.featured-horizontal {
  display: grid;
  grid-template-columns: 46% minmax(0, 1fr);
  min-height: 220px;
}

.featured-horizontal img {
  height: 100%;
  min-height: 220px;
}

.featured-horizontal > div {
  padding: 24px;
}

.featured-horizontal h3 {
  font-size: 22px;
}

.featured-horizontal p {
  font-size: 14px;
}

.article-latest-title {
  margin-top: 42px;
}

.latest-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.latest-articles .article-card img {
  height: 190px;
}

.latest-articles .article-card h3 {
  font-size: 22px;
}

.article-topic-title {
  margin-top: 42px;
}

.article-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.article-topic-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 18px;
  border: 1px solid #d7e3ef;
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(7, 31, 65, .06);
}

.article-topic-card img {
  width: 96px;
  height: 82px;
  object-fit: cover;
  border-radius: 4px;
  background: #eef4fa;
}

.article-topic-card h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.18;
}

.article-topic-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.article-topic-card b {
  color: #073b74;
  font-size: 18px;
}

.article-topic-card:hover h3,
.article-topic-card:focus-visible h3 {
  color: var(--orange);
}

.article-help-cta {
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(5, 43, 82, .94)),
    url("/assets/pi-hero-supplier-packaging-desktop-v2.jpg") right center / auto 130% no-repeat;
  color: #fff;
}

.article-help-cta .wrap {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 150px;
}

.article-help-icon {
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.article-help-cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 32px;
}

.article-help-cta p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
}

/* Packaging article detail */
.article-detail-page {
  background: #f7fbff;
  color: var(--ink);
}

.article-detail-page .wrap {
  width: min(1180px, calc(100% - 64px));
}

.article-detail-hero {
  padding: 0;
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98) 0%, rgba(4, 28, 58, .94) 42%, rgba(4, 28, 58, .12) 100%),
    #061f3e;
}

.article-detail-hero-grid {
  min-height: 420px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.article-detail-hero .eyebrow {
  color: rgba(255,255,255,.82);
}

.article-detail-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
}

.article-detail-hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 17px;
  line-height: 1.7;
}

.article-detail-hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 26px 80px rgba(0,0,0,.26);
}

.article-detail-body {
  padding: 48px 0 72px;
}

.article-detail-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 92px;
  padding: 20px;
  border: 1px solid #d7e3ef;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 31, 65, .07);
}

.article-toc b,
.article-toc a {
  display: block;
}

.article-toc b {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 15px;
}

.article-toc a {
  padding: 9px 0;
  border-top: 1px solid #e4edf6;
  color: #486078;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--orange);
}

.article-detail-content {
  padding: 34px;
  border: 1px solid #d7e3ef;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 31, 65, .07);
}

.article-detail-content h2 {
  scroll-margin-top: 96px;
  margin: 40px 0 18px;
  color: var(--navy);
  font-size: 31px;
  line-height: 1.1;
}

.article-detail-content h2:first-of-type {
  margin-top: 32px;
}

.article-detail-content p {
  margin: 0 0 16px;
  color: #354b64;
  font-size: 16px;
  line-height: 1.72;
}

.article-lead {
  color: var(--navy) !important;
  font-size: 19px !important;
  font-weight: 800;
  line-height: 1.6 !important;
}

.article-factor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.article-factor-grid section,
.article-material-list section,
.article-industry-grid section,
.article-support-panel {
  border: 1px solid #d7e3ef;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.article-factor-grid img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.article-factor-grid div {
  padding: 18px;
}

.article-factor-grid h3,
.article-industry-grid h3,
.article-support-panel h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.article-factor-grid p,
.article-industry-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.article-material-list {
  display: grid;
  gap: 18px;
}

.article-material-list section {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
}

.article-material-list img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.article-material-list section > div {
  padding: 24px;
}

.article-material-list h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 26px;
}

.article-spec {
  margin-bottom: 10px !important;
  color: var(--orange) !important;
  font-size: 13px !important;
  font-weight: 900;
}

.article-pro-con {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.article-pro-con div {
  padding: 14px;
  border-radius: 8px;
  background: #f4f8fc;
}

.article-pro-con b {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
}

.article-pro-con ul,
.article-support-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #435970;
  font-size: 13px;
  line-height: 1.55;
}

.article-table-wrap {
  overflow: auto;
  border: 1px solid #d7e3ef;
  border-radius: 9px;
}

.article-comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}

.article-comparison-table th {
  padding: 13px 12px;
  background: var(--navy);
  color: #fff;
  text-align: left;
}

.article-comparison-table td {
  padding: 12px;
  border-top: 1px solid #e4edf6;
  color: #334b65;
}

.article-rating {
  display: inline-flex;
  gap: 4px;
}

.article-rating i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--orange);
  border-radius: 50%;
}

.article-rating i.filled {
  background: var(--orange);
}

.article-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.article-industry-grid section {
  padding: 20px;
}

.article-industry-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 13px;
  line-height: 1.4;
}

.article-support-panel {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  margin: 20px 0 28px;
}

.article-support-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.article-support-panel div {
  padding: 24px;
}

.article-final-cta {
  padding: 28px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(5, 43, 82, .9)),
    url("/assets/materials-hero-reference.jpg") right center / auto 130% no-repeat;
  color: #fff;
}

.article-final-cta h2 {
  margin: 0 0 10px;
  color: #fff;
}

.article-final-cta p {
  max-width: 680px;
  color: rgba(255,255,255,.86);
}

.article-story-page {
  background: #f8fbff;
}

.article-story-hero {
  padding: 76px 0 54px;
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .9)),
    url("/assets/materials-hero-clean.jpg") right center / auto 118% no-repeat,
    var(--navy);
  color: #fff;
}

.article-story-hero .wrap {
  width: min(980px, calc(100% - 64px));
  margin-left: max(64px, calc((100% - 1180px) / 2));
}

.article-story-hero .eyebrow {
  color: rgba(255,255,255,.8);
}

.article-story-hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.02;
}

.article-story-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  line-height: 1.65;
}

.article-structure-comparison .article-story-hero {
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .9)),
    url("/assets/pi-hero-packaging.jpg") right center / auto 118% no-repeat,
    var(--navy);
}

.article-finishing-guide .article-story-hero {
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .9)),
    url("/assets/finish-gold-foil.jpg") right center / auto 128% no-repeat,
    var(--navy);
}

.article-greyboard-guide .article-story-hero {
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .9)),
    url("/assets/material-greyboard.jpg") right center / auto 118% no-repeat,
    var(--navy);
}

.article-moq-guide .article-story-hero {
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .9)),
    url("/assets/pi-outer-cartons.jpg") right center / auto 118% no-repeat,
    var(--navy);
}

.article-carton-structure-guide .article-story-hero {
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .9)),
    url("/assets/custom-structure-design.jpg") right center / auto 118% no-repeat,
    var(--navy);
}

.article-paper-bags-guide .article-story-hero {
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .9)),
    url("/assets/product-paper-bags.jpg") right center / auto 118% no-repeat,
    var(--navy);
}

.article-spot-uv-guide .article-story-hero {
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .9)),
    url("/assets/finish-spot-uv.jpg") right center / auto 128% no-repeat,
    var(--navy);
}

.article-export-checklist-guide .article-story-hero {
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .9)),
    url("/assets/process-packaging-delivery.jpg") right center / auto 118% no-repeat,
    var(--navy);
}

.article-story {
  width: min(900px, calc(100% - 64px));
  padding: 46px 0 74px;
}

.article-story-main-image,
.article-story-wide-image {
  margin: 0 0 34px;
}

.article-story-main-image img,
.article-story-wide-image img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(7, 31, 65, .08);
}

.article-story-main-image img {
  height: 330px;
}

.article-story-wide-image {
  margin-top: 28px;
}

.article-story-wide-image img {
  height: 260px;
}

.article-story h2 {
  margin: 48px 0 18px;
  color: var(--navy);
  font-size: 34px;
  line-height: 1.1;
}

.article-story h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.14;
}

.article-story p {
  margin: 0 0 18px;
  color: #334b65;
  font-size: 17px;
  line-height: 1.78;
}

.article-story .article-lead {
  margin-bottom: 18px;
  color: var(--navy) !important;
  font-size: 21px !important;
  font-weight: 800;
  line-height: 1.58 !important;
}

.article-material-prose {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid #dce7f2;
}

.article-material-prose section {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid #dce7f2;
}

.article-material-prose img {
  width: 190px;
  height: 142px;
  object-fit: cover;
  border-radius: 8px;
  background: #edf3f8;
}

.article-material-prose .article-spec {
  margin: 0 0 8px !important;
  color: var(--orange) !important;
  font-size: 13px !important;
  font-weight: 900;
}

.article-material-prose p {
  font-size: 15px;
  line-height: 1.66;
}

.article-story .article-table-wrap {
  margin: 22px 0 6px;
  border-radius: 8px;
  background: #fff;
}

.article-story .article-comparison-table {
  font-size: 14px;
}

.article-industry-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.article-industry-list li {
  padding: 14px 0 14px 20px;
  border-left: 3px solid var(--orange);
  color: #334b65;
  font-size: 16px;
  line-height: 1.62;
}

.article-industry-list strong {
  color: var(--navy);
}

.article-story-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 48px;
  padding: 28px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(5, 43, 82, .92)),
    var(--navy);
  color: #fff;
}

.article-story-cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 30px;
}

.article-story-cta p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .featured-articles,
  .latest-articles,
  .article-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-detail-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

  .article-material-list section,
  .article-support-panel {
    grid-template-columns: 1fr;
  }

  .article-material-list img,
  .article-support-panel img {
    height: 260px;
    min-height: 0;
  }

  .article-story-hero .wrap,
  .article-story {
    width: min(100% - 48px, 900px);
    margin-left: auto;
    margin-right: auto;
  }

  .article-story-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .article-hero {
    min-height: 340px;
    background:
      linear-gradient(90deg, rgba(3, 22, 48, .96), rgba(3, 22, 48, .82)),
      url("/assets/hero-brand-packaging-v12.jpg") center / cover no-repeat;
  }

  .article-index-section {
    padding: 34px 0 52px;
  }

  .featured-articles,
  .latest-articles,
  .article-topic-grid,
  .featured-horizontal,
  .article-help-cta .wrap {
    grid-template-columns: 1fr;
  }

  .article-card img,
  .featured-main img,
  .featured-horizontal img,
  .latest-articles .article-card img {
    height: 210px;
    min-height: 0;
  }

  .article-card > div,
  .featured-horizontal > div {
    padding: 22px;
  }

  .featured-main h3,
  .article-card h3 {
    font-size: 24px;
  }

  .article-topic-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .article-topic-card img {
    width: 88px;
  }

  .article-help-cta .wrap {
    padding: 34px 0;
    gap: 16px;
    text-align: left;
  }

  .article-detail-page .wrap {
    width: min(100% - 32px, 1180px);
  }

  .article-detail-hero-grid,
  .article-factor-grid,
  .article-pro-con,
  .article-industry-grid {
    grid-template-columns: 1fr;
  }

  .article-detail-hero-grid {
    min-height: 0;
    padding: 42px 0;
    gap: 24px;
  }

  .article-detail-hero h1 {
    font-size: 38px;
  }

  .article-detail-hero img {
    height: 230px;
  }

  .article-detail-body {
    padding: 34px 0 52px;
  }

  .article-detail-content {
    padding: 22px;
  }

  .article-detail-content h2 {
    font-size: 26px;
  }

  .article-final-cta {
    padding: 24px;
    background:
      linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(5, 43, 82, .92)),
      var(--navy);
  }

  .article-story-hero {
    padding: 52px 0 40px;
    background:
      linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .88)),
      url("/assets/materials-hero-clean.jpg") center / cover no-repeat,
      var(--navy);
  }

  .article-structure-comparison .article-story-hero {
    background:
      linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .88)),
      url("/assets/pi-hero-packaging.jpg") center / cover no-repeat,
      var(--navy);
  }

  .article-finishing-guide .article-story-hero {
    background:
      linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .88)),
      url("/assets/finish-gold-foil.jpg") center / cover no-repeat,
      var(--navy);
  }

  .article-greyboard-guide .article-story-hero {
    background:
      linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .88)),
      url("/assets/material-greyboard.jpg") center / cover no-repeat,
      var(--navy);
  }

  .article-moq-guide .article-story-hero {
    background:
      linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .88)),
      url("/assets/pi-outer-cartons.jpg") center / cover no-repeat,
      var(--navy);
  }

  .article-carton-structure-guide .article-story-hero {
    background:
      linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .88)),
      url("/assets/custom-structure-design.jpg") center / cover no-repeat,
      var(--navy);
  }

  .article-paper-bags-guide .article-story-hero {
    background:
      linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .88)),
      url("/assets/product-paper-bags.jpg") center / cover no-repeat,
      var(--navy);
  }

  .article-spot-uv-guide .article-story-hero {
    background:
      linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .88)),
      url("/assets/finish-spot-uv.jpg") center / cover no-repeat,
      var(--navy);
  }

  .article-export-checklist-guide .article-story-hero {
    background:
      linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(4, 28, 58, .88)),
      url("/assets/process-packaging-delivery.jpg") center / cover no-repeat,
      var(--navy);
  }

  .article-story-hero .wrap,
  .article-story {
    width: min(100% - 32px, 900px);
  }

  .article-story-hero h1 {
    font-size: 38px;
  }

  .article-story-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .article-story {
    padding: 34px 0 54px;
  }

  .article-story-main-image img {
    height: 230px;
  }

  .article-story-wide-image img {
    height: 200px;
  }

  .article-story h2 {
    margin-top: 38px;
    font-size: 28px;
  }

  .article-story p {
    font-size: 16px;
  }

  .article-material-prose section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-material-prose img {
    width: 100%;
    height: 200px;
  }

  .article-story-cta {
    padding: 24px;
  }
}

/* Packaging materials guide */
.materials-guide-page {
  background: #fff;
  color: var(--ink);
}

.materials-guide-page .wrap {
  width: min(1492px, calc(100% - 92px));
}

.materials-hero {
  min-height: 489px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3, 22, 48, .98) 0%, rgba(3, 22, 48, .94) 36%, rgba(3, 22, 48, .54) 56%, rgba(3, 22, 48, .08) 100%),
    url("/assets/materials-hero-showcase.jpg") right bottom / auto 100% no-repeat,
    #061f3e;
}

.materials-hero .wrap > div {
  max-width: 610px;
  margin-top: -22px;
}

.materials-hero .eyebrow {
  color: #fff;
}

.materials-hero h1 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(52px, 5.1vw, 74px);
  line-height: 1;
}

.materials-hero p:not(.eyebrow) {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  line-height: 1.72;
}

.materials-quick-section {
  position: relative;
  z-index: 2;
  margin-top: -56px;
}

.materials-quick-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #d7e3ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(7, 31, 65, .12);
}

.materials-quick-nav a {
  display: grid;
  min-height: 177px;
  align-content: center;
  justify-items: center;
  gap: 15px;
  padding: 26px 20px;
  border-right: 1px solid #dfe7f1;
  color: var(--navy);
  text-align: center;
}

.materials-quick-nav a:last-child {
  border-right: 0;
}

.materials-quick-nav b {
  max-width: 190px;
  font-size: 16px;
  line-height: 1.18;
}

.materials-quick-icon,
.recommend-icon {
  position: relative;
  display: block;
  width: 76px;
  height: 58px;
  color: var(--navy);
}

.materials-quick-icon:before,
.materials-quick-icon:after,
.recommend-icon:before,
.recommend-icon:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.materials-quick-icon.icon-paperboard:before,
.recommend-icon.icon-folding:before,
.recommend-icon.icon-label:before {
  left: 14px;
  top: 8px;
  width: 46px;
  height: 30px;
  border: 3px solid currentColor;
  transform: skewY(-18deg);
}

.materials-quick-icon.icon-paperboard:after,
.recommend-icon.icon-folding:after,
.recommend-icon.icon-label:after {
  left: 20px;
  top: 20px;
  width: 46px;
  height: 30px;
  border: 3px solid currentColor;
  opacity: .38;
  transform: skewY(-18deg);
}

.materials-quick-icon.icon-corrugated:before,
.recommend-icon.icon-mailer:before {
  left: 7px;
  right: 7px;
  top: 16px;
  height: 28px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  background: repeating-linear-gradient(135deg, transparent 0 9px, currentColor 10px 13px, transparent 14px 20px);
}

.materials-quick-icon.icon-rigid:before,
.recommend-icon.icon-rigid:before,
.recommend-icon.icon-insert:before {
  left: 15px;
  top: 10px;
  width: 42px;
  height: 34px;
  border: 3px solid currentColor;
  transform: skewY(-10deg);
}

.materials-quick-icon.icon-rigid:after,
.recommend-icon.icon-rigid:after,
.recommend-icon.icon-insert:after {
  left: 27px;
  top: 4px;
  width: 38px;
  height: 32px;
  border: 3px solid currentColor;
  opacity: .45;
  transform: skewY(14deg);
}

.materials-quick-icon.icon-specialty:before,
.recommend-icon.icon-bag:before {
  left: 18px;
  top: 7px;
  width: 40px;
  height: 38px;
  border: 3px solid currentColor;
  border-radius: 2px 2px 12px 12px;
}

.materials-quick-icon.icon-specialty:after,
.recommend-icon.icon-bag:after {
  left: 27px;
  top: 2px;
  width: 22px;
  height: 17px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.materials-quick-icon.icon-selection:before {
  left: 22px;
  top: 4px;
  width: 34px;
  height: 46px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.materials-quick-icon.icon-selection:after {
  left: 31px;
  top: 17px;
  width: 18px;
  height: 22px;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  box-shadow: 0 8px 0 -5px currentColor;
}

.materials-content-section {
  padding: 34px 0 70px;
}

.material-page-title {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.1;
}

.material-guide-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.material-guide-card {
  overflow: hidden;
  border: 1px solid #d7e3ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 31, 65, .06);
}

.material-guide-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  background: #eef4fa;
}

.material-guide-card div {
  padding: 16px 18px 18px;
}

.material-guide-card h3 {
  min-height: 42px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.05;
}

.material-guide-card dl,
.material-guide-card dt,
.material-guide-card dd {
  margin: 0;
}

.material-guide-card dt {
  color: #061f3f;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.material-guide-card dd {
  margin-bottom: 8px;
  color: #304760;
  font-size: 12px;
  line-height: 1.35;
}

.material-table-title {
  margin-top: 34px;
}

.material-table-wrap {
  overflow-x: auto;
  border: 1px solid #cdddec;
  border-radius: 6px;
  background: #fff;
}

.material-spec-table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
  font-size: 12px;
}

.material-spec-table th {
  padding: 8px 10px;
  background: var(--navy);
  color: #fff;
  text-align: left;
  font-weight: 900;
}

.material-spec-table td {
  padding: 7px 10px;
  border-top: 1px solid #dbe5ef;
  border-right: 1px solid #e6edf4;
  color: #213a56;
  line-height: 1.25;
}

.material-spec-table td:nth-child(4),
.material-spec-table td:nth-child(5),
.material-spec-table td:nth-child(7) {
  color: #06366a;
  font-weight: 900;
}

.material-spec-table td:last-child {
  border-right: 0;
}

.material-table-note {
  margin: 10px 0 0;
  color: #344b66;
  font-size: 11px;
  line-height: 1.5;
}

.corrugated-reference-section,
.recommended-material-section {
  margin-top: 38px;
}

.corrugated-reference-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.corrugated-reference-layout > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 1px solid #d7e3ef;
  border-radius: 8px;
  object-fit: cover;
  object-position: left center;
  background: #eef4fa;
}

.flute-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #d7e3ef;
  border-radius: 8px;
  background: #fff;
}

.flute-guide-grid article {
  min-height: 172px;
  padding: 16px 14px;
  border-right: 1px solid #dfe7f1;
  border-bottom: 1px solid #dfe7f1;
}

.flute-guide-grid article:nth-child(3n),
.flute-guide-grid article:last-child {
  border-right: 0;
}

.flute-guide-grid article:nth-last-child(-n+3) {
  border-bottom: 0;
}

.flute-guide-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 15px;
}

.flute-visual {
  height: 40px;
  margin-bottom: 18px;
  border: 1px solid #d3b68d;
  background:
    linear-gradient(135deg, transparent 0 18%, #8a5a2c 19% 24%, transparent 25% 50%, #8a5a2c 51% 56%, transparent 57%),
    linear-gradient(#d7a772 0 7px, #f3d6af 8px 32px, #d7a772 33px 40px);
  background-size: 42px 40px, 100% 100%;
}

.flute-guide-grid p {
  margin: 0 0 8px;
  color: #2f4660;
  font-size: 12px;
  line-height: 1.35;
}

.flute-guide-grid b {
  color: #071f41;
}

.recommended-material-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #d7e3ef;
  border-radius: 8px;
  background: #fff;
}

.recommended-material-grid article {
  min-height: 162px;
  padding: 22px 16px;
  border-right: 1px solid #dfe7f1;
  text-align: center;
}

.recommended-material-grid article:last-child {
  border-right: 0;
}

.recommended-material-grid h3 {
  margin: 10px 0 6px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
}

.recommended-material-grid p,
.recommended-material-grid b {
  display: block;
  margin: 0;
  color: #304760;
  font-size: 11px;
  line-height: 1.35;
}

.recommended-material-grid b {
  margin-top: 4px;
  color: var(--navy);
  font-weight: 900;
}

.material-choice-title {
  margin-top: 34px;
}

.material-choice-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.material-choice-grid article {
  position: relative;
  min-height: 172px;
  padding: 22px 16px 18px;
  border: 1px solid #d7e3ef;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.material-choice-grid i {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.material-choice-grid h3 {
  min-height: 34px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
}

.material-choice-grid img {
  width: 58px;
  height: 44px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.material-choice-grid p {
  margin: 0;
  color: #304760;
  font-size: 12px;
  line-height: 1.4;
}

.material-advice-cta {
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(5, 43, 82, .94)),
    url("/assets/pi-hero-supplier-packaging-desktop-v2.jpg") right center / auto 128% no-repeat;
  color: #fff;
}

.material-advice-cta .wrap {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 142px;
}

.material-advice-icon {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.material-advice-cta h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 32px;
}

.material-advice-cta p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .materials-guide-page .wrap {
    width: min(100% - 42px, 1200px);
  }

  .material-guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .corrugated-reference-layout {
    grid-template-columns: 1fr;
  }

  .recommended-material-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .recommended-material-grid article:nth-child(3n) {
    border-right: 0;
  }

  .recommended-material-grid article:nth-child(n+4) {
    border-top: 1px solid #dfe7f1;
  }

  .material-choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .materials-hero {
    min-height: 340px;
    background:
      linear-gradient(90deg, rgba(3, 22, 48, .96), rgba(3, 22, 48, .82)),
      url("/assets/materials-hero-showcase.jpg") center / cover no-repeat;
  }

  .materials-quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .materials-quick-nav a {
    border-bottom: 1px solid #dfe7f1;
  }

  .material-guide-grid,
  .material-choice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recommended-material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flute-guide-grid {
    grid-template-columns: 1fr;
  }

  .flute-guide-grid article,
  .recommended-material-grid article,
  .recommended-material-grid article:nth-child(3n),
  .recommended-material-grid article:nth-last-child(-n+3),
  .recommended-material-grid article:last-child {
    border-right: 0;
    border-bottom: 1px solid #dfe7f1;
  }

  .recommended-material-grid article:nth-child(n+4) {
    border-top: 0;
  }

  .recommended-material-grid article:last-child,
  .flute-guide-grid article:last-child {
    border-bottom: 0;
  }

  .material-advice-cta .wrap {
    grid-template-columns: 1fr;
    padding: 34px 0;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .materials-guide-page .wrap {
    width: min(100% - 28px, 1200px);
  }

  .materials-hero h1 {
    font-size: 40px;
  }

  .materials-quick-nav,
  .material-guide-grid,
  .recommended-material-grid,
  .material-choice-grid {
    grid-template-columns: 1fr;
  }

  .material-guide-card img {
    height: 145px;
  }
}

/* Packaging materials guide rebuild */
.materials-guide-page {
  background: #fff;
}

.materials-guide-page .wrap {
  width: min(1120px, calc(100% - 92px));
}

.materials-guide-page .materials-hero {
  min-height: 300px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3, 22, 48, .98) 0%, rgba(3, 22, 48, .92) 34%, rgba(3, 22, 48, .38) 58%, rgba(3, 22, 48, .04) 100%),
    url("/assets/materials-hero-clean.jpg") right center / auto 100% no-repeat,
    #051f3e;
}

.materials-hero-copy {
  max-width: 450px;
  margin-top: -10px;
}

.materials-guide-page .materials-hero .eyebrow {
  margin-bottom: 18px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .08em;
}

.materials-guide-page .materials-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.04;
}

.materials-guide-page .materials-hero p:not(.eyebrow) {
  max-width: 410px;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1.72;
}

.materials-guide-page .materials-quick-section {
  margin-top: -105px;
  margin-bottom: -66px;
}

.materials-guide-page .materials-quick-nav {
  border-color: #d9e4ef;
  border-radius: 7px;
  box-shadow: 0 16px 40px rgba(6, 27, 58, .11);
}

.materials-guide-page .materials-quick-nav a {
  min-height: 103px;
  gap: 8px;
  padding: 17px 16px 14px;
}

.materials-guide-page .materials-quick-nav b {
  font-size: 13px;
  line-height: 1.18;
}

.materials-guide-page .materials-quick-icon,
.materials-guide-page .recommend-icon,
.materials-guide-page .choice-icon {
  width: 52px;
  height: 40px;
}

.materials-guide-page .materials-content-section {
  padding: 24px 0 30px;
}

.materials-guide-page .materials-content-section section {
  padding: 0;
}

.materials-guide-page .material-page-title {
  margin: 0 0 9px;
  font-size: 23px;
  line-height: 1.08;
}

.materials-guide-page .material-guide-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.materials-guide-page .material-guide-card {
  border-radius: 7px;
  box-shadow: 0 10px 26px rgba(7, 31, 65, .045);
}

.materials-guide-page .material-guide-card img {
  height: 98px;
}

.materials-guide-page .material-guide-card div {
  padding: 12px 13px 14px;
}

.materials-guide-page .material-guide-card h3 {
  min-height: 35px;
  margin-bottom: 9px;
  font-size: 17px;
}

.materials-guide-page .material-guide-card dt {
  font-size: 10px;
  line-height: 1.15;
}

.materials-guide-page .material-guide-card dd {
  margin-bottom: 6px;
  font-size: 10px;
  line-height: 1.24;
}

.materials-guide-page .material-table-title,
.materials-guide-page .corrugated-reference-section,
.materials-lower-grid {
  margin-top: 15px;
}

.materials-guide-page .material-spec-table {
  min-width: 0;
  font-size: 10px;
}

.materials-guide-page .material-spec-table th {
  padding: 5px 8px;
}

.materials-guide-page .material-spec-table td {
  padding: 4px 8px;
  line-height: 1.15;
}

.materials-guide-page .material-table-note {
  margin-top: 7px;
  font-size: 9px;
}

.corrugated-guide-panel {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.corrugated-guide-panel > img {
  width: 100%;
  height: 207px;
  object-fit: cover;
  object-position: left center;
  border: 1px solid #cfddec;
  border-radius: 6px;
  background: #eef4fa;
}

.flute-table-wrap {
  overflow: hidden;
  border: 1px solid #cfddec;
  border-radius: 6px;
  background: #fff;
}

.flute-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}

.flute-table th {
  padding: 5px 7px;
  background: var(--navy);
  color: #fff;
  text-align: left;
  font-weight: 900;
}

.flute-table td {
  padding: 4px 7px;
  border-top: 1px solid #dce6ef;
  border-right: 1px solid #edf2f7;
  color: #243d58;
  line-height: 1.14;
}

.flute-table td:first-child {
  color: var(--navy);
  font-weight: 900;
}

.materials-lower-grid {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 13px;
  align-items: start;
}

.materials-lower-grid .recommended-material-section,
.materials-lower-grid .material-choice-section {
  margin: 0;
}

.materials-guide-page .recommended-material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 7px;
}

.materials-guide-page .recommended-material-grid article {
  min-height: 94px;
  padding: 10px 8px;
}

.materials-guide-page .recommended-material-grid article:nth-child(3n) {
  border-right: 0;
}

.materials-guide-page .recommended-material-grid article:nth-child(n+4) {
  border-top: 1px solid #dfe7f1;
}

.materials-guide-page .recommended-material-grid h3 {
  margin: 4px 0 2px;
  font-size: 11px;
}

.materials-guide-page .recommended-material-grid p,
.materials-guide-page .recommended-material-grid b {
  font-size: 9px;
  line-height: 1.22;
}

.materials-guide-page .recommend-icon {
  margin: 0 auto;
  transform: scale(.78);
  transform-origin: center;
}

.materials-guide-page .material-choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.materials-guide-page .material-choice-grid article {
  min-height: 138px;
  padding: 18px 13px 13px;
  border-radius: 7px;
}

.materials-guide-page .material-choice-grid i {
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  font-size: 11px;
}

.materials-guide-page .material-choice-grid h3 {
  min-height: 25px;
  margin-bottom: 8px;
  font-size: 12px;
}

.materials-guide-page .material-choice-grid p {
  font-size: 10px;
  line-height: 1.28;
}

.choice-icon {
  position: relative;
  display: block;
  margin: 0 auto 8px;
  color: var(--navy);
}

.choice-icon:before,
.choice-icon:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.choice-icon.icon-scale:before {
  left: 8px;
  top: 5px;
  width: 36px;
  height: 25px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.choice-icon.icon-scale:after {
  left: 24px;
  top: 0;
  width: 4px;
  height: 36px;
  background: currentColor;
  box-shadow: -16px 10px 0 -1px currentColor, 16px 10px 0 -1px currentColor;
}

.choice-icon.icon-print:before {
  left: 9px;
  top: 12px;
  width: 34px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.choice-icon.icon-print:after {
  left: 15px;
  top: 3px;
  width: 22px;
  height: 15px;
  border: 3px solid currentColor;
  background: #fff;
}

.choice-icon.icon-spark:before {
  left: 8px;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  transform: rotate(45deg);
}

.choice-icon.icon-spark:after {
  right: 7px;
  bottom: 6px;
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  transform: rotate(45deg);
}

.choice-icon.icon-budget:before {
  left: 8px;
  top: 8px;
  width: 20px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.choice-icon.icon-budget:after {
  right: 8px;
  top: 8px;
  width: 20px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
}

.materials-guide-page .material-advice-cta .wrap {
  min-height: 92px;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 19px;
}

.materials-guide-page .material-advice-icon {
  width: 58px;
  height: 58px;
}

.materials-guide-page .material-advice-cta h2 {
  font-size: 25px;
}

.materials-guide-page .material-advice-cta p {
  font-size: 12px;
}

@media (max-width: 980px) {
  .materials-guide-page .wrap {
    width: min(100% - 34px, 1120px);
  }

  .materials-guide-page .material-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corrugated-guide-panel,
  .materials-lower-grid {
    grid-template-columns: 1fr;
  }

  .materials-guide-page .material-spec-table,
  .flute-table {
    min-width: 760px;
  }

  .flute-table-wrap,
  .materials-guide-page .material-table-wrap {
    overflow-x: auto;
  }
}

/* Packaging materials full redesign */
.materials-redesign-page {
  background: #f7fafc;
  color: var(--ink);
}

.materials-redesign-page .wrap {
  width: min(1180px, calc(100% - 64px));
}

.materials-redesign-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(115deg, #041c3a 0%, #05264d 58%, #071f3f 100%),
    #061f3e;
}

.materials-redesign-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 115px;
  background: linear-gradient(0deg, rgba(4, 28, 58, .34), rgba(4, 28, 58, 0));
  pointer-events: none;
}

.materials-redesign-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: 40px;
  align-items: center;
}

.materials-redesign-hero-copy {
  max-width: 520px;
  padding: 12px 0 18px;
}

.materials-redesign-hero .eyebrow,
.materials-redesign-heading .eyebrow {
  margin: 0 0 12px;
  color: #6c819b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.materials-redesign-hero .eyebrow {
  color: rgba(255,255,255,.9);
}

.materials-redesign-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(52px, 5.5vw, 76px);
  line-height: .98;
}

.materials-redesign-hero p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 17px;
  line-height: 1.75;
}

.materials-hero-visual {
  position: relative;
  min-height: 312px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: #09264b;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}

.materials-hero-visual img {
  width: 100%;
  height: 312px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.materials-hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 28, 58, .16), rgba(4, 28, 58, 0) 48%, rgba(4, 28, 58, .22));
  pointer-events: none;
}

.materials-hero-samples {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.materials-hero-samples span {
  padding: 9px 8px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(4, 28, 58, .72);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(5px);
}

.materials-redesign-nav-section {
  position: relative;
  z-index: 2;
  padding: 0;
  margin-top: -56px;
}

.materials-redesign-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  border: 1px solid #d8e4ef;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  padding: 12px;
  box-shadow: 0 24px 70px rgba(7, 31, 65, .18);
}

.materials-redesign-nav a {
  position: relative;
  display: grid;
  grid-template-rows: 108px auto;
  min-height: 198px;
  overflow: hidden;
  align-content: stretch;
  justify-items: stretch;
  gap: 0;
  padding: 0;
  border: 1px solid #dce6f0;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  text-align: left;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.materials-redesign-nav a:hover {
  background: #fff;
  color: #073d72;
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(7, 31, 65, .1);
}

.material-nav-image {
  width: 100%;
  height: 108px;
  object-fit: cover;
  background: #eef4fa;
}

.material-nav-copy {
  position: relative;
  display: flex;
  min-height: 90px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 16px 14px 17px;
  text-align: center;
}

.materials-redesign-nav b {
  display: block;
  font-size: 16px;
  line-height: 1.15;
}

.materials-redesign-nav small {
  display: block;
  max-width: 180px;
  margin: 0 auto;
  color: #637992;
  font-size: 12px;
  line-height: 1.35;
}

.materials-redesign-nav .materials-quick-icon {
  display: none;
}

.materials-redesign-section {
  padding: 52px 0 0;
}

.materials-redesign-heading {
  display: block;
  margin-bottom: 20px;
}

.materials-redesign-heading.compact {
  display: block;
}

.materials-redesign-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 2.9vw, 42px);
  line-height: 1.04;
}

.materials-redesign-heading span {
  display: block;
  max-width: 620px;
  margin-top: 10px;
  color: #4b6078;
  font-size: 15px;
  line-height: 1.65;
}

.materials-redesign-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.materials-redesign-card {
  overflow: hidden;
  border: 1px solid #d7e2ed;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 31, 65, .07);
}

.materials-redesign-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  background: #eef4fa;
}

.materials-redesign-card-body {
  padding: 16px 15px 18px;
}

.materials-redesign-card h3 {
  min-height: 44px;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.08;
}

.materials-redesign-spec {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef5fb;
  color: #0a3a6e;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.materials-redesign-card dl,
.materials-redesign-card dt,
.materials-redesign-card dd {
  margin: 0;
}

.materials-redesign-card dt {
  color: #092344;
  font-size: 11px;
  font-weight: 900;
}

.materials-redesign-card dd {
  margin-bottom: 8px;
  color: #415773;
  font-size: 12px;
  line-height: 1.38;
}

.materials-redesign-compare {
  padding-top: 42px;
}

.materials-redesign-table-wrap {
  overflow-x: auto;
  border: 1px solid #cfddec;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 31, 65, .045);
}

.materials-redesign-table {
  width: 100%;
  min-width: 960px;
  border-collapse: collapse;
  font-size: 12px;
}

.materials-redesign-table th {
  padding: 9px 12px;
  background: var(--navy);
  color: #fff;
  text-align: left;
  font-weight: 900;
}

.materials-redesign-table td {
  padding: 8px 12px;
  border-top: 1px solid #dce6ef;
  border-right: 1px solid #edf2f7;
  color: #2c435f;
  line-height: 1.25;
}

.materials-redesign-table td:first-child,
.materials-redesign-table td:nth-child(4),
.materials-redesign-table td:nth-child(5),
.materials-redesign-table td:nth-child(7) {
  color: var(--navy);
  font-weight: 900;
}

.materials-redesign-note {
  margin: 10px 0 0;
  color: #50667f;
  font-size: 12px;
}

.materials-redesign-flute {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.materials-redesign-flute .materials-redesign-table-wrap {
  display: flex;
  height: 500px;
  overflow: hidden;
}

.materials-redesign-flute-image {
  overflow: hidden;
  height: 500px;
  min-height: 280px;
  border: 1px solid #cfddec;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 31, 65, .045);
}

.materials-redesign-flute-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.materials-redesign-table.flute {
  min-width: 0;
  height: 100%;
  table-layout: fixed;
  font-size: 11.5px;
}

.materials-redesign-table.flute th,
.materials-redesign-table.flute td {
  padding: 10px 12px;
}

.materials-redesign-table.flute th:nth-child(1) {
  width: 14%;
}

.materials-redesign-table.flute th:nth-child(2) {
  width: 16%;
}

.materials-redesign-table.flute th:nth-child(3) {
  width: 32%;
}

.materials-redesign-table.flute th:nth-child(4) {
  width: 38%;
}

.materials-redesign-table.flute tbody tr {
  height: 38px;
}

.materials-redesign-lower {
  padding-bottom: 64px;
}

.materials-redesign-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.materials-selection-intro {
  display: block;
  margin-bottom: 22px;
}

.materials-selection-intro .eyebrow {
  margin: 0 0 10px;
  color: #6c819b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.materials-selection-intro h2 {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.02;
}

.materials-selection-intro span {
  display: block;
  max-width: 740px;
  color: #4b6078;
  font-size: 15px;
  line-height: 1.65;
}

.materials-recommend-panel,
.materials-method-panel {
  padding: 18px;
  border: 1px solid #d4e0ed;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f9fcff);
  box-shadow: 0 18px 44px rgba(7, 31, 65, .07);
}

.materials-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e1e9f2;
}

.materials-panel-heading b,
.materials-panel-heading span {
  display: block;
}

.materials-panel-heading b {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.15;
}

.materials-panel-heading span {
  max-width: 320px;
  color: #5d7189;
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
}

.materials-redesign-recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.materials-redesign-recommend-grid article {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  min-height: 158px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #dce6f0;
  border-radius: 11px;
  background: #fff;
  text-align: left;
  box-shadow: 0 10px 24px rgba(7, 31, 65, .045);
}

.materials-redesign-recommend-grid article > img {
  width: 100%;
  height: 100%;
  min-height: 158px;
  object-fit: cover;
  background: #eef4fa;
}

.materials-redesign-recommend-grid article > div {
  padding: 18px 16px 16px;
}

.materials-redesign-recommend-grid article:nth-child(3n) {
  border-right: 1px solid #dce6f0;
}

.materials-redesign-recommend-grid article:nth-child(n+4) {
  border-bottom: 1px solid #dce6f0;
}

.materials-redesign-recommend-grid .recommend-icon {
  display: none;
}

.materials-redesign-recommend-grid h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
}

.materials-redesign-recommend-grid p,
.materials-redesign-recommend-grid b {
  display: block;
  margin: 0;
  color: #445a74;
  font-size: 11px;
  line-height: 1.32;
}

.materials-redesign-recommend-grid b {
  margin-top: 5px;
  color: var(--navy);
  font-weight: 900;
}

.materials-redesign-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.materials-redesign-step-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 150px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #dce6f0;
  border-radius: 11px;
  background: #fff;
  text-align: left;
  box-shadow: 0 10px 24px rgba(7, 31, 65, .045);
}

.materials-redesign-step-grid article > img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  background: #eef4fa;
}

.materials-redesign-step-grid article > div {
  padding: 18px 16px 16px;
}

.materials-redesign-step-grid i {
  display: none;
}

.materials-redesign-step-grid .choice-icon {
  display: none;
}

.materials-redesign-step-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
}

.materials-redesign-step-grid p {
  margin: 0;
  color: #445a74;
  font-size: 11px;
  line-height: 1.42;
}

.materials-decision-notes {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.materials-decision-notes article {
  padding: 12px 14px;
  border: 1px solid #dce6f0;
  border-radius: 10px;
  background: #f5f9fd;
}

.materials-decision-notes b,
.materials-decision-notes span {
  display: block;
}

.materials-decision-notes b {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 13px;
}

.materials-decision-notes span {
  color: #4d637c;
  font-size: 12px;
  line-height: 1.45;
}

.choice-icon.icon-ship:before {
  left: 7px;
  top: 12px;
  width: 31px;
  height: 19px;
  border: 3px solid currentColor;
}

.choice-icon.icon-ship:after {
  right: 5px;
  bottom: 5px;
  width: 15px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: -27px 0 0 -3px #fff, -27px 0 0 0 currentColor;
}

.choice-icon.icon-leaf:before {
  left: 13px;
  top: 5px;
  width: 26px;
  height: 32px;
  border: 3px solid currentColor;
  border-radius: 26px 2px 26px 2px;
  transform: rotate(45deg);
}

.choice-icon.icon-leaf:after {
  left: 25px;
  top: 13px;
  width: 3px;
  height: 26px;
  background: currentColor;
  transform: rotate(45deg);
}

.materials-redesign-cta .wrap {
  min-height: 120px;
}

/* Surface finishing guide */
.surface-guide-page {
  background: #fff;
  color: var(--ink);
}

.surface-guide-page .wrap {
  width: min(1180px, calc(100% - 64px));
}

.surface-hero {
  padding: 46px 0 54px;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(115deg, #041c3a 0%, #05264d 60%, #071f3f 100%);
}

.surface-hero-inner {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: center;
}

.surface-hero-copy {
  max-width: 610px;
}

.surface-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 800;
}

.surface-breadcrumb:before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
}

.surface-hero h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(44px, 4.7vw, 64px);
  line-height: .98;
}

.surface-hero p:not(.surface-breadcrumb) {
  max-width: 550px;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.64;
}

.surface-hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  max-width: 560px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.surface-benefit {
  position: relative;
  min-height: 0;
  padding: 0 0 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.32;
}

.surface-benefit:before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
}

.surface-benefit:after {
  content: none;
}

.surface-hero-visual {
  overflow: hidden;
  min-height: 315px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: #09264b;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}

.surface-hero-visual img {
  display: block;
  width: 100%;
  height: 315px;
  object-fit: cover;
  object-position: center;
}

.surface-why {
  padding: 34px 0 28px;
  background: #f7fafc;
}

.surface-why-grid {
  display: grid;
  grid-template-columns: minmax(280px, .66fr) minmax(0, 1.34fr);
  gap: 32px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid #d7e2ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 31, 65, .07);
}

.surface-why h2,
.surface-section h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 27px;
  line-height: 1.08;
}

.surface-why p {
  margin: 0 0 8px;
  color: #3f566f;
  font-size: 14px;
  line-height: 1.55;
}

.surface-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid #dce6f0;
  border-radius: 14px;
  background: #fff;
}

.surface-impact-grid article {
  min-height: 136px;
  padding: 22px 18px;
  border: 0;
  border-right: 1px solid #dce6f0;
  border-radius: 0;
  background: linear-gradient(180deg, #fff 0%, #f8fbfe 100%);
  text-align: left;
}

.surface-impact-grid article:last-child {
  border-right: 0;
}

.surface-impact-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 22px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 80, 18, .28);
  border-radius: 999px;
  background: rgba(255, 80, 18, .08);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.surface-impact-grid span:before {
  content: none;
}

.surface-impact-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.18;
}

.surface-impact-grid p {
  color: #4a6078;
  font-size: 12px;
  line-height: 1.45;
}

.surface-section {
  padding: 0 0 20px;
}

.surface-section.compact {
  padding-bottom: 24px;
}

.surface-section-lede {
  margin: -2px 0 16px;
  max-width: 720px;
  color: #405872;
  font-size: 16px;
  line-height: 1.55;
}

.surface-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.surface-cost-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: #394f6a;
  font-size: 12px;
}

.surface-cost-legend span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.surface-cost-legend i,
.surface-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.surface-cost-legend .low,
.surface-dot { background: #4d9b24; }
.surface-cost-legend .medium { background: #ff8a00; }
.surface-cost-legend .high { background: #e94a36; }
.surface-cost-legend .premium { background: #8c3ee6; }

.surface-finish-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.surface-finish-card {
  overflow: hidden;
  border: 1px solid #d4e0ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7,31,65,.055);
}

.surface-finish-card img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  background: #edf3f8;
}

.surface-finish-visual {
  position: relative;
  display: block;
  height: 108px;
  overflow: hidden;
  background: #20262d;
}

.surface-finish-visual:before,
.surface-finish-visual:after,
.surface-finish-visual span:before,
.surface-finish-visual span:after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.surface-finish-visual span {
  position: absolute;
  inset: 0;
}

.surface-finish-visual:before {
  inset: 0;
  opacity: .9;
}

.surface-finish-visual:after {
  inset: auto 16px 18px 16px;
  height: 28px;
  border-radius: 999px;
  opacity: .9;
}

.surface-finish-body {
  position: relative;
  min-height: 112px;
  padding: 12px 14px 14px;
}

.finish-spot {
  background:
    radial-gradient(circle at 28% 34%, rgba(255,255,255,.92) 0 11%, transparent 12%),
    radial-gradient(circle at 64% 62%, rgba(255,255,255,.72) 0 8%, transparent 9%),
    linear-gradient(135deg, #161b20, #353b42);
}

.finish-spot:before {
  background: repeating-linear-gradient(135deg, transparent 0 20px, rgba(255,255,255,.08) 21px 23px);
}

.finish-spot:after {
  background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(255,255,255,.95), rgba(255,255,255,.12));
  filter: blur(.5px);
}

.finish-full-uv {
  background: linear-gradient(135deg, #071522, #12395f 50%, #071522);
}

.finish-full-uv:before {
  background: linear-gradient(105deg, transparent 0 36%, rgba(255,255,255,.82) 43%, transparent 51%);
}

.finish-full-uv:after {
  top: 18px;
  left: -20%;
  width: 70%;
  height: 140%;
  background: rgba(255,255,255,.18);
  transform: rotate(23deg);
}

.finish-matte {
  background: #2d3236;
}

.finish-matte:before {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 18%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.05), transparent 20%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.035) 0 1px, transparent 1px 5px);
}

.finish-matte:after {
  background: rgba(255,255,255,.08);
}

.finish-gloss {
  background: linear-gradient(135deg, #05090e, #1d2834 58%, #090d12);
}

.finish-gloss:before {
  background: linear-gradient(110deg, transparent 0 18%, rgba(255,255,255,.16) 28%, rgba(255,255,255,.75) 37%, transparent 48%);
}

.finish-gloss:after {
  top: 0;
  left: 42%;
  width: 18%;
  height: 130%;
  background: rgba(255,255,255,.38);
  transform: skewX(-22deg);
  filter: blur(1px);
}

.finish-soft {
  background: #2c2f31;
}

.finish-soft:before {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.06), transparent 24%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 4px);
}

.finish-soft:after {
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.16), rgba(255,255,255,.05));
  filter: blur(3px);
}

.finish-emboss,
.finish-relief,
.finish-registered {
  background: #f2eee5;
}

.finish-emboss:before,
.finish-relief:before,
.finish-registered:before {
  inset: 14px 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(255,255,255,.8) 19% 23%, rgba(171,156,136,.45) 24% 26%, transparent 27%),
    radial-gradient(circle at 30% 36%, transparent 0 10%, rgba(255,255,255,.7) 11% 13%, rgba(171,156,136,.38) 14% 16%, transparent 17%),
    radial-gradient(circle at 70% 36%, transparent 0 10%, rgba(255,255,255,.7) 11% 13%, rgba(171,156,136,.38) 14% 16%, transparent 17%);
  filter: drop-shadow(0 3px 2px rgba(40,35,25,.2));
}

.finish-relief:before {
  inset: 10px 14px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.86) 0 13%, rgba(186,169,145,.38) 14% 20%, transparent 21%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.6) 0 5px, rgba(150,132,106,.28) 6px 7px, transparent 8px 18px);
}

.finish-registered:before {
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,80,18,.65) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255,80,18,.65) 49% 51%, transparent 51%),
    radial-gradient(circle at 50% 50%, transparent 0 20%, rgba(255,255,255,.85) 21% 25%, rgba(171,156,136,.45) 26% 29%, transparent 30%);
}

.finish-deboss {
  background: #202428;
}

.finish-deboss:before {
  inset: 20px 22px;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 50%, rgba(0,0,0,.42), rgba(255,255,255,.12) 44%, transparent 46%);
  box-shadow: inset 0 4px 8px rgba(0,0,0,.5), inset 0 -3px 8px rgba(255,255,255,.14);
}

.finish-gold,
.finish-metallic {
  background: #161616;
}

.finish-gold:before,
.finish-metallic:before {
  inset: 18px 20px;
  border-radius: 10px;
  background: linear-gradient(110deg, #79551c, #ffe28b 35%, #b17521 54%, #fff3bf 72%, #684719);
  box-shadow: 0 0 18px rgba(255,198,74,.35);
}

.finish-gold:after,
.finish-metallic:after {
  top: 0;
  left: 38%;
  width: 13%;
  height: 120%;
  background: rgba(255,255,255,.56);
  transform: skewX(-24deg);
}

.finish-silver,
.finish-cold {
  background: #161b21;
}

.finish-silver:before,
.finish-cold:before {
  inset: 18px 20px;
  border-radius: 10px;
  background: linear-gradient(110deg, #78838d, #f6fbff 36%, #a6b3be 55%, #fff 72%, #5b6671);
  box-shadow: 0 0 18px rgba(210,230,245,.34);
}

.finish-cold:after {
  top: 14px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, #f8f8f8, #9fc9ff, #fff, #c1cad2, #f8f8f8);
}

.finish-holo {
  background: linear-gradient(120deg, #13223e, #4e2a86, #009a9a, #f7c044, #e4487b);
}

.finish-holo:before {
  background:
    linear-gradient(60deg, rgba(255,255,255,.65) 0 7%, transparent 8% 20%, rgba(255,255,255,.35) 21% 28%, transparent 29%),
    repeating-linear-gradient(120deg, rgba(255,255,255,.18) 0 1px, transparent 1px 12px);
  mix-blend-mode: screen;
}

.finish-holo:after {
  top: 16px;
  left: 18px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(#ff4b4b, #ffd45c, #37d67a, #39a7ff, #a065ff, #ff4b4b);
  opacity: .72;
}

.finish-texture,
.finish-sand {
  background: #2c3032;
}

.finish-texture:before {
  background:
    radial-gradient(circle at 25% 28%, rgba(255,255,255,.24) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 42%, rgba(255,255,255,.2) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 72%, rgba(255,255,255,.18) 0 2px, transparent 3px),
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(255,255,255,.06) 13px 15px);
}

.finish-sand:before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.34) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 34%, rgba(255,255,255,.26) 0 1px, transparent 2px),
    radial-gradient(circle at 44% 66%, rgba(255,255,255,.22) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 78%, rgba(255,255,255,.2) 0 1px, transparent 2px);
  background-size: 22px 18px, 28px 26px, 18px 24px, 30px 20px;
}

.finish-pearl {
  background: linear-gradient(135deg, #f6f0ff, #fff7e4 42%, #dff8ff);
}

.finish-pearl:before {
  background:
    radial-gradient(circle at 28% 50%, rgba(255,255,255,.95) 0 14%, transparent 15%),
    radial-gradient(circle at 56% 48%, rgba(255,255,255,.84) 0 12%, transparent 13%),
    linear-gradient(120deg, rgba(207,132,255,.28), rgba(96,220,255,.24), rgba(255,222,120,.3));
}

.finish-varnish {
  background: linear-gradient(135deg, #f7fbf6, #dceade);
}

.finish-varnish:before {
  background:
    linear-gradient(110deg, transparent 0 36%, rgba(255,255,255,.85) 42%, transparent 49%),
    radial-gradient(circle at 70% 28%, rgba(70,150,80,.18), transparent 22%);
}

.surface-finish-card h3 {
  margin: 0 28px 6px 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.2;
}

.surface-finish-card b {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--orange);
  font-size: 14px;
}

.surface-finish-card p {
  margin: 0;
  color: #405872;
  font-size: 12px;
  line-height: 1.38;
}

.surface-purpose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.surface-purpose-grid article {
  min-height: 150px;
  padding: 20px;
  border-radius: 9px;
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: 0 16px 34px rgba(7,31,65,.12);
}

.surface-purpose-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
}

.surface-purpose-grid p {
  max-width: 250px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  line-height: 1.45;
}

.surface-security-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.surface-security-grid article {
  overflow: hidden;
  border: 1px solid #d4e0ec;
  border-radius: 8px;
  background: #fff;
}

.surface-security-grid img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  background: #edf3f8;
}

.surface-security-grid div {
  min-height: 104px;
  padding: 12px 14px 14px;
}

.surface-security-grid h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.2;
}

.surface-security-grid p {
  margin: 0;
  color: #405872;
  font-size: 12px;
  line-height: 1.35;
}

.surface-table-wrap {
  overflow-x: auto;
  border: 1px solid #cfddec;
  border-radius: 7px;
  background: #fff;
}

.surface-matrix-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 12px;
}

.surface-matrix-table th {
  padding: 9px 12px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-weight: 900;
}

.surface-matrix-table th:first-child,
.surface-matrix-table td:first-child {
  text-align: left;
}

.surface-matrix-table td {
  padding: 8px 12px;
  border-top: 1px solid #dfe8f1;
  border-right: 1px solid #edf2f7;
  color: #243d58;
  text-align: center;
}

.surface-matrix-table td:first-child {
  color: var(--navy);
  font-weight: 900;
}

.surface-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.surface-faq-grid details {
  border: 1px solid #d4e0ec;
  border-radius: 9px;
  background: #fff;
}

.surface-faq-grid summary {
  cursor: pointer;
  padding: 15px 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.surface-faq-grid p {
  margin: 0;
  padding: 0 18px 16px;
  color: #405872;
  font-size: 13px;
  line-height: 1.55;
}

.surface-help-cta {
  padding: 0;
  background:
    linear-gradient(90deg, rgba(4, 28, 58, .98), rgba(5, 43, 82, .94)),
    url("/assets/pi-hero-supplier-packaging-desktop-v2.jpg") right center / auto 128% no-repeat;
  color: #fff;
}

.surface-help-cta .wrap {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 120px;
}

.surface-help-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.surface-help-cta h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 28px;
}

.surface-help-cta p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.5;
}

/* Box structure guide */
.structure-guide-page {
  background: #fff;
  color: var(--ink);
}

.structure-guide-page .wrap {
  width: min(1180px, calc(100% - 64px));
}

.structure-hero {
  position: relative;
  min-height: 0;
  padding: 42px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 46%, rgba(28, 73, 123, .24), transparent 34%),
    linear-gradient(115deg, #041c3a 0%, #05264d 58%, #071f3f 100%);
}

body:has(.structure-hero) .links .active:after {
  display: none;
}

.structure-hero .wrap {
  width: min(1180px, calc(100% - 64px));
}

.structure-hero-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(390px, .43fr) minmax(0, .57fr);
  gap: 18px;
  align-items: center;
}

.structure-hero-copy {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 500px;
}

.structure-hero-copy .eyebrow {
  color: rgba(255,255,255,.84);
}

.structure-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.1vw, 56px);
  line-height: .98;
  letter-spacing: 0;
}

.structure-hero-copy > i {
  display: none;
  width: 46px;
  height: 3px;
  margin: 20px 0 22px;
  border-radius: 3px;
  background: var(--orange);
}

.structure-hero-copy > p {
  max-width: 470px;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1.62;
}

.structure-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 470px;
  margin-top: 26px;
  padding: 15px 13px;
  border: 1px solid rgba(190, 213, 236, .32);
  border-radius: 12px;
  background: rgba(3, 24, 50, .28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
}

.structure-hero-points article {
  display: grid;
  justify-items: center;
  min-height: 118px;
  padding: 0 13px;
  border-left: 1px solid rgba(190, 213, 236, .28);
  text-align: center;
}

.structure-hero-points article:first-child {
  border-left: 0;
}

.structure-hero-points b,
.structure-hero-points small {
  display: block;
}

.structure-hero-points b {
  margin: 10px 0 5px;
  color: #fff;
  font-size: 13px;
  line-height: 1.16;
}

.structure-hero-points small {
  color: rgba(255,255,255,.88);
  font-size: 11px;
  line-height: 1.38;
}

.structure-hero-art {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 350px;
  align-items: center;
  justify-content: flex-start;
  margin-left: -86px;
  overflow: visible;
}

.structure-hero-art img {
  display: block;
  width: min(780px, 124%);
  height: auto;
  max-height: 410px;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.28) contrast(1.1) saturate(1.06);
  transform: scale(1.1);
}

.structure-icon,
.structure-tab-icon,
.structure-choice-icon {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.structure-icon {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(177, 198, 219, .28);
  border-radius: 50%;
  background: rgba(255,255,255,.025);
  color: var(--orange);
}

.structure-icon:before,
.structure-icon:after,
.structure-tab-icon:before,
.structure-choice-icon:before,
.structure-cta-icon:before {
  content: "";
  position: absolute;
}

.structure-tab-icon:before,
.structure-choice-icon:before,
.structure-cta-icon:before {
  inset: 11px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.structure-icon.icon-stack:before {
  inset: 12px;
  border: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linejoin='round'%3E%3Cpath d='M24 4 42 14v20L24 44 6 34V14L24 4Z'/%3E%3Cpath d='M24 24 42 14M24 24 6 14M24 24v20'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linejoin='round'%3E%3Cpath d='M24 4 42 14v20L24 44 6 34V14L24 4Z'/%3E%3Cpath d='M24 24 42 14M24 24 6 14M24 24v20'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  transform: none;
}

.structure-icon.icon-stack:after {
  content: none;
}

.structure-icon.icon-layers:before {
  inset: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M24 3 43 13 24 23 5 13 24 3Zm0 13.5 17 9-17 9-17-9 17-9Zm0 12 17 9-17 9-17-9 17-9Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M24 3 43 13 24 23 5 13 24 3Zm0 13.5 17 9-17 9-17-9 17-9Zm0 12 17 9-17 9-17-9 17-9Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.structure-icon.icon-layers:after {
  content: none;
}

.structure-icon.icon-shield:before {
  inset: 12px;
  border: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 10h-3a4 4 0 0 0-4 4v26a4 4 0 0 0 4 4h22a4 4 0 0 0 4-4V14a4 4 0 0 0-4-4h-3'/%3E%3Cpath d='M17 14h14V8h-4a3 3 0 0 0-6 0h-4v6Z'/%3E%3Cpath d='m18 29 5 5 9-11'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 10h-3a4 4 0 0 0-4 4v26a4 4 0 0 0 4 4h22a4 4 0 0 0 4-4V14a4 4 0 0 0-4-4h-3'/%3E%3Cpath d='M17 14h14V8h-4a3 3 0 0 0-6 0h-4v6Z'/%3E%3Cpath d='m18 29 5 5 9-11'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.structure-icon.icon-shield:after {
  content: none;
}

.structure-tab-icon.icon-layers:before,
.structure-choice-icon.icon-grid:before {
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 6px 0 -3px #fff, 0 6px 0 0 currentColor, 0 12px 0 -3px #fff, 0 12px 0 0 currentColor;
}

.structure-tab-icon.icon-box:before {
  transform: rotate(45deg);
}

.structure-tabs-section {
  padding: 0 0 28px;
  background: #fff;
}

.structure-tabs {
  display: grid;
  grid-template-columns: 1.18fr repeat(5, 1fr);
  gap: 14px;
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.structure-tabs a {
  min-height: 64px;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid #d7e2ed;
  border-radius: 7px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(7, 31, 65, .045);
}

.structure-tabs a.active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.structure-tabs b,
.structure-tabs small {
  grid-column: 2;
  display: block;
}

.structure-tabs b {
  font-size: 13px;
  line-height: 1.12;
}

.structure-tabs small {
  margin-top: 3px;
  color: #5a6f88;
  font-size: 10px;
  line-height: 1.2;
}

.structure-tabs a.active small {
  color: rgba(255,255,255,.86);
}

.structure-tab-icon {
  grid-row: 1 / span 2;
  color: var(--navy);
}

.structure-tabs a.active .structure-tab-icon {
  color: #fff;
}

.structure-tab-icon.icon-grid:before {
  inset: 8px;
  border: 0;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 15px 0 / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 0 15px / 9px 9px no-repeat,
    linear-gradient(currentColor 0 0) 15px 15px / 9px 9px no-repeat;
}

.structure-tab-icon.icon-carton:before,
.structure-tab-icon.icon-display:before {
  inset: 9px;
}

.structure-tab-icon.icon-star:before {
  inset: 10px;
  transform: rotate(45deg);
}

.structure-section {
  padding: 0 0 28px;
}

#structure-types {
  padding-top: 46px;
}

.structure-section-head {
  display: block;
  max-width: 860px;
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dbe5ef;
}

.structure-section-head p {
  margin: 0 0 8px;
  color: #6a7e94;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.structure-section-head h2 {
  max-width: 760px;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.structure-section-head span {
  display: block;
  max-width: 720px;
  color: #405772;
  font-size: 15px;
  line-height: 1.62;
}

.structure-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.structure-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #d7e2ed;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(7, 31, 65, .055);
}

.structure-card img {
  display: block;
  width: 100%;
  height: 178px;
  object-fit: cover;
  background: #f5f7fa;
}

.structure-card-body {
  padding: 16px 17px 18px;
}

.structure-card h2 {
  min-height: 0;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.18;
}

.structure-card dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 0;
}

.structure-card dt {
  display: none;
}

.structure-card dd {
  grid-column: 1;
  margin: 0;
  color: #374e68;
  font-size: 12.5px;
  line-height: 1.42;
}

.structure-card dd:before {
  color: var(--navy);
  font-weight: 900;
}

.structure-card dt:nth-of-type(1) + dd:before {
  content: "Material: ";
}

.structure-card dt:nth-of-type(2) + dd:before {
  content: "Cost Level: ";
}

.structure-card dt:nth-of-type(3) + dd:before {
  content: "Best For: ";
}

.structure-card dt:nth-of-type(4) + dd:before {
  content: "Notes: ";
}

.structure-lower {
  padding-top: 18px;
}

.structure-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.structure-two-col h2,
.structure-faq-section h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 27px;
  line-height: 1.08;
}

.structure-table-wrap {
  overflow: auto;
  border: 1px solid #d7e2ed;
  border-radius: 7px;
  background: #fff;
}

.structure-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--navy);
  font-size: 12.5px;
}

.structure-compare-table th {
  padding: 11px 10px;
  background: #f2f6fb;
  font-weight: 900;
  text-align: left;
}

.structure-compare-table td {
  padding: 10px;
  border-top: 1px solid #e1e9f2;
  color: #334961;
}

.structure-stars {
  display: inline-flex;
  gap: 3px;
}

.structure-stars i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--orange);
  border-radius: 50%;
}

.structure-stars i.filled {
  background: var(--orange);
}

.structure-note {
  margin: 12px 0 0;
  color: #566b82;
  font-size: 12px;
  line-height: 1.45;
}

.structure-choose-panel {
  width: 100%;
  margin: 34px 0 0;
  transform: none;
}

.structure-choose-head {
  margin-bottom: 50px;
}

.structure-choose-head h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 3.55vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.structure-choose-head p {
  max-width: 1360px;
  margin: 0;
  color: #41536a;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.38;
}

.structure-step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.structure-step-grid article {
  position: relative;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: 38px 22px 24px;
  border: 1px solid #d4dfeb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(7, 31, 65, .035);
}

.structure-step-grid article:not(:last-child):after {
  content: "";
  position: absolute;
  top: 222px;
  right: -15px;
  z-index: 2;
  width: 19px;
  height: 19px;
  border-top: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
  transform: rotate(45deg);
}

.structure-step-grid i {
  position: absolute;
  top: -1px;
  left: 24px;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ff8a2b 0%, #ff5a1f 55%, #f24b12 100%);
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 12px 20px rgba(255, 83, 25, .2);
}

.structure-choice-icon {
  width: 108px;
  height: 108px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #f4f7fa;
}

.structure-choice-icon:before {
  inset: 22px;
  border: 0;
  background: center / contain no-repeat;
}

.structure-choice-icon:after {
  content: none;
}

.structure-choice-icon.icon-box-size:before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 76 76' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23071f41' stroke-width='3' stroke-linejoin='round'%3E%3Cpath d='M38 13 58 24.5v28L38 64 18 52.5v-28L38 13Z'/%3E%3Cpath d='M38 36.5 58 24.5M38 36.5 18 24.5M38 36.5V64'/%3E%3C/g%3E%3Cg fill='none' stroke='%23ff5a1f' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M8 29v20M5 32l3-3 3 3M5 46l3 3 3-3M48 69h18M51 66l-3 3 3 3M63 66l3 3-3 3'/%3E%3C/g%3E%3C/svg%3E");
}

.structure-choice-icon.icon-brand-bag:before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 76 76' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23071f41' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 28h38l-4 36H23l-4-36Z'/%3E%3Cpath d='M28 28v-7a10 10 0 0 1 20 0v7'/%3E%3C/g%3E%3Cpath d='m38 36 4 8 9 1-6.5 6 1.7 8.5L38 55l-8.2 4.5 1.7-8.5L25 45l9-1 4-8Z' fill='none' stroke='%23ff5a1f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.structure-choice-icon.icon-shipping-truck:before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 76 76' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23071f41' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 27h36v26H12V27Z'/%3E%3Cpath d='M48 36h9l8 9v8H48V36Z'/%3E%3Cpath d='M22 60a6 6 0 1 0 0-12 6 6 0 0 0 0 12ZM56 60a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z'/%3E%3C/g%3E%3Cpath d='M24 40h18M36 33l8 7-8 7' fill='none' stroke='%23ff5a1f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.structure-choice-icon.icon-insert-box:before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 76 76' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23071f41' stroke-width='3' stroke-linejoin='round'%3E%3Cpath d='M12 25 38 12l26 13-26 13L12 25Z'/%3E%3Cpath d='M12 25v30l26 13 26-13V25M38 38v30'/%3E%3C/g%3E%3Cg fill='none' stroke='%23ff5a1f' stroke-width='3' stroke-linejoin='round'%3E%3Cpath d='M29 29 47 38M47 29 29 38M29 29v18l18 9 18-9V29L47 20 29 29Z'/%3E%3C/g%3E%3C/svg%3E");
}

.structure-choice-icon.icon-cost-calculator:before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 76 76' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23071f41' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='19' y='9' width='31' height='54' rx='5'/%3E%3Cpath d='M25 21h18M27 35h3M37 35h3M27 45h3M37 45h3M27 55h3M37 55h3'/%3E%3Ccircle cx='55' cy='50' r='12'/%3E%3C/g%3E%3Cpath d='M55 41v18M50 46c0-2.4 2.2-3.5 5-3.5s5 1.1 5 3.5-2.2 3.5-5 3.5-5 1.1-5 3.5 2.2 3.5 5 3.5 5-1.1 5-3.5' fill='none' stroke='%23ff5a1f' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
}

.structure-step-grid h3 {
  min-height: 58px;
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.18;
}

.structure-step-grid p {
  min-height: 100px;
  margin: 0 0 22px;
  color: #334961;
  font-size: 14px;
  line-height: 1.68;
}

.structure-step-grid ul {
  display: grid;
  gap: 15px;
  min-height: 138px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.structure-step-grid li {
  position: relative;
  padding-left: 20px;
  color: #071f41;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.structure-step-grid li:before {
  content: "";
  position: absolute;
  top: .48em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.structure-recommendations {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e3e9f1;
}

.structure-recommendations b {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.structure-recommendations div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.structure-recommendations em {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 6px;
  background: #eef2f7;
  color: #071f41;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.15;
}

.structure-faq-section {
  padding-bottom: 24px;
}

.structure-faq-list {
  overflow: hidden;
  border: 1px solid #d7e2ed;
  border-radius: 7px;
}

.structure-faq-list details {
  border-bottom: 1px solid #e1e9f2;
  background: #fff;
}

.structure-faq-list details:last-child {
  border-bottom: 0;
}

.structure-faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 16px 48px 16px 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.structure-faq-list summary::-webkit-details-marker {
  display: none;
}

.structure-faq-list summary:after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 20px;
  border: 1px solid #9fb1c5;
  border-radius: 50%;
  color: var(--navy);
  line-height: 18px;
  text-align: center;
  transform: translateY(-50%);
}

.structure-faq-list details[open] summary:after {
  content: "-";
}

.structure-faq-list p {
  margin: 0;
  padding: 0 18px 16px;
  color: #485f77;
  font-size: 13px;
  line-height: 1.5;
}

.structure-cta {
  padding: 0;
  background:
    linear-gradient(90deg, rgba(5, 31, 63, .98), rgba(5, 31, 63, .9)),
    url("/assets/process-structure-dieline.jpg") right center / auto 130% no-repeat,
    var(--navy);
}

.structure-cta .wrap {
  min-height: 120px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: center;
}

.structure-cta-icon {
  position: relative;
  display: inline-flex;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 50%;
  color: #fff;
}

.structure-cta-icon:before {
  inset: 20px;
  border-color: currentColor;
}

.structure-cta h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 26px;
  line-height: 1.12;
}

.structure-cta p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .structure-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .structure-hero {
    min-height: 0;
    padding: 44px 0;
    background:
      radial-gradient(circle at 70% 35%, rgba(28, 73, 123, .24), transparent 38%),
      linear-gradient(115deg, #041c3a 0%, #05264d 58%, #071f3f 100%);
  }

  .structure-hero .wrap {
    width: min(100% - 48px, 1180px);
  }

  .structure-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .structure-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .structure-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .structure-choose-panel {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .structure-step-grid article:not(:last-child):after {
    content: none;
  }
}

@media (max-width: 760px) {
  .structure-guide-page .wrap {
    width: min(100% - 32px, 1180px);
  }

  .structure-hero {
    min-height: 0;
    padding: 34px 0 46px;
    background:
      radial-gradient(circle at 70% 35%, rgba(28, 73, 123, .24), transparent 38%),
      linear-gradient(115deg, #041c3a 0%, #05264d 58%, #071f3f 100%);
  }

  .structure-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .structure-hero-copy {
    padding: 0;
  }

  .structure-hero-copy h1 {
    font-size: 48px;
  }

  .structure-hero-copy > p {
    font-size: 16px;
  }

  .structure-hero-points,
  .structure-card-grid,
  .structure-step-grid,
  .structure-cta .wrap {
    grid-template-columns: 1fr;
  }

  .structure-hero-points {
    padding: 18px;
  }

  .structure-hero-points article {
    min-height: 0;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(190, 213, 236, .22);
  }

  .structure-hero-points article:first-child {
    border-top: 0;
  }

  .structure-hero-points b {
    font-size: 18px;
  }

  .structure-hero-points small {
    font-size: 14px;
  }

  .structure-hero-art {
    margin-left: 0;
    min-height: 0;
  }

  .structure-hero-art img {
    width: 100%;
    height: auto;
    max-height: 260px;
    border-radius: 0;
  }

  .structure-card img {
    height: 190px;
  }

  .structure-step-grid article {
    min-height: 0;
  }

  .structure-choose-head {
    margin-bottom: 28px;
  }

  .structure-choose-head h2 {
    font-size: 38px;
  }

  .structure-choose-head p {
    font-size: 16px;
  }

  .structure-cta {
    background:
      linear-gradient(90deg, rgba(5, 31, 63, .98), rgba(5, 31, 63, .92)),
      var(--navy);
  }

  .structure-cta .wrap {
    min-height: 0;
    padding: 28px 0;
    text-align: left;
  }
}

@media (max-width: 1100px) {
  .surface-finish-grid,
  .surface-security-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .surface-purpose-grid,
  .surface-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .surface-guide-page .wrap {
    width: min(100% - 32px, 1180px);
  }

  .surface-hero {
    padding: 36px 0 42px;
    min-height: 0;
    background: linear-gradient(115deg, #041c3a 0%, #05264d 60%, #071f3f 100%);
  }

  .surface-hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .surface-hero-visual,
  .surface-hero-visual img {
    min-height: 220px;
    height: 220px;
  }

  .surface-why-grid {
    padding: 20px;
  }

  .surface-hero-benefits,
  .surface-why-grid,
  .surface-finish-grid,
  .surface-security-grid,
  .surface-purpose-grid,
  .surface-faq-grid,
  .surface-help-cta .wrap {
    grid-template-columns: 1fr;
  }

  .surface-impact-grid {
    grid-template-columns: 1fr;
    border-left: 1px solid #dce6f0;
    padding-left: 0;
  }

  .surface-impact-grid article {
    border-right: 0;
    border-bottom: 1px solid #dce6f0;
  }

  .surface-impact-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1100px) {
  .materials-redesign-page .wrap {
    width: min(100% - 40px, 1180px);
  }

  .materials-redesign-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .materials-redesign-flute,
  .materials-redesign-split {
    grid-template-columns: 1fr;
  }

  .materials-redesign-flute .materials-redesign-table-wrap,
  .materials-redesign-flute-image {
    height: auto;
  }

  .materials-redesign-flute-image img {
    min-height: 280px;
  }

  .materials-redesign-hero-inner {
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
    gap: 26px;
  }

  .materials-redesign-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .materials-redesign-recommend-grid,
  .materials-redesign-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .materials-redesign-recommend-grid article,
  .materials-redesign-step-grid article {
    grid-template-columns: 1fr;
  }

  .materials-redesign-recommend-grid article > img,
  .materials-redesign-step-grid article > img {
    height: 120px;
    min-height: 120px;
  }

  .materials-selection-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .materials-selection-intro span {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .materials-redesign-hero {
    min-height: auto;
    padding: 38px 0 84px;
    background:
      linear-gradient(115deg, #041c3a 0%, #05264d 58%, #071f3f 100%),
      #061f3e;
  }

  .materials-redesign-hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .materials-redesign-hero-copy {
    padding: 0;
    border-radius: 12px;
  }

  .materials-redesign-hero h1 {
    font-size: 46px;
  }

  .materials-hero-visual,
  .materials-hero-visual img {
    min-height: 220px;
    height: 220px;
  }

  .materials-hero-samples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .materials-redesign-nav-section {
    margin-top: -60px;
  }

  .materials-redesign-nav {
    grid-template-columns: 1fr;
    border-radius: 10px;
  }

  .materials-redesign-nav a {
    min-height: 104px;
    grid-template-columns: 118px minmax(0, 1fr);
    grid-template-rows: 1fr;
    align-content: center;
    justify-items: start;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid #e1e9f2;
  }

  .materials-redesign-nav small {
    max-width: none;
  }

  .material-nav-image {
    height: 100%;
    min-height: 104px;
  }

  .material-nav-copy {
    min-height: auto;
    padding: 17px 16px 16px;
    text-align: left;
  }

  .materials-redesign-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .materials-redesign-grid,
  .materials-redesign-step-grid,
  .materials-redesign-recommend-grid {
    grid-template-columns: 1fr;
  }

  .materials-redesign-recommend-grid article,
  .materials-redesign-step-grid article {
    grid-template-columns: 1fr;
  }

  .materials-redesign-recommend-grid article > img,
  .materials-redesign-step-grid article > img {
    height: 150px;
    min-height: 150px;
  }

  .materials-selection-intro h2 {
    font-size: 34px;
  }

  .materials-panel-heading {
    display: block;
  }

  .materials-panel-heading span {
    max-width: none;
    margin-top: 6px;
    text-align: left;
  }

  .materials-redesign-card img {
    height: 170px;
  }

  .materials-redesign-recommend-grid article,
  .materials-redesign-recommend-grid article:nth-child(3n),
  .materials-redesign-recommend-grid article:nth-child(n+4) {
    border-right: 0;
    border-bottom: 1px solid #dce6f0;
  }
}

@media (max-width: 640px) {
  .materials-guide-page .materials-hero {
    min-height: 315px;
    background:
      linear-gradient(90deg, rgba(3, 22, 48, .97), rgba(3, 22, 48, .78)),
      url("/assets/materials-hero-clean.jpg") center / cover no-repeat;
  }

  .materials-guide-page .materials-quick-nav,
  .materials-guide-page .recommended-material-grid,
  .materials-guide-page .material-choice-grid {
    grid-template-columns: 1fr;
  }

  .materials-guide-page .materials-quick-nav a,
  .materials-guide-page .recommended-material-grid article {
    border-right: 0;
    border-bottom: 1px solid #dfe7f1;
  }

  .materials-guide-page .material-guide-grid {
    grid-template-columns: 1fr;
  }

  .materials-guide-page .material-guide-card img {
    height: 150px;
  }

  .materials-guide-page .material-advice-cta .wrap {
    grid-template-columns: 1fr;
    padding: 26px 0;
  }
}

/* 2.0 buyer trust additions */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 22px;
}

.evidence-grid article {
  overflow: hidden;
  border: 1px solid #d9e5f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7,31,65,.055);
}

.evidence-grid img {
  width: 100%;
  height: 174px;
  padding: 12px;
  border-bottom: 1px solid #e3ebf5;
  background: #f7faff;
  object-fit: contain;
}

.evidence-grid img.evidence-photo {
  padding: 0;
  object-fit: cover;
}

.evidence-grid div {
  padding: 16px 16px 18px;
}

.evidence-grid b {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.25;
}

.evidence-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.evidence-grid small {
  display: block;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e6eef6;
  color: #48627c;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .case-detail-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .case-detail-media {
    min-height: 300px;
  }

  .case-detail-body {
    overflow: visible;
  }

  .case-detail-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-buyer-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-proof-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:has(.product-detail-hero) .buying-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .case-detail-modal {
    align-items: flex-start;
    padding: 14px;
  }

  .case-detail-media {
    min-height: 220px;
  }

  .case-detail-body {
    padding: 26px 20px 22px;
  }

  .case-detail-meta,
  .case-detail-columns {
    grid-template-columns: 1fr;
  }

  .case-buyer-facts {
    grid-template-columns: 1fr;
  }

  .case-proof-bar {
    grid-template-columns: 1fr;
  }

  .evidence-grid,
  body:has(.product-detail-hero) .buying-info-grid {
    grid-template-columns: 1fr;
  }

  .evidence-grid img {
    height: 210px;
  }
}

.buyer-ugc {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.ugc-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ugc-grid article {
  min-height: 210px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(7, 31, 65, 0.07);
}

.ugc-grid span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf4fb;
  color: var(--navy);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 18px;
}

.ugc-grid h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.22;
  margin-bottom: 16px;
}

.ugc-grid p {
  color: #53677f;
  line-height: 1.7;
}

.ugc-grid b {
  display: block;
  margin-top: 18px;
  color: var(--orange);
  font-size: 13px;
}

.ugc-grid .ugc-feature {
  background: linear-gradient(145deg, #071f41, #0c3563);
  color: #fff;
  box-shadow: 0 22px 60px rgba(7, 31, 65, 0.16);
}

.ugc-grid .ugc-feature span {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.ugc-grid .ugc-feature h3,
.ugc-grid .ugc-feature p {
  color: #fff;
}

.case-detail-feedback {
  margin-top: 26px;
}

.case-detail-feedback h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 12px;
}

.case-feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-feedback-grid article {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.case-feedback-grid b {
  display: block;
  color: var(--navy);
  margin-bottom: 8px;
}

.case-feedback-grid p {
  color: #53677f;
  line-height: 1.6;
}


@media (max-width: 980px) {
  .ugc-grid,
  body:has(.product-detail-hero) .product-buyer-question-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-feedback-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ugc-grid,
  body:has(.product-detail-hero) .product-buyer-question-grid {
    grid-template-columns: 1fr;
  }
}

/* Global header: keep active nav text highlight, remove the orange underline on every page. */
.links .active::after,
body:has(.product-detail-hero) .links .active::after,
body:has(.structure-hero) .links .active::after {
  content: none !important;
  display: none !important;
}

.spam-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
