:root {
  --navy: #092d59;
  --blue: #0a5fab;
  --green: #59ad25;
  --ink: #071d35;
  --line: #d9e0e4;
  --soft: #f6f8f8;
}

* { box-sizing: border-box; }

html { background: #edf1f2; }

body {
  margin: 0;
  padding-bottom: 86px;
  color: var(--ink);
  background: #edf1f2;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.bw-page {
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #cfd7da;
  background: #fff;
  box-shadow: 0 24px 70px rgba(6, 31, 48, .12);
}

.bw-hero {
  position: relative;
  display: grid;
  min-height: 445px;
  padding: 34px 48px 38px;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 25%, rgba(255,255,255,.32) 43%, rgba(255,255,255,0) 58%),
    url('/images/hero-product-banner.jpeg') center / cover no-repeat;
}

.bw-hero-copy { position: relative; z-index: 2; }

.bw-wordmark {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 38px;
  display: flex;
  margin: 0;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.bw-wordmark > img {
  width: 142px;
  height: 64px;
  object-fit: contain;
}

.bw-wordmark small {
  margin-top: 3px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
}

.bw-hero h1 {
  max-width: 510px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 3.6vw, 47px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.bw-hero h1 em { color: var(--blue); font-style: normal; }

.bw-hero-copy > p {
  max-width: 430px;
  margin: 15px 0 0;
  color: #1c2c38;
  font-size: 17px;
  line-height: 1.35;
}

.bw-hero-actions { display: flex; gap: 26px; margin-top: 20px; align-items: center; }

.bw-button {
  display: inline-flex;
  min-height: 42px;
  padding: 0 19px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.bw-button-primary {
  min-height: 48px;
  padding-inline: 25px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(10, 95, 171, .32);
}

.bw-button-primary span { margin-left: 12px; font-size: 18px; }
.bw-button-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(10, 95, 171, .4); }
.bw-button-secondary { color: var(--green); border: 2px solid var(--green); background: rgba(255,255,255,.88); }
.bw-button-secondary:hover { color: #fff; background: var(--green); transform: translateY(-1px); }

.bw-sticky-actions {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 72px;
  padding: 10px 24px;
  align-items: center;
  justify-content: center;
  gap: 40px;
  border-top: 1px solid rgba(9, 45, 89, .13);
  background: rgba(255,255,255,.96);
  box-shadow: 0 -10px 30px rgba(6, 31, 48, .15);
  backdrop-filter: blur(12px);
}

.bw-sticky-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
}

.bw-sticky-order {
  min-width: 205px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(10, 95, 171, .42);
  animation: bw-order-pop 2.8s ease-in-out infinite;
}

.bw-sticky-order span { margin-left: 15px; font-size: 22px; }

.bw-sticky-sample {
  min-height: 42px;
  padding: 0 4px;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  font-size: 12px;
}

@keyframes bw-order-pop {
  0%, 72%, 100% { transform: scale(1); box-shadow: 0 10px 25px rgba(10, 95, 171, .42); }
  82% { transform: scale(1.045); box-shadow: 0 13px 34px rgba(10, 95, 171, .55); }
}

.bw-hero-product {
  position: relative;
  z-index: 1;
  align-self: end;
}

.bw-hero-product img {
  width: 118%;
  max-width: none;
  margin: 0 0 6px -12%;
  filter: drop-shadow(0 22px 20px rgba(6, 31, 48, .22));
  transform: rotate(-1.25deg);
}

.bw-benefit-strip {
  position: relative;
  z-index: 4;
  display: grid;
  width: calc(100% - 74px);
  min-height: 108px;
  margin: 12px auto 20px;
  padding: 15px 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #dfe5e7;
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 8px 24px rgba(6, 31, 48, .08);
}

.bw-benefit-strip article {
  display: grid;
  padding: 4px 20px;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 12px;
  border-right: 1px solid #d9dfe2;
}

.bw-benefit-strip article:last-child { border-right: 0; }

.bw-benefit-strip img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.bw-benefit-strip h2,
.bw-benefit-strip p { margin: 0; }

.bw-benefit-strip h2 {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.bw-benefit-strip p { margin-top: 5px; font-size: 12px; line-height: 1.2; }

.bw-industries { padding: 0 36px 22px; }

.bw-industries > h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: .01em;
  text-align: center;
  text-transform: uppercase;
}

.bw-industries > h2::after {
  display: block;
  width: 48px;
  height: 3px;
  margin: 6px auto 0;
  background: var(--green);
  content: "";
}

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

.bw-industry-card {
  --card: var(--green);
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dde3e5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(6, 31, 48, .06);
}

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

.bw-industry-card > div { min-height: 205px; padding: 26px 13px 14px; }

.bw-industry-icon {
  position: absolute;
  top: 123px;
  left: 15px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--card);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 3px 8px rgba(6, 31, 48, .15);
}

.bw-industry-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bw-industry-card h3 {
  min-height: 38px;
  margin: 0 0 8px;
  color: var(--card);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.bw-industry-card ul { margin: 0; padding: 0; list-style: none; }
.bw-industry-card li { position: relative; padding-left: 10px; font-size: 12px; line-height: 1.45; }
.bw-industry-card li::before { position: absolute; left: 0; color: var(--card); content: "•"; }

.bw-lime { --card: #66aa28; }
.bw-purple { --card: #67319a; }
.bw-violet { --card: #7642a4; }
.bw-blue { --card: #075a9f; }
.bw-navy { --card: #0b4d86; }
.bw-orange { --card: #e35324; }
.bw-red { --card: #ef4b1d; }
.bw-gold { --card: #d69f22; }
.bw-cobalt { --card: #0566a7; }
.bw-education { --card: #68a82d; }
.bw-travel { --card: #116aa4; }

.bw-product-details {
  display: grid;
  padding: 8px 36px 22px;
  grid-template-columns: 1.05fr 1.05fr 1.3fr;
  gap: 22px;
}

.bw-detail-panel { min-width: 0; border-right: 1px solid #dce2e4; padding-right: 20px; }
.bw-detail-panel:last-child { border-right: 0; padding-right: 0; }

.bw-detail-panel > h2 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.bw-pack-layout,
.bw-case-layout { display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 12px; }

.bw-pack-layout img { width: 100%; }
.bw-pack-layout strong { display: block; color: var(--green); font-size: 34px; line-height: .9; }
.bw-pack-layout b { font-size: 12px; text-transform: uppercase; }
.bw-pack-layout p,
.bw-case-layout p { margin: 8px 0 0; font-size: 10px; line-height: 1.35; }

.bw-case-layout img { width: 100%; height: 165px; object-fit: contain; object-position: center; mix-blend-mode: multiply; }
.bw-case-layout strong { color: var(--green); font-size: 18px; line-height: 1.05; text-transform: uppercase; }

.bw-specifications table {
  width: 100%;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #dce2e4;
  border-radius: 8px;
  font-size: 10px;
}

.bw-specifications th,
.bw-specifications td { padding: 6px 8px; border-bottom: 1px solid #dce2e4; text-align: left; }
.bw-specifications tr:last-child th,
.bw-specifications tr:last-child td { border-bottom: 0; }
.bw-specifications th { width: 44%; background: #f1f3f3; font-weight: 800; }

.bw-value-bar {
  display: grid;
  min-height: 98px;
  padding: 13px 36px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: center;
  color: #fff;
  background: var(--navy);
}

.bw-value-brand {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 12px;
}

.bw-value-brand img { width: 86px; filter: drop-shadow(0 5px 8px rgba(0,0,0,.2)); }
.bw-value-brand p { margin: 0; font-size: 16px; font-weight: 900; line-height: 1.18; text-transform: uppercase; }
.bw-value-brand em { color: var(--green); font-style: normal; }

.bw-value-bar > article {
  display: grid;
  padding-left: 20px;
  grid-template-columns: 43px 1fr;
  align-items: center;
  gap: 10px;
}

.bw-value-bar > article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.bw-value-bar h2,
.bw-value-bar p { margin: 0; }
.bw-value-bar h2 { font-size: 11px; font-weight: 900; text-transform: uppercase; }
.bw-value-bar p { margin-top: 4px; color: rgba(255,255,255,.82); font-size: 9px; line-height: 1.2; }

.bw-footer {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--navy);
  background: #fff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.bw-footer a { text-decoration: none; }
.bw-footer a:first-child { color: var(--green); }

@media (max-width: 1000px) {
  .bw-hero { padding-inline: 34px; }
  .bw-benefit-strip { width: calc(100% - 44px); padding-inline: 10px; }
  .bw-benefit-strip article { padding-inline: 10px; grid-template-columns: 48px 1fr; gap: 8px; }
  .bw-benefit-strip img { width: 46px; height: 46px; }
  .bw-industry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bw-industry-card > img { height: 170px; }
  .bw-industry-icon { top: 148px; }
  .bw-industry-card > div { min-height: 178px; }
  .bw-product-details { grid-template-columns: 1fr 1fr; }
  .bw-specifications { grid-column: 1 / -1; border-right: 0; }
  .bw-value-bar { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .bw-value-brand { grid-column: 1 / -1; justify-content: center; }
}

@media (max-width: 680px) {
  body { padding-bottom: 120px; }
  .bw-page { border-right: 0; border-left: 0; }
  .bw-hero {
    min-height: 680px;
    padding: 24px 22px 28px;
    grid-template-columns: 1fr;
    align-items: start;
    background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.78) 42%, rgba(255,255,255,.12) 76%, rgba(255,255,255,0) 100%), url('/images/hero-product-banner-mobile.jpeg') center / cover no-repeat;
  }
  .bw-wordmark { top: 14px; right: 18px; }
  .bw-wordmark > img { width: 116px; height: 52px; }
  .bw-hero h1 { max-width: 380px; font-size: clamp(29px, 9.3vw, 43px); }
  .bw-hero-copy > p { max-width: 355px; font-size: 15px; }
  .bw-hero-product { position: absolute; right: -50px; bottom: 24px; width: 96%; opacity: .98; }
  .bw-hero-actions { flex-wrap: wrap; gap: 18px 26px; }

  .bw-sticky-actions {
    min-height: 104px;
    padding: 10px 16px;
    flex-direction: column;
    gap: 7px;
  }
  .bw-sticky-order { width: min(100%, 310px); min-height: 50px; }
  .bw-sticky-sample { min-height: 30px; }

  .bw-benefit-strip {
    width: calc(100% - 28px);
    margin-top: 8px;
    padding: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .bw-benefit-strip article { min-height: 88px; padding: 8px; border-right: 0; border-bottom: 1px solid #d9dfe2; }
  .bw-benefit-strip article:nth-last-child(-n+2) { border-bottom: 0; }
  .bw-benefit-strip h2 { font-size: 11px; }
  .bw-benefit-strip p { font-size: 10px; }

  .bw-industries { padding-inline: 14px; }
  .bw-industries > h2 { font-size: 18px; line-height: 1.1; }
  .bw-industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .bw-industry-card > img { height: 118px; }
  .bw-industry-icon { top: 98px; left: 11px; width: 40px; height: 40px; }
  .bw-industry-card > div { min-height: 195px; padding: 25px 10px 12px; }
  .bw-industry-card h3 { font-size: 11px; }
  .bw-industry-card li { font-size: 10.5px; line-height: 1.4; }

  .bw-product-details { padding-inline: 16px; grid-template-columns: 1fr; }
  .bw-detail-panel { border-right: 0; border-bottom: 1px solid #dce2e4; padding: 0 0 18px; }
  .bw-detail-panel:last-child { border-bottom: 0; }
  .bw-case-layout img { height: 150px; }

  .bw-value-bar { padding: 18px 16px; grid-template-columns: 1fr; gap: 14px; }
  .bw-value-brand { grid-column: auto; justify-content: start; }
  .bw-value-bar > article { padding: 0; }
  .bw-footer { min-height: 66px; padding: 10px; flex-wrap: wrap; gap: 10px 18px; font-size: 12px; }
}

@media print {
  html,
  body { background: #fff; }
  .bw-page { width: 100%; border: 0; box-shadow: none; }
  .bw-sticky-actions { display: none; }
}
