:root {
  --navy: #062756;
  --navy-2: #021a3d;
  --navy-3: #00142f;
  --red: #d80f16;
  --red-2: #ef1b22;
  --green: #0aa052;
  --ink: #09204a;
  --muted: #5a6b84;
  --line: #dce5f2;
  --soft: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 14px 35px rgba(4, 29, 70, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

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

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

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

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

.topbar {
  background: var(--navy-3);
  color: #d9e6f7;
  font-size: 13px;
}

.topbar .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(0, 20, 47, 0.05);
}

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

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 235px;
}

.brand-mark {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--navy-2);
}

.brand-mark b {
  color: var(--red);
}

.brand small {
  color: #30445e;
  font-weight: 600;
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
  color: #0a244f;
  flex: 1;
}

.main-nav a {
  padding: 26px 0 22px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.main-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.main-nav .nav-item > a {
  padding-right: 22px;
}

.nav-dropdown-toggle {
  position: absolute;
  right: 0;
  width: 24px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-dropdown-toggle .icon {
  width: 15px;
  height: 15px;
  transition: transform 0.18s ease;
}

.products-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: -18px;
  width: 330px;
  padding: 10px;
  display: grid;
  gap: 2px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 36px rgba(0, 20, 47, 0.16);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-products:hover .products-dropdown,
.nav-products:focus-within .products-dropdown,
.nav-products.dropdown-open .products-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-products:hover .nav-dropdown-toggle .icon,
.nav-products:focus-within .nav-dropdown-toggle .icon,
.nav-products.dropdown-open .nav-dropdown-toggle .icon {
  transform: rotate(180deg);
}

.main-nav .products-dropdown a {
  min-height: 40px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 5px;
  color: #17375f;
  font-size: 13px;
  line-height: 1.25;
}

.main-nav .products-dropdown a:hover {
  color: var(--navy);
  background: #eef3fa;
}

.main-nav .products-dropdown .dropdown-child {
  min-height: 34px;
  margin: -2px 0 3px 18px;
  padding: 7px 12px 7px 24px;
  position: relative;
  color: #5a6b84;
  font-size: 12px;
}

.main-nav .products-dropdown .dropdown-child::before {
  content: "";
  position: absolute;
  left: 9px;
  width: 8px;
  height: 8px;
  border-left: 1px solid #a9b7c9;
  border-bottom: 1px solid #a9b7c9;
}

.main-nav .products-dropdown .view-all-products {
  margin-top: 6px;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.main-nav .products-dropdown .view-all-products:hover {
  color: #fff;
  background: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(8, 31, 68, 0.18);
}

.btn-red {
  color: #fff;
  background: linear-gradient(180deg, var(--red-2), #c7070e);
}

.btn-navy {
  color: #fff;
  background: var(--navy);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(4, 23, 54, 0.55);
}

.btn-white {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.btn-green {
  color: #fff;
  background: #08a45a;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy-3);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 15, 36, 0.98) 0%, rgba(0, 20, 47, 0.9) 38%, rgba(0, 20, 47, 0.42) 70%, rgba(0, 20, 47, 0.86) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.08);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.home-hero {
  --hero-image: url("assets/home-hero.jpg");
}

.forged-hero {
  --hero-image: url("assets/forged-hero.jpg");
}

.cast-hero {
  --hero-image: url("assets/cast-hero.jpg");
}

.technical-hero {
  --hero-image: url("assets/technical-hero.jpg");
}

.hero-grid {
  min-height: 405px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 42px;
  padding: 46px 0 40px;
}

.product-hero .hero-grid {
  min-height: 330px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.technical-hero .hero-grid {
  min-height: 320px;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  color: #fff;
  letter-spacing: 0;
}

.product-hero .hero-copy h1,
.technical-hero .hero-copy h1 {
  font-size: clamp(38px, 4.4vw, 58px);
}

.hero-copy p {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 20px;
  color: #e7eef8;
}

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

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(6, 39, 86, 0.78);
}

.hero-badge strong {
  display: block;
  font-size: 15px;
  color: #fff;
}

.hero-badge span {
  display: block;
  font-size: 12px;
  color: #d9e6f7;
}

.calculator-card,
.quick-card {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-titlebar {
  min-height: 58px;
  padding: 16px 22px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-body,
.quick-body {
  padding: 22px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-size: 12px;
  font-weight: 900;
  color: #2d4360;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 11px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.field textarea {
  min-height: 78px;
  resize: vertical;
}

.calc-result {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.calc-result strong {
  color: var(--red);
  font-size: 24px;
}

.section {
  padding: 52px 0;
}

.section-tight {
  padding: 34px 0;
}

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

.section-title {
  margin: 0 auto 28px;
  max-width: 780px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.16;
  letter-spacing: 0;
}

.section-title p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.grid-4,
.grid-3,
.grid-2,
.grid-5 {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.grid-5 > *,
.grid-6 > * {
  min-width: 0;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(7, 35, 82, 0.06);
}

.metric-card,
.problem-card {
  padding: 22px;
  min-height: 132px;
}

.problem-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 15px;
  align-items: start;
}

.problem-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff1f1;
}

.problem-card h3,
.product-card h3,
.metric-card h3,
.resource-box h3,
.article-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.22;
}

.problem-card p,
.metric-card p,
.product-card p,
.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: center;
}

.copy-block h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.15;
}

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

.check-list,
.x-list,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li,
.x-list li,
.plain-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #233d5f;
  font-size: 14px;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px var(--green);
}

.x-list li::before {
  content: "x";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.factory-image,
.media-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.factory-image img,
.media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.product-card-body {
  padding: 18px;
}

.spec-list {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  font-size: 14px;
  color: #213b5e;
}

.spec-list b {
  color: var(--navy);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 900;
  font-size: 14px;
}

.case-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 176px;
}

.case-card.featured {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.case-card small {
  color: inherit;
  opacity: 0.8;
  font-weight: 800;
}

.case-number {
  margin: auto 0 14px;
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--green);
  font-weight: 900;
  font-size: 30px;
}

.case-card.featured .case-number {
  color: #fff;
}

.navy-panel {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  border-radius: 8px;
  padding: 28px;
}

.navy-panel .section-title {
  color: #fff;
}

.navy-panel .section-title p {
  color: #c9d7ea;
}

.resource-box {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 20, 47, 0.46);
}

.resource-box .number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 14px;
}

.resource-box ul,
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-box li {
  color: #dce8f6;
  font-size: 14px;
  padding: 4px 0;
}

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

.tool-item {
  min-height: 82px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.gallery-card {
  overflow: hidden;
  text-align: center;
  font-weight: 900;
}

.gallery-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.gallery-card span {
  display: block;
  padding: 12px;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.open .faq-answer {
  display: block;
}

.form-card {
  padding: 24px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: #fff;
  border-radius: 8px;
}

.form-card h2 {
  margin: 0 0 4px;
  text-align: center;
}

.form-card p {
  margin: 0 auto 18px;
  max-width: 610px;
  color: #dbe7f7;
  text-align: center;
}

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

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

.form-card .field label {
  color: #e8f0fb;
}

.quick-body {
  display: grid;
  gap: 12px;
}

.quick-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  color: #243d5c;
  font-size: 14px;
}

.quick-row b {
  color: var(--navy);
}

.subnav {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.subnav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 3px solid transparent;
  font-weight: 900;
  color: #2d4564;
}

.subnav a:hover,
.subnav a.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.comparison-table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--line);
  background: #fff;
}

.comparison-table th,
.comparison-table td,
.data-table th,
.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}

.comparison-table th,
.data-table th {
  color: #fff;
  background: var(--navy);
}

.comparison-table tr:last-child td,
.data-table tr:last-child td {
  border-bottom: 0;
}

.positive-negative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.notice-card {
  padding: 22px;
}

.notice-card.good {
  border-color: #cdecd9;
  background: #fbfffc;
}

.notice-card.bad {
  border-color: #f4d4d6;
  background: #fffafa;
}

.notice-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.notice-card.good h3 {
  color: #117a3c;
}

.notice-card.bad h3 {
  color: var(--red);
}

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

.process-step {
  position: relative;
  padding: 12px;
  text-align: center;
}

.process-step img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.process-step strong {
  display: block;
  font-size: 14px;
}

.process-step p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.article-card-body {
  padding: 16px;
}

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

.filter-pill {
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 900;
  background: #fff;
}

.filter-pill.active,
.filter-pill:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.trust-item {
  text-align: center;
  padding: 18px 12px;
}

.related-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.site-footer {
  color: #d9e6f7;
  background: var(--navy-3);
}

.footer-main {
  padding: 38px 0 30px;
  display: grid;
  grid-template-columns: 1.35fr repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.footer-brand .brand-mark {
  color: #fff;
  font-size: 27px;
}

.footer-brand p {
  color: #c6d6ea;
  margin: 12px 0 18px;
  max-width: 270px;
}

.socials {
  display: flex;
  gap: 9px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
}

.social-glyph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.social-in {
  font-size: 12px;
}

.social-f {
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
}

.social-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 10px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.footer-col h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
}

.footer-col li {
  margin: 8px 0;
  color: #c6d6ea;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: #c6d6ea;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1040px) {
  .main-nav {
    position: fixed;
    inset: 106px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu {
    display: inline-flex;
  }

  .hero-grid,
  .product-hero .hero-grid,
  .technical-hero .hero-grid,
  .split,
  .inquiry-grid,
  .related-contact {
    grid-template-columns: 1fr;
  }

  .hero-badges,
  .grid-4,
  .grid-5,
  .tool-strip,
  .process,
  .filter-row,
  .trust-row,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    display: none;
  }

  .topbar .container,
  .topbar-group,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar span {
    white-space: normal;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    font-size: 22px;
  }

  .nav-row {
    min-height: 64px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-actions .btn {
    flex: 1 1 150px;
    min-width: 0;
  }

  .hero-grid {
    padding: 34px 0;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .calc-grid,
  .form-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .hero-badges,
  .tool-strip,
  .process,
  .filter-row,
  .trust-row,
  .footer-main,
  .positive-negative,
  .subnav .container {
    grid-template-columns: 1fr;
  }

  .subnav {
    display: none;
  }

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

  .quick-row b {
    grid-column: 2;
    overflow-wrap: anywhere;
  }

  .calculator-card .calc-body[style] {
    grid-template-columns: 1fr !important;
  }

  .grid-3:has(> .product-card),
  .grid-4:has(> .product-card),
  .grid-5:has(> .product-card) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card img {
    height: 96px;
  }

  .product-card-body {
    padding: 11px;
  }

  .product-card h3 {
    font-size: 14px;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .product-card p,
  .product-card .spec-list,
  .product-card .text-link {
    font-size: 12px;
  }

  .product-card .spec-list {
    gap: 4px;
    margin: 8px 0;
  }

  .btn {
    max-width: 100%;
  }

  .form-card .btn,
  .notice-card .btn {
    white-space: normal;
    line-height: 1.2;
  }
}

.solutions-hero {
  --hero-image: url("assets/solutions-hero.jpg");
}

.case-hero {
  --hero-image: url("assets/case-hero.jpg");
}

.about-hero {
  --hero-image: url("assets/about-hero.jpg");
}

.contact-hero {
  --hero-image: url("assets/contact-hero.jpg");
}

.products-hero {
  --hero-image: url("assets/product-sag.jpg");
}

.page-hero .hero-grid {
  min-height: 282px;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  padding: 38px 0;
}

.breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 18px;
  color: #d9e6f7;
  font-size: 13px;
  font-weight: 800;
}

.section-kicker {
  margin: 0 0 7px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.icon-card {
  padding: 22px;
  text-align: center;
}

.icon-card .icon-wrap,
.solution-step .icon-wrap,
.prep-item .icon-wrap,
.contact-line .icon-wrap {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef3fa;
  color: var(--navy);
}

.icon-card h3,
.solution-step h3,
.prep-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.22;
}

.icon-card p,
.solution-step p,
.prep-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-step {
  position: relative;
  min-height: 210px;
  padding: 22px 18px;
  text-align: center;
}

.step-badge {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.industry-card,
.case-study-card {
  position: relative;
  overflow: hidden;
}

.industry-card img,
.case-study-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0 0 44px;
  background: linear-gradient(180deg, rgba(0, 20, 47, 0.08), rgba(0, 20, 47, 0.82));
  pointer-events: none;
}

.industry-card-body {
  position: absolute;
  inset: auto 0 44px;
  z-index: 1;
  padding: 18px;
  color: #fff;
}

.industry-card-body h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.industry-card-body p {
  margin: 0;
  color: #e2ebf7;
  font-size: 14px;
}

.industry-card .industry-details {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 44px;
  padding: 12px 16px;
  justify-content: space-between;
  color: var(--navy);
  background: #fff;
  border-top: 1px solid var(--line);
  transition: color 0.18s ease, background 0.18s ease;
}

.industry-card .industry-details:hover {
  color: var(--red);
  background: #f8fafc;
}

.mini-result-card {
  padding: 14px;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  align-items: center;
}

.mini-result-card img {
  width: 92px;
  height: 76px;
  border-radius: 6px;
  object-fit: cover;
}

.mini-result-card h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

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

.mini-result-card strong,
.case-metric strong,
.average-item strong {
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.assurance-band {
  color: #fff;
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
}

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

.assurance-item {
  min-height: 116px;
  padding: 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.filter-tabs .filter-pill {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
}

.case-study-card {
  display: flex;
  flex-direction: column;
}

.case-tag {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  z-index: 2;
}

.case-tag b {
  padding: 9px 12px;
  background: var(--red);
}

.case-tag span {
  padding: 9px 12px;
  background: rgba(6, 39, 86, 0.9);
}

.case-study-body {
  padding: 16px;
  display: grid;
  gap: 12px;
}

.case-study-body h3 {
  margin: 0;
  font-size: 20px;
}

.case-specs,
.result-metrics,
.prep-grid,
.contact-mini-grid,
.about-value-grid,
.testing-grid,
.partner-grid {
  display: grid;
  gap: 12px;
}

.case-specs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  font-size: 12px;
  color: #334b6b;
}

.case-specs b {
  display: block;
  color: var(--navy);
}

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

.case-metric {
  min-height: 72px;
  display: grid;
  place-items: center;
  text-align: center;
  border-left: 1px solid var(--line);
}

.case-metric:first-child {
  border-left: 0;
}

.case-metric span,
.average-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.quote-small {
  margin: 0;
  color: #536881;
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.average-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.average-item {
  min-height: 112px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
}

.about-stat-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-stat {
  min-height: 84px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.about-stat:first-child {
  border-left: 0;
}

.about-stat b {
  display: block;
  font-size: 22px;
}

.about-value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-value {
  min-height: 128px;
  padding: 24px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
}

.about-value .icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef3fa;
  color: var(--red);
}

.process-card {
  padding: 0;
  overflow: hidden;
}

.process-card img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.process-card-body {
  padding: 13px;
}

.process-card .step-badge {
  margin: -34px 0 8px;
}

.testing-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.testing-feature img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

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

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

.global-row {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: center;
}

.world-map {
  min-height: 220px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 45%, var(--red) 0 4px, transparent 5px),
    radial-gradient(circle at 35% 34%, var(--red) 0 4px, transparent 5px),
    radial-gradient(circle at 54% 46%, var(--red) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 42%, var(--red) 0 4px, transparent 5px),
    radial-gradient(circle at 80% 60%, var(--red) 0 4px, transparent 5px),
    linear-gradient(135deg, #edf2f8, #fff);
  border: 1px solid var(--line);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 24px;
  align-items: start;
}

.contact-form-card {
  padding: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-3), var(--navy));
}

.contact-form-card h2,
.contact-info-card h2,
.market-card h2 {
  margin: 0 0 8px;
}

.contact-form-card p {
  margin: 0 0 18px;
  color: #d9e6f7;
}

.contact-info-card,
.market-card {
  padding: 22px;
}

.manager-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  align-items: center;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.portrait {
  width: 104px;
  height: 118px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #e9eef6, #fff);
  color: var(--navy);
}

.contact-lines {
  display: grid;
  gap: 14px;
}

.contact-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.contact-line .icon-wrap {
  width: 42px;
  height: 42px;
  margin: 0;
}

.contact-line h3 {
  margin: 0 0 2px;
  color: var(--red);
  font-size: 14px;
}

.contact-line p {
  margin: 0;
  color: #10284f;
  font-size: 14px;
}

.business-hours {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  font-size: 14px;
}

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

.prep-item {
  padding: 20px 12px;
  text-align: center;
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 20px;
  align-items: center;
}

.market-map {
  min-height: 210px;
  border-radius: 8px;
  background-image: url("assets/contact-market-map.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

.site-footer a {
  color: #c6d6ea;
}

.site-footer a:hover {
  color: #fff;
}

.product-system-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.product-sidebar {
  position: sticky;
  top: 98px;
  padding: 20px;
}

.product-sidebar h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.category-nav {
  display: grid;
  gap: 8px;
}

.category-nav a {
  min-height: 42px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #223b5d;
  font-size: 13px;
  font-weight: 900;
}

.category-nav a:hover {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.sidebar-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.sidebar-note p {
  color: var(--muted);
  font-size: 13px;
}

.product-toolbar {
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.product-toolbar h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
}

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

.product-system-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 280px;
}

.product-system-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.product-system-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.product-tags span {
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--navy);
  background: #edf3fb;
  font-size: 11px;
  font-weight: 900;
}

.product-system-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.15;
}

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

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.product-spec-grid span {
  min-height: 54px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdff;
  color: #253f62;
  font-size: 12px;
}

.product-spec-grid b {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border-radius: 8px;
}

.product-comparison {
  min-width: 860px;
}

@media (max-width: 1040px) {
  .page-hero .hero-grid,
  .testing-feature,
  .global-row,
  .contact-page-grid,
  .market-grid,
  .product-system-layout {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
  }

  .assurance-row,
  .average-strip,
  .about-stat-strip,
  .prep-grid,
  .testing-grid,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .page-hero .hero-grid {
    min-height: 230px;
  }

  .case-specs,
  .result-metrics,
  .assurance-row,
  .average-strip,
  .about-stat-strip,
  .about-value-grid,
  .prep-grid,
  .testing-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .mini-result-card,
  .about-value,
  .manager-card,
  .contact-line,
  .product-system-card {
    grid-template-columns: 1fr;
  }

  .product-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-system-grid,
  .product-spec-grid {
    grid-template-columns: 1fr;
  }

  .product-system-card img {
    height: 150px;
    min-height: 150px;
  }

  .mini-result-card img,
  .portrait {
    width: 100%;
  }

  .case-metric {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .case-metric:first-child {
    border-top: 0;
  }
}

/* Product catalog and UI-reference detail pages */
.catalog-hero {
  --hero-image: url("assets/sag-detail-hero.jpg");
}

.catalog-hero .hero-grid {
  min-height: 350px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.catalog-hero .hero-copy h1 {
  font-size: clamp(40px, 4.6vw, 58px);
}

.selection-guide {
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.selection-guide h2 {
  margin: 0 0 14px;
  font-size: 19px;
}

.selection-guide ul {
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.selection-guide li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  color: #4d617b;
  font-size: 12px;
}

.selection-guide li .icon {
  width: 28px;
  height: 28px;
  padding: 5px;
  color: var(--navy);
  background: #edf3fb;
  border-radius: 50%;
}

.selection-guide li b {
  display: block;
  color: var(--ink);
  font-size: 13px;
}

.selection-guide .btn {
  width: 100%;
}

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

.selection-path a {
  min-height: 92px;
  padding: 18px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  align-items: center;
}

.selection-path .icon-wrap {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #eef3fa;
  border-radius: 50%;
}

.selection-path b,
.selection-path small {
  display: block;
}

.selection-path small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

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

.catalog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.catalog-card img {
  width: 100%;
  height: 162px;
  object-fit: cover;
}

.catalog-card-body {
  flex: 1;
  padding: 17px;
  display: flex;
  flex-direction: column;
}

.catalog-card h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

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

.catalog-card .spec-list {
  margin: auto 0 12px;
  font-size: 12px;
}

.catalog-compare {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 18px;
  align-items: stretch;
}

.choice-stack {
  display: grid;
  gap: 12px;
}

.choice-card {
  padding: 19px;
}

.choice-card:first-child {
  color: #fff;
  background: var(--navy);
}

.choice-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.choice-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
}

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

.application-tile {
  position: relative;
  min-height: 145px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.application-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 20, 47, 0.12), rgba(0, 20, 47, 0.9));
}

.application-tile div {
  position: absolute;
  inset: auto 13px 13px;
  z-index: 1;
}

.application-tile b,
.application-tile small {
  display: block;
}

.application-tile small {
  margin-top: 4px;
  color: #dbe7f7;
  font-size: 11px;
}

.catalog-cta {
  padding: 34px 0;
  color: #fff;
  background: var(--navy-3);
}

.catalog-cta-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: center;
}

.catalog-cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 30px;
}

.catalog-cta p {
  margin: 0;
  color: #d2deef;
}

.catalog-cta .form-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.product-detail-shell {
  padding: 20px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 20px;
  align-items: start;
}

.product-detail-main {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.pdp-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--navy-3);
  border-radius: 8px;
}

.pdp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 20, 47, 0.99) 0%, rgba(0, 20, 47, 0.92) 42%, rgba(0, 20, 47, 0.26) 72%, rgba(0, 20, 47, 0.12) 100%),
    var(--pdp-image);
  background-size: cover;
  background-position: center right;
}

.pdp-hero-copy {
  position: relative;
  z-index: 1;
  width: 62%;
  padding: 32px;
}

.pdp-breadcrumb {
  margin-bottom: 14px;
  color: #cbd8ea;
  font-size: 11px;
  font-weight: 800;
}

.pdp-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.07;
}

.pdp-hero h1 span {
  display: block;
  margin-top: 5px;
  font-size: 0.66em;
}

.pdp-hero p {
  margin: 14px 0 0;
  color: #e2ebf7;
  font-size: 15px;
}

.pdp-feature-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.pdp-feature {
  padding-right: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 10px;
  line-height: 1.25;
}

.pdp-feature:last-child {
  border-right: 0;
}

.pdp-feature .icon {
  width: 25px;
  height: 25px;
  margin-bottom: 7px;
}

.pdp-feature b {
  display: block;
  color: #fff;
  font-size: 11px;
}

.pdp-hero .hero-actions {
  margin-top: 20px;
}

.pdp-hero .btn {
  min-height: 40px;
  padding: 0 15px;
  font-size: 12px;
}

.pdp-panel {
  min-width: 0;
  padding: 20px;
}

.pdp-panel h2,
.pdp-panel h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.pdp-panel h2 {
  font-size: 20px;
  text-transform: uppercase;
}

.pdp-panel h3 {
  font-size: 17px;
}

.pdp-panel p {
  margin: 0;
  color: #405675;
  font-size: 13px;
}

.pdp-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: center;
}

.size-card {
  min-height: 112px;
  padding: 14px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  background: #f5f7fa;
  border-radius: 7px;
}

.size-card img {
  width: 92px;
  height: 82px;
  object-fit: cover;
  border-radius: 6px;
}

.size-card small,
.size-card strong,
.size-card span {
  display: block;
}

.size-card small {
  color: var(--navy);
  font-weight: 900;
}

.size-card strong {
  margin: 4px 0;
  color: var(--navy);
  font-size: 20px;
}

.size-card span {
  color: var(--muted);
  font-size: 11px;
}

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

.pdp-spec-grid .data-table th {
  width: 42%;
}

.pdp-spec-grid .data-table th,
.pdp-spec-grid .data-table td,
.pdp-data-table th,
.pdp-data-table td {
  padding: 8px 10px;
  font-size: 12px;
}

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

.pdp-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pdp-visual img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

.pdp-visual div {
  padding: 14px;
}

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

.pdp-benefit {
  padding: 15px 10px;
  text-align: center;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.pdp-benefit .icon {
  width: 34px;
  height: 34px;
  padding: 7px;
  color: var(--navy);
  background: #edf3fb;
  border-radius: 50%;
}

.pdp-benefit b {
  display: block;
  margin: 7px 0 4px;
  color: var(--navy);
  font-size: 12px;
}

.pdp-benefit span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

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

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

.quality-list div {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  color: #405675;
  font-size: 11px;
}

.quality-list .icon {
  color: var(--navy);
}

.quality-list b {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.product-detail-sidebar {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
}

.sidebar-card {
  padding: 17px;
}

.sidebar-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 17px;
  text-transform: uppercase;
}

.reviewer {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  align-items: start;
}

.reviewer img {
  width: 94px;
  height: 112px;
  object-fit: cover;
  border-radius: 6px;
}

.reviewer h3 {
  margin: 2px 0 4px;
  font-size: 15px;
}

.reviewer p,
.sidebar-card > p {
  margin: 0;
  color: #405675;
  font-size: 11px;
}

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

.sidebar-card .field {
  gap: 4px;
}

.sidebar-card .field input,
.sidebar-card .field select,
.sidebar-card .field textarea {
  min-height: 34px;
  padding: 7px 8px;
  font-size: 11px;
}

.sidebar-card .btn {
  width: 100%;
  min-height: 38px;
  margin-top: 10px;
  font-size: 11px;
}

.calc-summary {
  margin-top: 12px;
  padding-top: 10px;
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--line);
}

.calc-summary div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #405675;
  font-size: 11px;
}

.calc-summary b {
  color: var(--navy);
}

.sidebar-links {
  display: grid;
  gap: 7px;
}

.sidebar-links a {
  padding: 7px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
}

.sidebar-links a:last-child {
  border-bottom: 0;
}

.sidebar-inquiry {
  color: #fff;
  background: var(--navy-3);
  border-color: var(--navy-3);
}

.sidebar-inquiry h2,
.sidebar-inquiry p,
.sidebar-inquiry .field label {
  color: #fff;
}

.sidebar-inquiry p {
  opacity: 0.8;
}

@media (max-width: 1040px) {
  .main-nav .nav-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: stretch;
  }

  .main-nav .nav-item > a {
    padding-right: 12px;
  }

  .nav-dropdown-toggle {
    position: static;
    width: 46px;
    height: auto;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .products-dropdown {
    position: static;
    grid-column: 1 / -1;
    width: auto;
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    background: #f5f8fc;
  }

  .nav-products:hover .products-dropdown,
  .nav-products:focus-within .products-dropdown {
    display: none;
  }

  .nav-products.dropdown-open .products-dropdown {
    display: grid;
  }

  .catalog-hero .hero-grid,
  .catalog-compare,
  .catalog-cta-grid,
  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .selection-path,
  .catalog-grid,
  .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-inquiry {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .main-nav {
    inset: 64px 12px auto;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .catalog-hero .hero-grid {
    min-height: 0;
  }

  .selection-path,
  .catalog-grid,
  .application-grid,
  .product-detail-sidebar,
  .pdp-overview-grid,
  .pdp-spec-grid,
  .pdp-visual-grid,
  .pdp-two-col,
  .quality-list {
    grid-template-columns: 1fr;
  }

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

  .catalog-card img {
    height: 106px;
  }

  .catalog-card-body {
    padding: 11px;
  }

  .catalog-card h3 {
    font-size: 14px;
  }

  .catalog-card p,
  .catalog-card .spec-list,
  .catalog-card .text-link {
    font-size: 11px;
  }

  .product-detail-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .pdp-hero {
    min-height: 460px;
    align-items: flex-end;
  }

  .pdp-hero::before {
    background-image:
      linear-gradient(180deg, rgba(0, 20, 47, 0.1) 0%, rgba(0, 20, 47, 0.48) 36%, rgba(0, 20, 47, 0.98) 70%),
      var(--pdp-image);
    background-position: top center;
  }

  .pdp-hero-copy {
    width: 100%;
    padding: 22px;
  }

  .pdp-hero h1 {
    font-size: 31px;
  }

  .pdp-feature-row,
  .pdp-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pdp-feature:nth-child(2) {
    border-right: 0;
  }

  .pdp-panel {
    padding: 15px;
  }

  .size-card {
    grid-template-columns: 78px 1fr;
  }

  .size-card img {
    width: 78px;
    height: 72px;
  }

  .pdp-visual img {
    height: 155px;
  }

  .table-wrap {
    margin-right: -1px;
  }

  .pdp-data-table {
    min-width: 660px;
  }
}

/* Scroll-triggered entrance motion */
.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.58s ease var(--reveal-delay, 0ms),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-enabled [data-reveal="left"] {
  transform: translate3d(-24px, 0, 0);
}

.reveal-enabled [data-reveal="right"] {
  transform: translate3d(24px, 0, 0);
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.reveal-enabled .industry-card[data-reveal] img,
.reveal-enabled .application-tile[data-reveal] {
  transition:
    opacity 0.58s ease var(--reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    background-size 0.8s ease;
}

@media (max-width: 680px) {
  .reveal-enabled [data-reveal] {
    transform: translate3d(0, 16px, 0);
    transition-duration: 0.5s, 0.58s;
  }

  .reveal-enabled [data-reveal="left"],
  .reveal-enabled [data-reveal="right"] {
    transform: translate3d(0, 16px, 0);
  }
}

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

  .reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Solutions and case detail pages supplied in the July 2026 customer UI pack. */
.case-details{display:flex;align-items:center;justify-content:space-between;margin-top:18px;padding-top:14px;border-top:1px solid var(--border)}
.gb-detail-page{background:#f6f8fb}
.gb-detail-layout,.gb-case-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:20px;align-items:start}
.gb-detail-main,.gb-detail-side{display:grid;grid-template-columns:minmax(0,1fr);gap:16px;min-width:0}
.gb-detail-hero{position:relative;min-height:430px;overflow:hidden;border-radius:8px;background-image:linear-gradient(90deg,rgba(0,26,67,.98) 0%,rgba(0,31,77,.87) 48%,rgba(0,29,70,.18) 78%),var(--hero-image,var(--detail-image));background-position:center;background-size:cover;color:#fff}
.gb-detail-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(0,25,65,.76),transparent 54%);pointer-events:none}
.gb-detail-hero-copy{position:relative;z-index:1;display:flex;flex-direction:column;justify-content:center;min-height:430px;padding:34px 38px;max-width:740px}
.gb-breadcrumb{margin-bottom:15px;font-size:13px;opacity:.84}
.gb-detail-hero h1,.gb-case-detail-hero h1{margin:0 0 10px;font-size:clamp(34px,4vw,54px);line-height:1.02;letter-spacing:-.035em;text-transform:uppercase}
.gb-detail-hero h2{margin:0 0 14px;font-size:20px;color:#fff}
.gb-detail-hero p,.gb-case-detail-hero p{font-size:17px;line-height:1.62;color:#edf4ff}
.gb-detail-actions{display:flex;gap:10px;flex-wrap:wrap;margin:14px 0 26px}
.gb-detail-actions .btn{min-height:46px}
.gb-detail-hero .btn-outline{color:#fff;border-color:rgba(255,255,255,.7);background:rgba(0,18,49,.3)}
.gb-detail-hero-benefits{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border-top:1px solid rgba(255,255,255,.25)}
.gb-detail-hero-benefits span{display:flex;align-items:center;gap:8px;padding:18px 10px;border-right:1px solid rgba(255,255,255,.2);font-size:13px}
.gb-detail-hero-benefits .icon{width:29px;height:29px;flex:0 0 auto}
.gb-detail-block,.gb-engineer-card,.gb-cost-card,.gb-detail-inquiry,.gb-related-card{padding:20px;border:1px solid #dce4ef;border-radius:8px;background:#fff;box-shadow:0 4px 16px rgba(3,28,68,.035)}
.gb-detail-block>h2,.gb-engineer-card>h2,.gb-cost-card>h2,.gb-detail-inquiry>h2,.gb-related-card>h2{margin:0 0 14px;padding-bottom:9px;border-bottom:2px solid #e21a22;color:#09204a;font-size:17px;text-transform:uppercase}
.gb-detail-block>p{margin:0;line-height:1.7;color:#44526b}
.gb-detail-two{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}
.gb-detail-two>div{padding:16px;border:1px solid #e1e7f0;border-radius:7px;background:#fbfcfe}
.gb-detail-two h3{margin:0 0 12px;font-size:15px}
.gb-detail-checks{display:grid;gap:10px;margin:0;padding:0;list-style:none;color:#35445f}
.gb-detail-checks li{display:flex;align-items:flex-start;gap:8px;line-height:1.4}
.gb-detail-checks .icon{width:17px;height:17px;flex:0 0 auto;color:#13a448;stroke-width:3}
.gb-detail-checks.bad .icon{color:#ed1c24}
.gb-table-wrap{overflow:auto;border:1px solid #dce4ef;border-radius:6px}
.gb-detail-table{width:100%;min-width:620px;border-collapse:collapse;font-size:13px}
.gb-detail-table th{padding:11px;background:#052b60;color:#fff;text-align:center}
.gb-detail-table td{padding:11px;border-top:1px solid #e3e8f0;border-right:1px solid #e3e8f0;text-align:center;color:#31415e}
.gb-detail-feature-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.gb-detail-feature{display:flex;gap:12px;padding:15px;border:1px solid #e0e6ef;border-radius:7px}
.gb-detail-feature>.icon{width:36px;height:36px;flex:0 0 auto;color:#072d67}
.gb-detail-feature h3{margin:0 0 4px;font-size:15px}
.gb-detail-feature p{margin:0;font-size:12px;line-height:1.45;color:#5d6b80}
.gb-detail-snapshot{display:grid;grid-template-columns:230px minmax(0,1fr);gap:16px;overflow:hidden;border-radius:7px;background:#062e64;color:#fff}
.gb-detail-snapshot>img{width:100%;height:100%;min-height:170px;object-fit:cover}
.gb-detail-snapshot>div{padding:18px 18px 18px 0}
.gb-detail-snapshot h3{margin:0 0 4px;font-size:20px;color:#fff}
.gb-detail-snapshot p{margin:0 0 14px;color:#dbe9fa}
.gb-detail-metrics{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:8px}
.gb-detail-metric{display:grid;align-content:center;min-height:80px;padding:10px;border:1px solid #a9c2e4;border-radius:7px;background:#fff;text-align:center;color:#09204a}
.gb-detail-metric strong{font-size:22px;color:#0aa346}
.gb-detail-metric span{font-size:11px;font-weight:700}
.gb-detail-flow{display:flex;align-items:center;justify-content:space-between;gap:9px;overflow:auto;padding:8px}
.gb-detail-flow span{display:grid;justify-items:center;gap:8px;min-width:88px;text-align:center;font-size:11px}
.gb-detail-flow span .icon{width:38px;height:38px;color:#062e64}
.gb-detail-flow em{font-style:normal;font-size:24px;color:#082c62}
.gb-detail-qa{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:10px}
.gb-detail-qa article{padding:14px 8px;border:1px solid #dce4ef;border-radius:7px;text-align:center}
.gb-detail-qa .icon{width:31px;height:31px;color:#062e64}
.gb-detail-qa h3{margin:7px 0 4px;font-size:13px}
.gb-detail-qa p{margin:0;font-size:10px;color:#6a7487}
.gb-detail-cta{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:18px 24px;border-radius:8px;background:#062b60;color:#fff}
.gb-detail-cta>div{display:flex;align-items:center;gap:14px}
.gb-detail-cta>div>.icon{width:42px;height:42px}
.gb-detail-cta span{display:grid;gap:3px}
.gb-detail-cta b{font-size:18px}.gb-detail-cta small{color:#d8e4f3}
.gb-detail-side{position:sticky;top:92px}
.gb-engineer-card img{width:100%;height:188px;object-fit:cover;object-position:center top;border-radius:7px;background:#e7ecf2}
.gb-engineer-card h3{margin:12px 0 2px;font-size:18px}.gb-engineer-card small{color:#596579}.gb-engineer-card p{font-size:13px;line-height:1.55;color:#5b6779}
.gb-cost-card,.gb-detail-inquiry{display:grid;gap:10px}
.gb-cost-card label,.gb-detail-inquiry label{display:grid;gap:5px;font-size:12px;font-weight:700;color:#172e54}
.gb-cost-card input,.gb-detail-inquiry input,.gb-detail-inquiry select,.gb-detail-inquiry textarea{width:100%;min-height:38px;padding:8px 10px;border:1px solid #ced8e6;border-radius:4px;background:#fff}
.gb-detail-inquiry textarea{min-height:96px;resize:vertical}
.gb-cost-card>div{display:flex;justify-content:space-between;gap:8px;padding-top:8px;border-top:1px solid #e1e6ef;font-size:12px}.gb-cost-card strong{color:#e21a22}
.gb-detail-inquiry{background:#052c62;color:#fff}.gb-detail-inquiry>h2{color:#fff;border-color:#ed1c24}.gb-detail-inquiry>p{margin:0;color:#dbe6f4;font-size:12px}.gb-detail-inquiry label{color:#fff}.gb-detail-inquiry .btn{justify-content:center}
.gb-related-card{display:grid;gap:0}.gb-related-card a{padding:11px 0;border-bottom:1px solid #e3e8ef;color:#112b55;font-size:13px;font-weight:700}
.gb-case-detail-hero{position:relative;padding:54px 0;color:#fff;background-image:linear-gradient(90deg,rgba(0,24,62,.97),rgba(0,32,76,.73) 55%,rgba(0,20,52,.12)),var(--hero-image,var(--case-image));background-position:center;background-size:cover}
.gb-case-detail-hero .container{max-width:1180px}.gb-case-detail-hero h1{max-width:800px}.gb-case-detail-hero p{max-width:760px}.gb-case-hero-meta{display:flex;gap:22px;flex-wrap:wrap;margin:18px 0}.gb-case-hero-meta span{display:flex;align-items:center;gap:6px;font-size:13px}.gb-case-hero-meta .icon{width:16px;height:16px;color:#ef3b42}
.gb-case-layout{grid-template-columns:minmax(0,1fr) 290px}
.gb-case-snapshot{display:grid;grid-template-columns:1.05fr .95fr;gap:16px}.gb-case-snapshot dl{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;margin:0;border:1px solid #dee5ee;border-radius:7px;overflow:hidden}.gb-case-snapshot dl div{padding:11px;border-right:1px solid #e0e6ee;border-bottom:1px solid #e0e6ee}.gb-case-snapshot dt{font-size:11px;font-weight:800;color:#65718a}.gb-case-snapshot dd{margin:3px 0 0;font-weight:700;color:#102b55}.gb-case-challenges{padding:16px;border:1px solid #e1e7ef;border-radius:7px}.gb-case-challenges h3{margin:0 0 12px;font-size:15px}
.gb-results-table td:last-child{font-weight:800;color:#0b9d45}.gb-case-result{display:flex;gap:10px;margin-top:12px;padding:12px;border:1px solid #bfe1c9;border-radius:6px;background:#effaf2;color:#1c6537}.gb-case-result strong{display:flex;align-items:center;gap:5px;white-space:nowrap}.gb-case-result .icon{width:18px;height:18px}
.gb-case-metrics{grid-template-columns:repeat(4,minmax(0,1fr))}.gb-case-metrics .gb-detail-metric{background:#f9fbfd}
.gb-detail-block .faq-list{display:grid;gap:7px}.gb-detail-block .faq-item{overflow:hidden;border:1px solid #dce4ef;border-radius:5px;background:#fff}.gb-detail-block .faq-item>button{display:flex;align-items:center;justify-content:space-between;width:100%;padding:11px 13px;border:0;background:#fff;color:#132b52;text-align:left;font-weight:700;cursor:pointer}.gb-detail-block .faq-item>button .icon{width:17px;height:17px}.gb-detail-block .faq-item>p{display:none;margin:0;padding:0 13px 13px;color:#59677d;line-height:1.55}.gb-detail-block .faq-item.open>p{display:block}.gb-detail-block .faq-item.open>button .icon{transform:rotate(45deg)}
@media(max-width:1050px){.gb-detail-layout,.gb-case-layout{grid-template-columns:minmax(0,1fr)}.gb-detail-side{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}.gb-detail-side>#request{grid-column:1/-1}.gb-detail-feature-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.gb-detail-qa{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:720px){.gb-detail-page{padding-top:16px}.gb-detail-hero,.gb-detail-hero-copy{min-height:520px}.gb-detail-hero-copy{padding:26px 20px}.gb-detail-hero-benefits{grid-template-columns:repeat(2,minmax(0,1fr))}.gb-detail-two,.gb-case-snapshot,.gb-detail-snapshot{grid-template-columns:1fr}.gb-detail-snapshot>div{padding:0 16px 18px}.gb-detail-feature-grid,.gb-detail-side{grid-template-columns:1fr}.gb-detail-qa{grid-template-columns:repeat(2,minmax(0,1fr))}.gb-detail-metrics,.gb-case-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}.gb-detail-cta{align-items:flex-start;flex-direction:column}.gb-case-detail-hero{padding:38px 0}.gb-case-hero-meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.gb-detail-block{padding:16px}.gb-detail-flow{justify-content:flex-start}}

/* July 2026 supplied-UI fidelity pass: nine Solution / Case detail pages. */
.gb-ui-detail-page,.gb-ui-case-page{padding:10px 0 28px;background:#fff;color:#10264c}
.gb-ui-solution-layout{display:grid;grid-template-columns:minmax(0,1fr) 280px;gap:14px;align-items:start}
.gb-ui-solution-main,.gb-ui-solution-side{display:grid;gap:10px;min-width:0}
.gb-ui-solution-side{position:sticky;top:88px}
.gb-ui-solution-hero{position:relative;min-height:355px;overflow:hidden;border-radius:5px;background-image:linear-gradient(90deg,rgba(0,26,67,.28),rgba(0,27,67,.08)),var(--detail-image);background-position:center;background-size:cover;color:#fff}
.gb-ui-solution-hero:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(1,31,72,.28),transparent 68%);pointer-events:none}
.gb-ui-hero-copy{position:relative;z-index:1;display:flex;flex-direction:column;justify-content:center;width:73%;min-height:355px;padding:18px 24px 12px}
.gb-ui-hero-copy .gb-breadcrumb{margin-bottom:12px;font-size:10px}
.gb-ui-hero-copy h1{margin:0 0 7px;color:#fff;font-size:clamp(31px,3.4vw,44px);line-height:1.02;letter-spacing:-.028em;text-transform:uppercase}
.gb-ui-hero-copy h2{margin:0 0 9px;color:#fff;font-size:16px;line-height:1.25}
.gb-ui-hero-copy>p{max-width:570px;margin:0;color:#fff;font-size:12px;line-height:1.55}
.gb-ui-hero-copy .gb-detail-actions{margin:13px 0 12px;gap:8px}
.gb-ui-hero-copy .btn{min-height:36px;padding:9px 15px;font-size:10px}
.gb-ui-hero-copy .btn-outline{border-color:#fff;color:#fff;background:rgba(1,27,65,.55)}
.gb-ui-hero-benefits{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));margin-top:auto;border-top:1px solid rgba(255,255,255,.28)}
.gb-ui-hero-benefits span{display:grid;justify-items:center;gap:4px;padding:9px 5px;border-right:1px solid rgba(255,255,255,.18);text-align:center}
.gb-ui-hero-benefits span:last-child{border-right:0}
.gb-ui-hero-benefits .icon{width:25px;height:25px}
.gb-ui-hero-benefits b{font-size:9px;line-height:1.15}
.gb-ui-section,.gb-ui-engineer,.gb-ui-calculator,.gb-ui-related,.gb-ui-resources,.gb-ui-inquiry{min-width:0;padding:12px;border:1px solid #dfe5ed;border-radius:5px;background:#fff;box-shadow:0 2px 10px rgba(6,34,72,.025)}
.gb-ui-section>h2,.gb-ui-engineer>h2,.gb-ui-calculator>h2,.gb-ui-related>h2,.gb-ui-resources>h2,.gb-ui-inquiry>h2{margin:0 0 9px;color:#0a2858;font-size:13px;line-height:1.25;text-transform:uppercase}
.gb-ui-section>h2:after,.gb-ui-calculator>h2:after{content:"";display:block;width:44px;height:2px;margin-top:6px;background:#ed1c24}
.gb-ui-section>p,.gb-ui-section>small{display:block;margin:0;color:#2f4263;font-size:11px;line-height:1.55}
.gb-ui-two,.gb-ui-pair{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;min-width:0}
.gb-ui-two>*,.gb-ui-pair>*{min-width:0}
.gb-ui-pair>.gb-ui-section{height:100%}
.gb-ui-pair.custom-pair{grid-template-columns:1.5fr .95fr}
.gb-ui-two>div{padding:10px;border:1px solid #e2e7ee;border-radius:4px;background:#fff}
.gb-ui-two h3{margin:0 0 8px;font-size:11px;color:#102d5d}
.gb-detail-checks{gap:6px}
.gb-detail-checks li{gap:6px;font-size:10px;line-height:1.35}
.gb-detail-checks .icon{width:13px;height:13px}
.gb-ui-ore-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:3px 9px}
.gb-ui-ore-grid span{display:flex;align-items:center;gap:7px;padding:6px 3px;border-bottom:1px solid #edf0f5;font-size:10px}
.gb-ui-ore-grid .icon{width:21px;height:21px;color:#0b2e65}
.gb-ui-ore-grid b{font-size:10px}
.gb-table-wrap{max-width:100%;border-radius:4px}
.gb-detail-table{min-width:560px;font-size:9px}
.gb-detail-table th{padding:7px 6px;background:#032d63}
.gb-detail-table td{padding:7px 6px;line-height:1.3}
.gb-ui-custom-table .gb-detail-table{min-width:440px}
.gb-ui-custom-table .gb-detail-table td:first-child{width:34%;font-weight:800;text-align:left}
.gb-ui-compare td:first-child{font-weight:800}
.gb-ui-feature-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:9px}
.custom-pair .gb-ui-feature-grid{grid-template-columns:1fr}
.gb-ui-feature{display:flex;gap:8px;min-height:72px;padding:10px;border:1px solid #dfe5ed;border-radius:4px}
.gb-ui-feature>.icon{width:28px;height:28px;flex:0 0 auto;color:#082e65}
.gb-ui-feature h3{margin:0 0 3px;font-size:10px}
.gb-ui-feature p{margin:0;color:#4e5f78;font-size:8px;line-height:1.35}
.gb-ui-snapshot{display:grid;grid-template-columns:190px minmax(0,1fr);overflow:hidden;border:1px solid #dbe3ed;border-radius:4px;background:#fff}
.gb-ui-snapshot>img{width:100%;height:124px;object-fit:cover}
.gb-ui-snapshot>div{padding:9px}
.gb-ui-snapshot h3{margin:0 0 3px;color:#0a2b5f;font-size:13px}
.gb-ui-snapshot p{margin:0 0 7px;color:#455b79;font-size:9px}
.gb-ui-metrics{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:5px}
.gb-ui-metric{display:grid;align-content:center;min-height:56px;padding:5px;border:1px solid #a7bad4;border-radius:4px;background:#fff;text-align:center}
.gb-ui-metric strong{color:#079b43;font-size:15px;line-height:1}
.gb-ui-metric span{margin-top:3px;color:#102d5c;font-size:7px;font-weight:800;line-height:1.15}
.gb-ui-flow{display:flex;align-items:center;justify-content:space-between;gap:4px;overflow:auto;padding:2px}
.gb-ui-flow span{display:grid;justify-items:center;gap:5px;min-width:70px;text-align:center}
.gb-ui-flow .icon{width:31px;height:31px;color:#082d63}
.gb-ui-flow b{font-size:8px;line-height:1.15}
.gb-ui-flow em{font-style:normal;color:#0d3367;font-size:16px}
.gb-ui-qa{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:7px}
.gb-ui-qa article{padding:8px 5px;border:1px solid #dfe5ed;border-radius:4px;text-align:center}
.gb-ui-qa .icon{width:26px;height:26px;color:#092e63}
.gb-ui-qa h3{margin:5px 0 3px;font-size:8px;line-height:1.15}
.gb-ui-qa p{margin:0;color:#586880;font-size:7px;line-height:1.3}
.gb-ui-section .faq-list{display:grid;gap:3px}
.gb-ui-section .faq-item{border:1px solid #dce3ed;border-radius:2px}
.gb-ui-section .faq-item>button{display:flex;align-items:center;justify-content:space-between;width:100%;padding:7px 8px;border:0;background:#fff;color:#102b52;text-align:left;font-size:9px;font-weight:700;cursor:pointer}
.gb-ui-section .faq-item>button .icon{width:13px;height:13px}
.gb-ui-section .faq-item>p{display:none;margin:0;padding:0 8px 8px;font-size:9px}
.gb-ui-section .faq-item.open>p{display:block}
.gb-ui-section .faq-item.open>button .icon{transform:rotate(45deg)}
.gb-ui-bottom-cta{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 18px;border-radius:5px;background:#062f67;color:#fff}
.gb-ui-bottom-cta>div{display:flex;align-items:center;gap:11px}
.gb-ui-bottom-cta .icon{width:34px;height:34px}
.gb-ui-bottom-cta span{display:grid;gap:2px}
.gb-ui-bottom-cta b{font-size:13px}
.gb-ui-bottom-cta small{color:#d9e6f6;font-size:9px}
.gb-ui-bottom-cta .btn{min-height:34px;font-size:9px}
.gb-ui-engineer-body{display:grid;gap:7px}
.gb-ui-engineer img{width:100%;height:150px;object-fit:contain;object-position:center;border-radius:4px;background:#edf0f4}
.gb-ui-engineer h3{margin:0;color:#102e5c;font-size:15px}
.gb-ui-engineer small{color:#4f5e74;font-size:9px}
.gb-ui-engineer p{margin:5px 0 0;color:#465874;font-size:9px;line-height:1.55}
.gb-ui-calculator,.gb-ui-inquiry{display:grid;gap:7px}
.gb-ui-calculator label,.gb-ui-inquiry label{display:grid;gap:3px;color:#162f59;font-size:8px;font-weight:800}
.gb-ui-calculator input,.gb-ui-calculator select,.gb-ui-inquiry input,.gb-ui-inquiry select,.gb-ui-inquiry textarea{width:100%;min-height:29px;padding:5px 7px;border:1px solid #ccd6e3;border-radius:3px;background:#fff;font-size:9px}
.gb-ui-inquiry textarea{min-height:68px;resize:vertical}
.gb-ui-form-two{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:6px}
.gb-ui-calculator dl{display:grid;gap:5px;margin:2px 0}
.gb-ui-calculator dl div{display:flex;justify-content:space-between;gap:6px;font-size:8px}
.gb-ui-calculator dd{margin:0;color:#ed1c24;font-weight:900}
.gb-ui-calculator .btn,.gb-ui-inquiry .btn{width:100%;min-height:31px;justify-content:center;font-size:8px}
.gb-ui-related,.gb-ui-resources{display:grid;gap:4px}
.gb-ui-related>a{display:grid;grid-template-columns:58px 1fr;gap:7px;padding:5px 0;border-bottom:1px solid #e4e9ef;color:#102c59}
.gb-ui-related img{width:58px;height:43px;object-fit:cover;border-radius:3px}
.gb-ui-related span{display:grid;align-content:center}
.gb-ui-related b{font-size:8px}.gb-ui-related small{font-size:7px}.gb-ui-related em{font-style:normal;color:#0b57a6;font-size:7px;font-weight:800}
.gb-ui-related>strong{padding-top:4px;text-align:center;font-size:8px}
.gb-ui-resources>a{display:flex;align-items:center;gap:5px;padding:5px 0;border-bottom:1px solid #e6eaf0;color:#102d59;font-size:8px;font-weight:800}
.gb-ui-resources .icon{width:12px;height:12px}
.gb-ui-inquiry{background:#052d63;color:#fff}
.gb-ui-inquiry>h2{color:#fff}.gb-ui-inquiry>p{margin:0;color:#e1ebf7;font-size:8px}.gb-ui-inquiry label{color:#fff}
.gb-ui-inquiry .btn-outline{border-color:#fff;color:#fff;background:transparent}

.gb-ui-case-hero{position:relative;min-height:300px;padding:20px 0;background-image:linear-gradient(90deg,rgba(1,27,66,.98) 0%,rgba(0,30,72,.8) 42%,rgba(0,28,68,.12) 72%),var(--hero-image,var(--case-image));background-position:center;background-size:cover;color:#fff}
.gb-ui-case-hero .container{display:flex;flex-direction:column;justify-content:center;min-height:260px}
.gb-ui-case-hero .gb-breadcrumb{margin-bottom:12px;font-size:9px}
.gb-ui-case-hero h1{max-width:620px;margin:0 0 7px;color:#fff;font-size:clamp(29px,3.3vw,44px);line-height:1.04;letter-spacing:-.025em}
.gb-ui-case-hero p{max-width:590px;margin:0;color:#fff;font-size:12px;line-height:1.4}
.gb-ui-case-meta,.gb-ui-case-badges{display:flex;gap:14px;flex-wrap:wrap;margin-top:9px}
.gb-ui-case-meta span,.gb-ui-case-badges span{display:flex;align-items:center;gap:4px;font-size:8px;font-weight:700}
.gb-ui-case-meta .icon,.gb-ui-case-badges .icon{width:12px;height:12px;color:#ed1c24}
.gb-ui-case-hero .btn{align-self:flex-start;min-height:35px;margin-top:13px;font-size:9px}
.gb-ui-case-board{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:14px;align-items:start}
.gb-ui-case-cell{min-width:0}
.gb-ui-case-board .gb-ui-section,.gb-ui-case-board .gb-ui-engineer{padding:0;border:0;box-shadow:none}
.gb-ui-case-board .gb-ui-section>h2,.gb-ui-case-board .gb-ui-engineer>h2{margin-bottom:9px;font-size:11px}
.gb-ui-case-board .gb-ui-section>h2:after{display:none}
.case-snapshot{grid-column:span 4}.case-review{grid-column:span 3}.case-challenges{grid-column:span 5}
.case-solution{grid-column:span 4}.case-results{grid-column:span 5}.case-selection{grid-column:span 3}
.case-quality{grid-column:span 4}.case-config{grid-column:span 5}.case-related{grid-column:span 3}.case-faq{grid-column:span 4}.gb-ui-case-cta{grid-column:span 8}
.gb-ui-case-snapshot{display:grid;margin:0}
.gb-ui-case-snapshot>div{display:grid;grid-template-columns:118px 1fr;gap:7px;align-items:center;min-height:31px;border-bottom:1px solid #edf0f4}
.gb-ui-case-snapshot dt{display:flex;align-items:center;gap:6px;color:#102e5d;font-size:8px;font-weight:900}
.gb-ui-case-snapshot dt .icon{width:14px;height:14px}
.gb-ui-case-snapshot dd{margin:0;color:#334965;font-size:8px}
.gb-ui-engineer.is-horizontal .gb-ui-engineer-body{grid-template-columns:86px 1fr;align-items:center;padding:10px;border:1px solid #dfe5ed;border-radius:4px}
.gb-ui-engineer.is-horizontal img{width:86px;height:110px}
.gb-ui-engineer.is-horizontal h3{font-size:12px}
.gb-ui-engineer.is-horizontal p{font-size:8px}
.gb-ui-challenges{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}
.gb-ui-challenges article{display:flex;gap:9px;min-height:88px;padding:10px;border:1px solid #dfe5ed;border-radius:4px;box-shadow:0 5px 15px rgba(4,29,64,.035)}
.gb-ui-challenges>.icon{width:30px;height:30px;flex:0 0 auto;padding:7px;border-radius:50%;background:#e9101a;color:#fff}
.gb-ui-challenges h3{margin:0 0 3px;font-size:9px}.gb-ui-challenges p{margin:0;color:#51617a;font-size:7px;line-height:1.4}
.gb-ui-case-board .gb-detail-table{min-width:390px;font-size:8px}
.gb-ui-case-board .gb-detail-table th,.gb-ui-case-board .gb-detail-table td{padding:6px}
.gb-ui-case-board .gb-ui-section>small{margin-top:6px;font-size:7px}
.gb-case-result{align-items:center;margin-top:7px;padding:8px;font-size:7px}
.gb-case-result .icon{width:20px;height:20px;flex:0 0 auto;color:#099b43}
.gb-ui-qa.is-case{grid-template-columns:repeat(5,minmax(0,1fr))}
.gb-ui-qa.is-case article{padding:7px 3px;border:0}.gb-ui-qa.is-case .icon{width:28px;height:28px}.gb-ui-qa.is-case h3{font-size:7px}.gb-ui-qa.is-case p{font-size:6px}
.gb-ui-case-links{display:grid;border:1px solid #dfe5ed;border-radius:4px}
.gb-ui-case-links a{display:grid;grid-template-columns:1fr 10px;padding:8px;border-bottom:1px solid #e5e9ef;color:#102d5c;font-size:8px}
.gb-ui-case-links b,.gb-ui-case-links span{grid-column:1}.gb-ui-case-links span{color:#5b6b82;font-size:7px}.gb-ui-case-links a:last-child{border-bottom:0}
.gb-ui-case-cta{min-height:142px;padding:16px 50% 16px 24px;border-radius:4px;background-image:linear-gradient(90deg,#062f67 0%,#062f67 43%,rgba(6,47,103,.2) 70%),var(--cta-image);background-position:center;background-size:cover;color:#fff}
.gb-ui-case-cta h2{margin:0 0 5px;color:#fff;font-size:15px}.gb-ui-case-cta p{margin:0 0 8px;color:#e1eaf6;font-size:8px}.gb-ui-case-cta .btn{min-height:29px;margin:2px 3px 2px 0;padding:6px 10px;font-size:7px}.gb-ui-case-cta .btn-outline{border-color:#fff;color:#fff;background:transparent}
.gb-ui-case-board.is-classic .case-snapshot{grid-column:span 9}.gb-ui-case-board.is-classic .case-review{grid-column:span 3}.gb-ui-case-board.is-classic .case-challenges{grid-column:span 9}.gb-ui-case-board.is-classic .case-inquiry{grid-column:10/span 3;grid-row:2/span 2}.gb-ui-case-board.is-classic .case-solution{grid-column:span 4}.gb-ui-case-board.is-classic .case-results{grid-column:span 5}.gb-ui-case-board.is-classic .case-quality{grid-column:span 7}.gb-ui-case-board.is-classic .case-selection{grid-column:span 5}.gb-ui-case-board.is-classic .case-related,.gb-ui-case-board.is-classic .case-faq,.gb-ui-case-board.is-classic .gb-ui-case-cta{grid-column:span 4}
.gb-ui-case-board.is-classic .case-snapshot .gb-ui-case-snapshot{grid-template-columns:repeat(2,minmax(0,1fr))}.gb-ui-case-board.is-classic .case-snapshot .gb-ui-case-snapshot>div{padding-right:10px}
.case-inquiry .gb-ui-inquiry{height:100%}
@media(max-width:1050px){.gb-ui-solution-layout{grid-template-columns:minmax(0,1fr)}.gb-ui-solution-side{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}.gb-ui-solution-side>#request{grid-column:1/-1}.gb-ui-case-board{grid-template-columns:repeat(6,minmax(0,1fr))}.gb-ui-case-board>*{grid-column:span 3!important}.gb-ui-case-board .case-results,.gb-ui-case-board .case-challenges,.gb-ui-case-board .gb-ui-case-cta{grid-column:span 6!important}}
@media(max-width:700px){.gb-ui-solution-layout{width:min(calc(100% - 18px),1180px)}.gb-ui-solution-hero,.gb-ui-hero-copy{min-height:510px}.gb-ui-solution-hero{background-position:64% center}.gb-ui-solution-hero:after{background:linear-gradient(180deg,rgba(1,24,60,.08),rgba(1,28,68,.95) 54%)}.gb-ui-hero-copy{justify-content:flex-end;width:100%;padding:20px 16px}.gb-ui-hero-copy h1{font-size:30px}.gb-ui-hero-benefits{grid-template-columns:repeat(3,minmax(0,1fr))}.gb-ui-two,.gb-ui-pair,.gb-ui-pair.custom-pair,.gb-ui-snapshot{grid-template-columns:1fr}.gb-ui-feature-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.gb-ui-qa{grid-template-columns:repeat(2,minmax(0,1fr))}.gb-ui-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}.gb-ui-solution-side{grid-template-columns:1fr}.gb-ui-bottom-cta{align-items:flex-start;flex-direction:column}.gb-ui-case-hero{min-height:420px;background-position:68% center}.gb-ui-case-hero:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,23,58,.08),rgba(0,25,63,.98) 58%)}.gb-ui-case-hero .container{position:relative;z-index:1;justify-content:flex-end;min-height:380px}.gb-ui-case-hero h1{font-size:29px}.gb-ui-case-board{grid-template-columns:1fr;width:min(calc(100% - 20px),1180px)}.gb-ui-case-board>*{grid-column:1!important;grid-row:auto!important}.gb-ui-case-board.is-classic .case-snapshot .gb-ui-case-snapshot{grid-template-columns:1fr}.gb-ui-challenges{grid-template-columns:1fr}.gb-ui-qa.is-case{grid-template-columns:repeat(2,minmax(0,1fr))}.gb-ui-case-cta{padding:18px;min-height:190px;background-image:linear-gradient(90deg,rgba(6,47,103,.96),rgba(6,47,103,.58)),var(--cta-image)}}

/* July 20 supplied-UI pixel pass. Everything here is scoped to the nine detail pages. */
.gb-ui-detail-page .gb-ui-solution-layout,
.gb-ui-case-page .gb-ui-case-board,
.gb-ui-case-page .gb-ui-case-wide{width:min(calc(100% - 32px),1330px);max-width:1330px}
.gb-ui-detail-page .gb-ui-solution-layout{grid-template-columns:minmax(0,1fr) 300px;gap:24px}
.gb-ui-detail-page .gb-ui-solution-main,.gb-ui-detail-page .gb-ui-solution-side{gap:14px}
.gb-ui-detail-page .gb-ui-solution-hero{min-height:370px;border-radius:4px}
.gb-ui-detail-page .gb-ui-hero-copy{width:76%;min-height:370px;padding:22px 30px 14px}
.gb-ui-detail-page .gb-ui-hero-copy .gb-breadcrumb{margin-bottom:13px;font-size:11px}
.gb-ui-detail-page .gb-ui-hero-copy h1{max-width:760px;margin-bottom:8px;font-size:clamp(38px,3.7vw,52px)}
.gb-ui-detail-page .gb-ui-hero-copy h2{margin-bottom:10px;font-size:18px}
.gb-ui-detail-page .gb-ui-hero-copy>p{max-width:650px;font-size:13px;line-height:1.55}
.gb-ui-detail-page .gb-ui-hero-copy .gb-detail-actions{margin:15px 0 13px}
.gb-ui-detail-page .gb-ui-hero-copy .btn{min-height:40px;padding:10px 17px;font-size:11px}
.gb-ui-detail-page .gb-ui-hero-benefits span{gap:5px;padding:10px 6px}
.gb-ui-detail-page .gb-ui-hero-benefits .icon{width:28px;height:28px}
.gb-ui-detail-page .gb-ui-hero-benefits b{font-size:10px}
.gb-ui-custom-grinding-media-solution .gb-ui-solution-hero,
.gb-ui-custom-grinding-media-solution .gb-ui-hero-copy{min-height:475px}
.gb-ui-detail-page .gb-ui-section,.gb-ui-detail-page .gb-ui-engineer,.gb-ui-detail-page .gb-ui-calculator,.gb-ui-detail-page .gb-ui-related,.gb-ui-detail-page .gb-ui-resources,.gb-ui-detail-page .gb-ui-inquiry{padding:16px}
.gb-ui-detail-page .gb-ui-section>h2,.gb-ui-detail-page .gb-ui-engineer>h2,.gb-ui-detail-page .gb-ui-calculator>h2,.gb-ui-detail-page .gb-ui-related>h2,.gb-ui-detail-page .gb-ui-resources>h2,.gb-ui-detail-page .gb-ui-inquiry>h2{margin-bottom:11px;font-size:15px}
.gb-ui-detail-page .gb-ui-section>p,.gb-ui-detail-page .gb-ui-section>small{font-size:12px;line-height:1.62}
.gb-ui-detail-page .gb-ui-two,.gb-ui-detail-page .gb-ui-pair{gap:14px}
.gb-ui-detail-page .gb-ui-two>div{padding:13px}
.gb-ui-detail-page .gb-ui-two h3{font-size:12px}
.gb-ui-detail-page .gb-detail-checks{gap:8px}
.gb-ui-detail-page .gb-detail-checks li{font-size:11px;line-height:1.4}
.gb-ui-detail-page .gb-detail-checks .icon{width:15px;height:15px}
.gb-ui-detail-page .gb-ui-ore-grid span{padding:8px 4px;font-size:11px}
.gb-ui-detail-page .gb-ui-ore-grid .icon{width:25px;height:25px}
.gb-ui-detail-page .gb-ui-ore-grid b{font-size:11px}
.gb-ui-detail-page .gb-detail-table{font-size:10.5px}
.gb-ui-detail-page .gb-detail-table th,.gb-ui-detail-page .gb-detail-table td{padding:9px 8px}
.gb-ui-detail-page .gb-ui-feature-grid{gap:11px}
.gb-ui-detail-page .gb-ui-feature{min-height:92px;padding:13px}
.gb-ui-detail-page .gb-ui-feature>.icon{width:34px;height:34px}
.gb-ui-detail-page .gb-ui-feature h3{font-size:11px}
.gb-ui-detail-page .gb-ui-feature p{font-size:9.5px;line-height:1.45}
.gb-ui-detail-page .gb-ui-snapshot{grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);border-color:#9eb4d0}
.gb-ui-detail-page .gb-ui-snapshot-story{display:grid;grid-template-columns:190px minmax(0,1fr);min-width:0;background:#062f67;color:#fff}
.gb-ui-detail-page .gb-ui-snapshot-story>img{width:190px;height:126px;object-fit:cover}
.gb-ui-detail-page .gb-ui-snapshot-story>div{display:grid;align-content:center;padding:13px}
.gb-ui-detail-page .gb-ui-snapshot-story h3{color:#fff;font-size:15px}
.gb-ui-detail-page .gb-ui-snapshot-story p,.gb-ui-detail-page .gb-ui-snapshot-story small{color:#e2ebf6;font-size:9.5px}
.gb-ui-detail-page .gb-ui-snapshot>.gb-ui-metrics{padding:10px}
.gb-ui-detail-page .gb-ui-metrics{gap:7px}
.gb-ui-detail-page .gb-ui-metric{min-height:72px;padding:7px}
.gb-ui-detail-page .gb-ui-metric strong{font-size:18px}
.gb-ui-detail-page .gb-ui-metric span{font-size:8px}
.gb-ui-detail-page .gb-ui-snapshot.is-custom{display:grid;grid-template-columns:1fr;overflow:hidden}
.gb-ui-detail-page .gb-ui-snapshot.is-custom .gb-ui-snapshot-heading{padding:11px 14px;background:#062f67}
.gb-ui-detail-page .gb-ui-snapshot.is-custom .gb-ui-snapshot-heading h3{margin:0;color:#fff;font-size:14px}
.gb-ui-detail-page .gb-ui-snapshot.is-custom .gb-ui-snapshot-heading p{margin:3px 0 0;color:#e2ebf6;font-size:10px}
.gb-ui-detail-page .gb-ui-snapshot.is-custom>.gb-ui-metrics{grid-template-columns:repeat(6,minmax(0,1fr));padding:11px 14px}
.gb-ui-detail-page .gb-ui-snapshot.is-custom>small{padding:9px 14px;background:#edf1f6;color:#283d5e;font-size:10px}
.gb-ui-detail-page .gb-ui-flow{padding:7px}
.gb-ui-detail-page .gb-ui-flow span{gap:7px;min-width:86px}
.gb-ui-detail-page .gb-ui-flow .icon{width:39px;height:39px}
.gb-ui-detail-page .gb-ui-flow b{font-size:9px}
.gb-ui-detail-page .gb-ui-flow em{font-size:19px}
.gb-ui-detail-page .gb-ui-qa{gap:9px}
.gb-ui-detail-page .gb-ui-qa article{min-height:118px;padding:12px 7px}
.gb-ui-detail-page .gb-ui-qa .icon{width:34px;height:34px}
.gb-ui-detail-page .gb-ui-qa h3{font-size:9.5px}
.gb-ui-detail-page .gb-ui-qa p{font-size:8px;line-height:1.4}
.gb-ui-detail-page .gb-ui-section .faq-list{gap:5px}
.gb-ui-detail-page .gb-ui-section .faq-item>button{padding:9px 10px;font-size:10px}
.gb-ui-detail-page .gb-ui-bottom-cta{min-height:68px;padding:14px 20px}
.gb-ui-detail-page .gb-ui-bottom-cta b{font-size:15px}
.gb-ui-detail-page .gb-ui-bottom-cta small{font-size:10px}
.gb-ui-detail-page .gb-ui-bottom-cta .btn{min-height:38px;font-size:10px}
.gb-ui-detail-page .gb-ui-engineer img{height:185px}
.gb-ui-detail-page .gb-ui-engineer h3{font-size:17px}
.gb-ui-detail-page .gb-ui-engineer small,.gb-ui-detail-page .gb-ui-engineer p{font-size:10px}
.gb-ui-detail-page .gb-ui-calculator,.gb-ui-detail-page .gb-ui-inquiry{gap:9px}
.gb-ui-detail-page .gb-ui-calculator label,.gb-ui-detail-page .gb-ui-inquiry label{gap:4px;font-size:9.5px}
.gb-ui-detail-page .gb-ui-calculator input,.gb-ui-detail-page .gb-ui-calculator select,.gb-ui-detail-page .gb-ui-inquiry input,.gb-ui-detail-page .gb-ui-inquiry select{min-height:36px;padding:7px 8px;font-size:10px}
.gb-ui-detail-page .gb-ui-inquiry textarea{min-height:86px;font-size:10px}
.gb-ui-detail-page .gb-ui-calculator dl div{font-size:9.5px}
.gb-ui-detail-page .gb-ui-calculator .btn,.gb-ui-detail-page .gb-ui-inquiry .btn{min-height:36px;font-size:9.5px}
.gb-ui-detail-page .gb-ui-related>a{grid-template-columns:72px 1fr;gap:9px;padding:7px 0}
.gb-ui-detail-page .gb-ui-related img{width:72px;height:51px}
.gb-ui-detail-page .gb-ui-related b,.gb-ui-detail-page .gb-ui-related>strong{font-size:9.5px}
.gb-ui-detail-page .gb-ui-related small,.gb-ui-detail-page .gb-ui-related em{font-size:8.5px}
.gb-ui-detail-page .gb-ui-resources>a{padding:7px 0;font-size:9.5px}
.gb-ui-detail-page .gb-ui-section:has(>.faq-list){padding:8px 0;border:0;box-shadow:none}
.gb-ui-detail-page .gb-ui-section:has(>.faq-list)>h2{margin:0 0 5px}
.gb-ui-detail-page .gb-ui-section:has(>.faq-list) .faq-list{gap:2px}
.gb-ui-detail-page .gb-ui-section:has(>.faq-list) .faq-item>button{min-height:20px;padding:4px 8px;font-size:9px;line-height:1.05}
.gb-ui-detail-page:not(.gb-ui-custom-grinding-media-solution) .gb-ui-flow{min-height:130px}
.gb-ui-detail-page:not(.gb-ui-custom-grinding-media-solution) .gb-ui-flow .icon{width:44px;height:44px}
.gb-ui-detail-page:not(.gb-ui-custom-grinding-media-solution) .gb-ui-qa article{min-height:145px}
.gb-ui-custom-grinding-media-solution .gb-ui-snapshot.is-custom .gb-ui-metric{min-height:55px}
.gb-ui-custom-grinding-media-solution .gb-ui-feature{min-height:88px}
.gb-ui-cement-industry-solution .gb-ui-feature-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.gb-ui-challenge-field{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px;margin:2px 0;padding:10px;border:1px solid rgba(255,255,255,.35);border-radius:3px}
.gb-ui-challenge-field legend{padding:0 4px;color:#fff;font-size:10px;font-weight:800}
.gb-ui-challenge-field legend small{font-size:8px;font-weight:400}
.gb-ui-detail-page .gb-ui-inquiry .gb-ui-challenge-field label{display:flex;align-items:center;gap:6px;font-size:9px;font-weight:500}
.gb-ui-detail-page .gb-ui-inquiry .gb-ui-challenge-field input[type=checkbox]{width:13px;min-height:13px;height:13px;padding:0;flex:0 0 auto}
.gb-ui-detail-page .gb-ui-inquiry .gb-ui-challenge-field label:last-child{grid-column:1/-1}
.gb-ui-detail-page .gb-ui-inquiry .gb-ui-challenge-field label:last-child input[type=text]{min-height:28px;margin-left:3px}

.gb-ui-case-page{padding-top:18px}
.gb-ui-case-hero{min-height:300px;padding:22px 0}
.gb-ui-case-hero .container{width:min(calc(100% - 32px),1330px);max-width:1330px;min-height:256px}
.gb-ui-case-hero h1{max-width:720px;font-size:clamp(34px,3.5vw,50px)}
.gb-ui-case-hero p{max-width:670px;font-size:13px}
.gb-ui-case-hero .gb-breadcrumb{font-size:10px}
.gb-ui-case-meta span,.gb-ui-case-badges span{font-size:9px}
.gb-ui-case-meta .icon,.gb-ui-case-badges .icon{width:13px;height:13px}
.gb-ui-case-hero .btn{min-height:38px;font-size:10px}
.gb-ui-case-wide{display:grid;gap:22px}
.gb-ui-case-row{display:grid;gap:22px;align-items:start}
.gb-ui-case-row>*{min-width:0;grid-column:auto!important;grid-row:auto!important}
.gb-ui-case-row.case-row-top{grid-template-columns:4fr 3fr 5fr}
.gb-ui-case-row.case-row-primary{grid-template-columns:4fr 5fr}
.gb-ui-case-row.case-row-technical{grid-template-columns:4fr 5fr 3fr}
.gb-ui-case-row.case-row-closing{grid-template-columns:4fr 5fr 3fr}
.gb-ui-case-wide.is-iron .case-row-closing,.gb-ui-case-wide.is-cement .case-row-closing{grid-template-columns:4fr 8fr}
.gb-ui-case-wide .gb-ui-section,.gb-ui-case-wide .gb-ui-engineer{padding:0;border:0;box-shadow:none}
.gb-ui-case-board{gap:22px}
.gb-ui-case-page .gb-ui-section>h2,.gb-ui-case-page .gb-ui-engineer>h2{margin-bottom:10px;font-size:12px}
.gb-ui-case-page .gb-ui-section>h2:after{display:none}
.gb-ui-case-page .gb-ui-section>p{margin:0 0 8px;font-size:9.5px;line-height:1.5}
.gb-ui-case-page .gb-ui-case-snapshot>div{grid-template-columns:128px 1fr;min-height:35px}
.gb-ui-case-page .gb-ui-case-snapshot dt,.gb-ui-case-page .gb-ui-case-snapshot dd{font-size:9px}
.gb-ui-case-page .gb-ui-case-snapshot dt .icon{width:15px;height:15px}
.gb-ui-case-page .gb-ui-engineer.is-horizontal .gb-ui-engineer-body{grid-template-columns:96px 1fr;padding:11px}
.gb-ui-case-page .gb-ui-engineer.is-horizontal img{width:96px;height:124px}
.gb-ui-case-page .gb-ui-engineer.is-horizontal h3{font-size:13px}
.gb-ui-case-page .gb-ui-engineer.is-horizontal small,.gb-ui-case-page .gb-ui-engineer.is-horizontal p{font-size:8.5px}
.gb-ui-case-page .gb-ui-challenges{gap:10px}
.gb-ui-case-page .gb-ui-challenges article{min-height:96px;padding:11px}
.gb-ui-case-page .gb-ui-challenges article>.icon{width:34px;height:34px;flex:0 0 auto;padding:8px;border-radius:50%;background:#e5101b;color:#fff}
.gb-ui-case-page .gb-ui-challenges h3{font-size:9.5px}
.gb-ui-case-page .gb-ui-challenges p{font-size:8px;line-height:1.4}
.gb-ui-case-page .gb-detail-table{font-size:8.5px}
.gb-ui-case-page .gb-detail-table th,.gb-ui-case-page .gb-detail-table td{padding:7px}
.gb-ui-case-page .gb-ui-spec-table{min-width:360px}
.gb-ui-case-page .gb-ui-section>small{margin-top:7px;font-size:7.5px}
.gb-ui-case-page .gb-case-result{font-size:8px}
.gb-ui-case-page .gb-ui-flow span{min-width:65px}
.gb-ui-case-page .gb-ui-flow .icon{width:30px;height:30px}
.gb-ui-case-page .gb-ui-flow b{font-size:7.5px}
.gb-ui-case-page .gb-detail-checks li{font-size:8.5px}
.gb-ui-case-page .gb-ui-qa.is-case article{min-height:88px;padding:8px 4px}
.gb-ui-case-page .gb-ui-qa.is-case .icon{width:31px;height:31px}
.gb-ui-case-page .gb-ui-qa.is-case h3{font-size:8px}
.gb-ui-case-page .gb-ui-qa.is-case p{font-size:7px}
.gb-ui-case-page .gb-ui-case-links a{padding:9px;font-size:8.5px}
.gb-ui-case-page .gb-ui-case-links span{font-size:7.5px}
.gb-ui-case-page .faq-item>button{padding:8px 9px;font-size:8.5px}
.gb-ui-case-page .gb-ui-case-cta{min-height:150px}
.gb-ui-case-page .gb-ui-case-cta h2{font-size:16px}
.gb-ui-case-page .gb-ui-case-cta p{font-size:8.5px}
.gb-ui-case-page .gb-ui-case-cta .btn{min-height:31px;font-size:8px}

body:has(.gb-ui-detail-page,.gb-ui-case-page)>.site-footer .footer-main{padding:20px 0 14px;gap:16px}
body:has(.gb-ui-detail-page,.gb-ui-case-page)>.site-footer .footer-brand .brand-mark{font-size:22px}
body:has(.gb-ui-detail-page,.gb-ui-case-page)>.site-footer .footer-brand p{margin:7px 0 10px;font-size:11px;line-height:1.35}
body:has(.gb-ui-detail-page,.gb-ui-case-page)>.site-footer .socials a{width:25px;height:25px}
body:has(.gb-ui-detail-page,.gb-ui-case-page)>.site-footer .footer-col h3{margin-bottom:7px;font-size:11px}
body:has(.gb-ui-detail-page,.gb-ui-case-page)>.site-footer .footer-col li{margin:4px 0;font-size:10px;line-height:1.25}
body:has(.gb-ui-detail-page,.gb-ui-case-page)>.site-footer .footer-bottom{padding:9px 0;font-size:9px}
@media(min-width:1051px){
  body:has(.gb-ui-detail-page,.gb-ui-case-page) .gbvf-footer-main{padding:20px 0 14px;gap:16px}
  body:has(.gb-ui-detail-page,.gb-ui-case-page) .gbvf-brand-mark{font-size:22px}
  body:has(.gb-ui-detail-page,.gb-ui-case-page) .gbvf-brand p{margin:7px 0 10px;font-size:11px;line-height:1.35}
  body:has(.gb-ui-detail-page,.gb-ui-case-page) .gbvf-socials a{width:25px;height:25px}
  body:has(.gb-ui-detail-page,.gb-ui-case-page) .gbvf-col h3{margin-bottom:7px;font-size:11px}
  body:has(.gb-ui-detail-page,.gb-ui-case-page) .gbvf-col li{margin:4px 0;font-size:10px;line-height:1.25}
  body:has(.gb-ui-detail-page,.gb-ui-case-page) .gbvf-whatsapp-link{padding:6px 8px;font-size:10px}
  body:has(.gb-ui-detail-page,.gb-ui-case-page) .gbvf-footer-bottom{padding:9px 0;font-size:9px}
}

@media(max-width:1050px){
  .gb-ui-detail-page .gb-ui-solution-layout{grid-template-columns:1fr}
  .gb-ui-case-wide .gb-ui-case-row{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gb-ui-case-wide .case-row-top>*:last-child,.gb-ui-case-wide .case-row-closing>.gb-ui-case-cta{grid-column:1/-1}
}
@media(max-width:700px){
  .gb-ui-detail-page .gb-ui-solution-layout,.gb-ui-case-page .gb-ui-case-board,.gb-ui-case-page .gb-ui-case-wide{width:min(calc(100% - 20px),1330px)}
  .gb-ui-detail-page .gb-ui-solution-hero,.gb-ui-detail-page .gb-ui-hero-copy,.gb-ui-custom-grinding-media-solution .gb-ui-solution-hero,.gb-ui-custom-grinding-media-solution .gb-ui-hero-copy{min-height:520px}
  .gb-ui-detail-page .gb-ui-snapshot-story{grid-template-columns:1fr}
  .gb-ui-detail-page .gb-ui-snapshot-story>img{width:100%;height:180px}
  .gb-ui-detail-page .gb-ui-snapshot.is-custom>.gb-ui-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gb-ui-challenge-field{grid-template-columns:1fr}
  .gb-ui-detail-page .gb-ui-inquiry .gb-ui-challenge-field label:last-child{grid-column:1}
  .gb-ui-cement-industry-solution .gb-ui-feature-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gb-ui-case-wide .gb-ui-case-row{grid-template-columns:1fr}
  .gb-ui-case-wide .case-row-top>*:last-child,.gb-ui-case-wide .case-row-closing>.gb-ui-case-cta{grid-column:1}
}

/* Technical resource detail pages and resource links */
.resource-box-cta{display:inline-flex;align-items:center;gap:8px;margin-top:auto;padding-top:18px;color:#fff;font-size:13px;font-weight:900;text-decoration:none}
.navy-panel .resource-box{display:flex;flex-direction:column}
.resource-box-cta:hover{color:#ffb8bb}
.technical-article-page{background:#fff;color:var(--navy)}
.technical-article-hero{--hero-image:url("assets/technical-hero.jpg");min-height:430px;background-image:linear-gradient(90deg,rgba(3,20,51,.96) 0%,rgba(3,20,51,.78) 54%,rgba(3,20,51,.42) 100%),var(--hero-image);background-size:cover;background-position:center}
.technical-article-hero .hero-grid{min-height:430px;grid-template-columns:minmax(0,840px)}
.technical-article-hero .hero-copy{max-width:840px}
.technical-article-hero h1{max-width:820px;margin:14px 0 14px;font-size:clamp(38px,4.5vw,64px);line-height:1.04}
.technical-article-hero p{max-width:760px;font-size:17px;line-height:1.7}
.technical-breadcrumb{display:flex;align-items:center;gap:9px;color:#d6deeb;font-size:13px;font-weight:800}
.technical-breadcrumb a{color:#fff;text-decoration:none}
.technical-category{display:inline-flex;margin-top:22px;padding:7px 12px;border:1px solid rgba(255,255,255,.35);border-radius:999px;color:#fff;font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.technical-article-meta{display:flex;flex-wrap:wrap;gap:18px;margin-top:24px;color:#e7edf7;font-size:13px;font-weight:800}
.technical-article-meta span{display:inline-flex;align-items:center;gap:7px}
.technical-article-meta .icon{width:17px;height:17px;color:#ff575d}
.technical-article-layout{display:grid;grid-template-columns:minmax(0,820px) 310px;gap:58px;align-items:start}
.technical-article-body{min-width:0}
.technical-lead{margin-bottom:34px;padding:24px 28px;border-left:5px solid var(--red);border-radius:0 10px 10px 0;background:#f4f7fb}
.technical-lead strong{display:block;margin-bottom:8px;color:var(--red);font-size:12px;letter-spacing:.08em;text-transform:uppercase}
.technical-lead p{margin:0;color:#304766;font-size:17px;line-height:1.75}
.technical-article-section{position:relative;padding:6px 0 34px;margin-bottom:30px;border-bottom:1px solid #dfe5ee}
.technical-article-section:last-child{margin-bottom:0;border-bottom:0}
.technical-article-section h2{margin:0 0 18px;padding-right:52px;font-size:30px;line-height:1.2}
.technical-article-section p{color:#405675;font-size:16px;line-height:1.78}
.technical-section-number{position:absolute;top:0;right:0;color:#dce3ed;font-size:42px;font-weight:900;line-height:1}
.technical-check-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 18px;margin:22px 0 0;padding:0;list-style:none}
.technical-check-list li{display:flex;align-items:flex-start;gap:9px;padding:12px 13px;border:1px solid #dfe5ee;border-radius:7px;background:#fff;color:#16335c;font-size:13px;font-weight:800;line-height:1.45}
.technical-check-list .icon{flex:0 0 17px;width:17px;height:17px;color:var(--red)}
.technical-article-sidebar{position:sticky;top:104px;display:grid;gap:20px}
.technical-toc,.technical-help{padding:24px}
.technical-toc h2,.technical-help h2{margin:0 0 16px;font-size:20px}
.technical-toc a{display:flex;align-items:flex-start;gap:11px;padding:11px 0;border-bottom:1px solid #e4e9f0;color:#304766;font-size:13px;font-weight:800;line-height:1.4;text-decoration:none}
.technical-toc a:last-child{border-bottom:0}
.technical-toc a:hover{color:var(--red)}
.technical-toc a span{color:var(--red);font-weight:900}
.technical-help{color:#fff;background:var(--navy)}
.technical-help>.icon{width:34px;height:34px;margin-bottom:14px;color:#ff4a50}
.technical-help p{color:#d7e0ed;font-size:13px;line-height:1.65}
.technical-help .btn{width:100%;margin-top:8px}
.technical-related-card{display:flex;min-height:190px;flex-direction:column;padding:24px}
.technical-related-card>span{color:var(--red);font-size:11px;font-weight:900;letter-spacing:.07em;text-transform:uppercase}
.technical-related-card h3{margin:12px 0 20px;font-size:21px;line-height:1.25}
.technical-related-card .text-link{margin-top:auto}
.technical-article-cta{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:34px 40px;border-radius:10px;color:#fff;background:var(--navy)}
.technical-article-cta span{color:#ff7b80;font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.technical-article-cta h2{max-width:760px;margin:7px 0 0;color:#fff;font-size:28px}

/* Customer-supplied 13-article knowledge system */
.resource-article-box{min-height:430px;padding:26px 22px 22px}
.resource-article-head{display:flex;align-items:center;gap:12px;padding-bottom:18px;border-bottom:1px solid rgba(255,255,255,.18)}
.resource-article-head>.icon{flex:0 0 30px;width:30px;height:30px;color:#ff4a50}
.resource-article-head h3{margin:0;color:#fff;font-size:20px;line-height:1.2}
.resource-article-list{display:grid;gap:0;margin:10px 0 0;padding:0;list-style:none;counter-reset:resource-item}
.resource-article-list li{counter-increment:resource-item;border-bottom:1px solid rgba(255,255,255,.12);border-radius:6px;transition:background .18s ease,color .18s ease}
.resource-article-list li:hover{background:rgba(255,255,255,.07)}
.resource-article-list a{display:grid;grid-template-columns:28px minmax(0,1fr);gap:10px;align-items:start;padding:13px 0;color:#fff;font-size:12px;font-weight:800;line-height:1.48;text-decoration:none}
.resource-article-list a>span{display:grid;width:24px;height:24px;place-items:center;border:1px solid rgba(255,255,255,.34);border-radius:50%;color:#fff;font-size:11px;font-weight:900}
.resource-article-list a>strong{font:inherit}
.resource-article-list a:hover,.resource-article-list li:hover a{color:#ff8b90}
.resource-article-list a:focus-visible{outline:2px solid #ff8b90;outline-offset:3px;border-radius:4px}
.resource-article-box .resource-box-cta{padding-top:20px;color:#ff6e73;font-size:12px;text-transform:none}
.resource-article-box .resource-box-cta:hover{color:#fff}
.technical-category-group{margin-top:38px;scroll-margin-top:110px}
.technical-category-heading{display:flex;align-items:center;gap:12px;margin-bottom:18px;padding-bottom:12px;border-bottom:2px solid #dce3ed}
.technical-category-heading>.icon{width:25px;height:25px;color:var(--red)}
.technical-category-heading h3{margin:0;font-size:25px}
.technical-category-heading span{margin-left:auto;color:#6a7c96;font-size:12px;font-weight:800}
.technical-core-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.technical-core-card{display:flex;min-height:245px;flex-direction:column;padding:25px}
.technical-core-card>span{color:var(--red);font-size:10px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.technical-core-card h3{margin:10px 0 12px;font-size:20px;line-height:1.3}
.technical-core-card p{display:-webkit-box;margin:0 0 20px;color:#526680;font-size:13px;line-height:1.65;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}
.technical-core-card .text-link{margin-top:auto}
.technical-markdown-body>p,.technical-markdown-body>ul,.technical-markdown-body>ol,.technical-markdown-body>.technical-table-wrap,.technical-markdown-body>h3{margin-left:0;margin-right:0}
.technical-markdown-body>p{margin-top:0;margin-bottom:18px;color:#405675;font-size:16px;line-height:1.78}
.technical-markdown-body>h3{margin:30px 0 14px;color:#17345d;font-size:23px;line-height:1.3}
.technical-markdown-body .technical-article-section{margin-top:30px;margin-bottom:20px;padding-bottom:12px}
.technical-prose-list{display:grid;gap:9px;margin:0 0 22px;padding-left:22px;color:#405675;font-size:15px;line-height:1.65}
.technical-prose-list li::marker{color:var(--red);font-weight:900}
.technical-table-wrap{max-width:100%;margin:8px 0 26px;border:1px solid #dce3ed;border-radius:8px;overflow:auto}
.technical-table{width:100%;min-width:620px;border-collapse:collapse;background:#fff;font-size:13px;line-height:1.5}
.technical-table th{padding:12px 14px;color:#fff;text-align:left;background:var(--navy)}
.technical-table td{padding:11px 14px;border-top:1px solid #e2e7ef;color:#405675;vertical-align:top}
.technical-table tr:nth-child(even) td{background:#f7f9fc}
.technical-markdown-body a{color:#c80d14;font-weight:800}
.technical-toc{max-height:calc(100vh - 125px);overflow:auto}

@media(max-width:1000px){
  .technical-article-layout{grid-template-columns:1fr;gap:32px}
  .technical-article-sidebar{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}
  .technical-toc{max-height:none}
  .resource-article-box{min-height:0}
}
@media(max-width:700px){
  .technical-article-hero,.technical-article-hero .hero-grid{min-height:390px}
  .technical-article-hero h1{font-size:36px}
  .technical-article-hero p{font-size:15px}
  .technical-article-content{padding-top:42px}
  .technical-article-layout{gap:24px}
  .technical-lead{padding:20px}
  .technical-lead p{font-size:15px}
  .technical-article-section h2{padding-right:42px;font-size:25px}
  .technical-article-section p{font-size:15px}
  .technical-section-number{font-size:32px}
  .technical-check-list{grid-template-columns:1fr}
  .technical-article-sidebar{grid-template-columns:1fr}
  .technical-article-cta{align-items:flex-start;flex-direction:column;padding:26px 22px}
  .technical-article-cta h2{font-size:23px}
  .technical-core-grid{grid-template-columns:1fr}
  .technical-core-card{min-height:0}
  .resource-article-box{padding:22px 18px}
  .technical-markdown-body>p{font-size:15px}
  .technical-table{min-width:560px}
}

/* July 21 supplied-UI third pass. Body-only rules; the existing global header and footer are untouched. */
.gb-ui-case-gold-crumb{padding:11px 0;border-bottom:1px solid #dfe5ed;background:#fff;color:#17345d;font-size:11px}
.gb-ui-case-gold-crumb .container{width:min(calc(100% - 32px),1330px);max-width:1330px}
.gb-ui-case-gold{padding-top:18px}
.gb-ui-case-gold .gb-ui-inquiry-email{display:flex;align-items:center;justify-content:center;gap:7px;padding-top:4px;color:#fff;font-size:9px;font-weight:700}
.gb-ui-case-gold .gb-ui-inquiry-email .icon{width:14px;height:14px}
.gb-ui-case-gold .case-selection>p{margin-top:10px}
@media(min-width:701px){
  .gb-ui-case-gold .gb-ui-case-board.is-classic .case-snapshot .gb-ui-case-snapshot{grid-template-columns:1fr}
  .gb-ui-case-gold .gb-ui-challenges{grid-template-columns:repeat(4,minmax(0,1fr))}
  .gb-ui-case-gold .gb-ui-qa.is-case{grid-template-columns:repeat(6,minmax(0,1fr))}
}

/* The supplied desktop comps are 941–1206px wide and still use their desktop grids. */
@media(min-width:900px) and (max-width:1250px){
  .gb-ui-detail-page .gb-ui-solution-layout{width:min(calc(100% - 28px),1330px);grid-template-columns:minmax(0,1fr) 230px;gap:16px}
  .gb-ui-detail-page .gb-ui-solution-main,.gb-ui-detail-page .gb-ui-solution-side{gap:10px}
  .gb-ui-copper-mining-solution .gb-ui-solution-main{grid-template-columns:3fr 2fr}
  .gb-ui-copper-mining-solution .gb-ui-solution-main>:first-child,.gb-ui-copper-mining-solution .gb-ui-solution-main>:nth-child(n+4){grid-column:1/-1}
  .gb-ui-detail-page .gb-ui-solution-side{position:sticky;top:76px;display:grid;grid-template-columns:1fr}
  .gb-ui-detail-page .gb-ui-solution-side>#request{grid-column:auto}
  .gb-ui-detail-page .gb-ui-solution-hero,.gb-ui-detail-page .gb-ui-hero-copy{min-height:292px}
  .gb-ui-gold-mining-solution .gb-ui-solution-hero,.gb-ui-gold-mining-solution .gb-ui-hero-copy{min-height:270px}
  .gb-ui-cement-industry-solution .gb-ui-solution-hero,.gb-ui-cement-industry-solution .gb-ui-hero-copy{min-height:260px}
  .gb-ui-custom-grinding-media-solution .gb-ui-solution-hero,.gb-ui-custom-grinding-media-solution .gb-ui-hero-copy{min-height:315px}
  .gb-ui-detail-page .gb-ui-hero-copy{width:78%;padding:16px 20px 10px}
  .gb-ui-detail-page .gb-ui-hero-copy .gb-breadcrumb{margin-bottom:8px;font-size:8px}
  .gb-ui-detail-page .gb-ui-hero-copy h1{font-size:34px}
  .gb-ui-detail-page .gb-ui-hero-copy h2{font-size:13px}
  .gb-ui-detail-page .gb-ui-hero-copy>p{font-size:9px;line-height:1.45}
  .gb-ui-detail-page .gb-ui-hero-copy .gb-detail-actions{margin:10px 0 9px}
  .gb-ui-detail-page .gb-ui-hero-copy .btn{min-height:31px;padding:7px 11px;font-size:8px}
  .gb-ui-detail-page .gb-ui-hero-benefits span{padding:7px 4px}
  .gb-ui-detail-page .gb-ui-hero-benefits .icon{width:22px;height:22px}
  .gb-ui-detail-page .gb-ui-hero-benefits b{font-size:8px}
  .gb-ui-detail-page .gb-ui-section,.gb-ui-detail-page .gb-ui-engineer,.gb-ui-detail-page .gb-ui-calculator,.gb-ui-detail-page .gb-ui-related,.gb-ui-detail-page .gb-ui-resources,.gb-ui-detail-page .gb-ui-inquiry{padding:9px}
  .gb-ui-detail-page .gb-ui-section>h2,.gb-ui-detail-page .gb-ui-engineer>h2,.gb-ui-detail-page .gb-ui-calculator>h2,.gb-ui-detail-page .gb-ui-related>h2,.gb-ui-detail-page .gb-ui-resources>h2,.gb-ui-detail-page .gb-ui-inquiry>h2{margin-bottom:8px;font-size:11px}
  .gb-ui-detail-page .gb-ui-section>p,.gb-ui-detail-page .gb-ui-section>small{font-size:8.5px;line-height:1.45}
  .gb-ui-detail-page .gb-ui-two,.gb-ui-detail-page .gb-ui-pair{gap:9px}
  .gb-ui-detail-page .gb-ui-two>div{padding:8px}
  .gb-ui-detail-page .gb-ui-two h3{margin-bottom:6px;font-size:9px}
  .gb-ui-detail-page .gb-detail-checks{gap:5px}
  .gb-ui-detail-page .gb-detail-checks li,.gb-ui-detail-page .gb-ui-ore-grid span,.gb-ui-detail-page .gb-ui-ore-grid b{font-size:8px}
  .gb-ui-detail-page .gb-detail-table{font-size:7.5px}
  .gb-ui-detail-page .gb-detail-table th,.gb-ui-detail-page .gb-detail-table td{padding:6px}
  .gb-ui-detail-page .gb-ui-feature{min-height:68px;padding:8px}
  .gb-ui-detail-page .gb-ui-feature>.icon{width:25px;height:25px}
  .gb-ui-detail-page .gb-ui-feature h3{font-size:8px}
  .gb-ui-detail-page .gb-ui-feature p{font-size:7px}
  .gb-ui-detail-page .gb-ui-snapshot-story{grid-template-columns:145px minmax(0,1fr)}
  .gb-ui-detail-page .gb-ui-snapshot-story>img{width:145px;height:108px}
  .gb-ui-detail-page .gb-ui-snapshot-story>div{padding:9px}
  .gb-ui-detail-page .gb-ui-snapshot-story h3{font-size:11px}
  .gb-ui-detail-page .gb-ui-snapshot-story p,.gb-ui-detail-page .gb-ui-snapshot-story small{font-size:7px}
  .gb-ui-detail-page .gb-ui-snapshot>.gb-ui-metrics{padding:7px}
  .gb-ui-detail-page .gb-ui-metric{min-height:52px;padding:4px}
  .gb-ui-detail-page .gb-ui-metric strong{font-size:14px}
  .gb-ui-detail-page .gb-ui-metric span{font-size:6.5px}
  :is(.gb-ui-copper-mining-solution,.gb-ui-iron-ore-mining-solution,.gb-ui-cement-industry-solution) .gb-ui-snapshot{grid-template-columns:150px minmax(0,1fr);align-items:stretch;background:#fff}
  :is(.gb-ui-copper-mining-solution,.gb-ui-iron-ore-mining-solution,.gb-ui-cement-industry-solution) .gb-ui-snapshot-story{display:contents}
  :is(.gb-ui-copper-mining-solution,.gb-ui-iron-ore-mining-solution,.gb-ui-cement-industry-solution) .gb-ui-snapshot-story>img{grid-column:1;grid-row:1/3;width:150px;height:116px}
  :is(.gb-ui-copper-mining-solution,.gb-ui-iron-ore-mining-solution,.gb-ui-cement-industry-solution) .gb-ui-snapshot-story>div{grid-column:2;grid-row:1;padding:7px 7px 2px;background:#fff;color:#102d5d}
  :is(.gb-ui-copper-mining-solution,.gb-ui-iron-ore-mining-solution,.gb-ui-cement-industry-solution) .gb-ui-snapshot-story h3{color:#102d5d;font-size:10px}
  :is(.gb-ui-copper-mining-solution,.gb-ui-iron-ore-mining-solution,.gb-ui-cement-industry-solution) .gb-ui-snapshot-story p,:is(.gb-ui-copper-mining-solution,.gb-ui-iron-ore-mining-solution,.gb-ui-cement-industry-solution) .gb-ui-snapshot-story small{color:#425879;font-size:6.5px}
  :is(.gb-ui-copper-mining-solution,.gb-ui-iron-ore-mining-solution,.gb-ui-cement-industry-solution) .gb-ui-snapshot>.gb-ui-metrics{grid-column:2;grid-row:2;padding:4px 7px 7px}
  :is(.gb-ui-copper-mining-solution,.gb-ui-iron-ore-mining-solution) .gb-ui-snapshot>.gb-ui-metrics{grid-template-columns:repeat(6,minmax(0,1fr))}
  .gb-ui-cement-industry-solution .gb-ui-snapshot>.gb-ui-metrics{grid-template-columns:repeat(5,minmax(0,1fr))}
  :is(.gb-ui-copper-mining-solution,.gb-ui-iron-ore-mining-solution,.gb-ui-cement-industry-solution) .gb-ui-snapshot .gb-ui-metric{min-height:48px}
  .gb-ui-detail-page .gb-ui-flow{min-height:70px!important;padding:3px}
  .gb-ui-detail-page .gb-ui-flow span{min-width:62px}
  .gb-ui-detail-page .gb-ui-flow .icon{width:30px!important;height:30px!important}
  .gb-ui-detail-page .gb-ui-qa article{min-height:94px!important;padding:7px 4px}
  .gb-ui-detail-page .gb-ui-engineer img{height:132px}
  .gb-ui-detail-page .gb-ui-engineer h3{font-size:13px}
  .gb-ui-detail-page .gb-ui-engineer small,.gb-ui-detail-page .gb-ui-engineer p{font-size:8px}
  .gb-ui-detail-page .gb-ui-calculator label,.gb-ui-detail-page .gb-ui-inquiry label{font-size:8px}
  .gb-ui-detail-page .gb-ui-calculator input,.gb-ui-detail-page .gb-ui-calculator select,.gb-ui-detail-page .gb-ui-inquiry input,.gb-ui-detail-page .gb-ui-inquiry select{min-height:28px;padding:5px 6px;font-size:8px}
  .gb-ui-detail-page .gb-ui-inquiry textarea{min-height:65px;font-size:8px}
  .gb-ui-detail-page .gb-ui-calculator dl div{font-size:8px}
  .gb-ui-detail-page .gb-ui-calculator .btn,.gb-ui-detail-page .gb-ui-inquiry .btn{min-height:29px;font-size:8px}
  .gb-ui-detail-page .gb-ui-related>a{grid-template-columns:58px 1fr;padding:5px 0}
  .gb-ui-detail-page .gb-ui-related img{width:58px;height:42px}
  .gb-ui-detail-page .gb-ui-related b,.gb-ui-detail-page .gb-ui-related>strong,.gb-ui-detail-page .gb-ui-resources>a{font-size:8px}
  .gb-ui-detail-page .gb-ui-related small,.gb-ui-detail-page .gb-ui-related em{font-size:7px}
  .gb-ui-detail-page .gb-ui-section:has(>.faq-list) .faq-item>button{min-height:18px;padding:3px 7px;font-size:8px}
  .gb-ui-detail-page .gb-ui-bottom-cta{min-height:54px;padding:9px 14px}
  .gb-ui-detail-page .gb-ui-bottom-cta b{font-size:12px}
  .gb-ui-detail-page .gb-ui-bottom-cta small{font-size:8px}
  .gb-ui-detail-page .gb-ui-bottom-cta .btn{min-height:30px;font-size:8px}

  .gb-ui-case-page .gb-ui-case-board,.gb-ui-case-page .gb-ui-case-wide{width:min(calc(100% - 28px),1330px)}
  .gb-ui-case-wide .gb-ui-case-row{gap:14px}
  .gb-ui-case-wide .gb-ui-case-row.case-row-top{grid-template-columns:4fr 3fr 5fr}
  .gb-ui-case-wide .gb-ui-case-row.case-row-primary{grid-template-columns:4fr 5fr}
  .gb-ui-case-wide .gb-ui-case-row.case-row-technical{grid-template-columns:4fr 5fr 3fr}
  .gb-ui-case-wide .gb-ui-case-row.case-row-closing{grid-template-columns:4fr 5fr 3fr}
  .gb-ui-case-wide.is-iron .case-row-closing,.gb-ui-case-wide.is-cement .case-row-closing{grid-template-columns:4fr 8fr}
  .gb-ui-case-wide .case-row-top>*:last-child,.gb-ui-case-wide .case-row-closing>.gb-ui-case-cta{grid-column:auto}
  .gb-ui-case-page .gb-ui-case-board.is-classic{grid-template-columns:repeat(12,minmax(0,1fr));gap:14px}
  .gb-ui-case-page .gb-ui-case-board.is-classic .case-snapshot{grid-column:span 9!important}
  .gb-ui-case-page .gb-ui-case-board.is-classic .case-review{grid-column:span 3!important}
  .gb-ui-case-page .gb-ui-case-board.is-classic .case-challenges{grid-column:span 9!important}
  .gb-ui-case-page .gb-ui-case-board.is-classic .case-inquiry{grid-column:10/span 3!important;grid-row:2/span 2!important}
  .gb-ui-case-page .gb-ui-case-board.is-classic .case-solution{grid-column:span 4!important}
  .gb-ui-case-page .gb-ui-case-board.is-classic .case-results{grid-column:span 5!important}
  .gb-ui-case-page .gb-ui-case-board.is-classic .case-quality{grid-column:span 7!important}
  .gb-ui-case-page .gb-ui-case-board.is-classic .case-selection{grid-column:span 5!important}
  .gb-ui-case-page .gb-ui-case-board.is-classic .case-related,.gb-ui-case-page .gb-ui-case-board.is-classic .case-faq,.gb-ui-case-page .gb-ui-case-board.is-classic .gb-ui-case-cta{grid-column:span 4!important}
  .gb-ui-case-hero{min-height:280px;padding:18px 0}
  .gb-ui-case-hero .container{width:min(calc(100% - 28px),1330px);min-height:244px}
  .gb-ui-case-hero h1{font-size:34px}
  .gb-ui-case-hero p{font-size:10px}
  .gb-ui-case-gold-hero{min-height:225px}
  .gb-ui-case-gold-hero .container{min-height:189px}
  .gb-ui-case-gold .gb-ui-challenges article{min-height:135px}
  .gb-ui-case-gold .gb-ui-flow{gap:2px}
  .gb-ui-case-gold .gb-ui-flow span{min-width:42px}
  .gb-ui-case-gold .gb-ui-flow .icon{width:24px;height:24px}
  .gb-ui-case-gold .gb-ui-flow em{font-size:12px}
  .gb-ui-case-gold .gb-ui-section>h2{font-size:10px}
  .gb-ui-cement-industry-solution .gb-ui-flow{gap:1px}
  .gb-ui-cement-industry-solution .gb-ui-flow span{min-width:38px}
  .gb-ui-cement-industry-solution .gb-ui-flow .icon{width:23px!important;height:23px!important}
  .gb-ui-cement-industry-solution .gb-ui-flow b{font-size:6.5px}
  .gb-ui-cement-industry-solution .gb-ui-flow em{font-size:10px}
  .gb-ui-detail-page .gb-detail-table,.gb-ui-case-page .gb-detail-table,.gb-ui-case-page .gb-ui-spec-table{width:100%;min-width:0}
  .gb-ui-custom-grinding-media-solution .gb-ui-flow{gap:1px}
  .gb-ui-custom-grinding-media-solution .gb-ui-flow span{flex:1 1 0;min-width:0}
  .gb-ui-custom-grinding-media-solution .gb-ui-flow .icon{width:23px!important;height:23px!important}
  .gb-ui-custom-grinding-media-solution .gb-ui-flow b{font-size:6.5px}
  .gb-ui-custom-grinding-media-solution .gb-ui-flow em{font-size:9px}
  .gb-ui-case-page .gb-ui-flow{gap:1px;overflow:visible}
  .gb-ui-case-page .gb-ui-flow span{flex:1 1 0;min-width:0}
  .gb-ui-case-page .gb-ui-flow .icon{width:22px;height:22px}
  .gb-ui-case-page .gb-ui-flow b{font-size:6.5px}
  .gb-ui-case-page .gb-ui-flow em{font-size:9px}
  .gb-ui-case-gold .gb-ui-flow{gap:2px}
  .gb-ui-case-gold .gb-ui-flow span{flex:0 1 auto;min-width:42px}
  .gb-ui-case-gold .gb-ui-flow .icon{width:24px;height:24px}
  .gb-ui-case-gold .gb-ui-flow b{font-size:7.5px}
}

@media(max-width:700px){
  .gb-ui-case-gold-crumb{padding:9px 0;font-size:9px}
  .gb-ui-case-gold .gb-ui-challenges,.gb-ui-case-gold .gb-ui-qa.is-case{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gb-ui-case-wide.is-iron .case-row-closing,.gb-ui-case-wide.is-cement .case-row-closing{grid-template-columns:1fr}
}
