.industry-overview-page {
  background: #fff;
  color: var(--text-dark);
  overflow-x: clip;
}

.industry-page-container {
  width: min(1440px, calc(100% - 60px));
  margin-inline: auto;
}

.industry-overview-page .desktop-navigation .nav-link.is-active {
  color: var(--cmid-green);
}

.industry-overview-page .desktop-navigation .nav-link.is-active::after {
  transform: scaleX(1);
}

.industry-page-hero {
  position: relative;
  min-height: 330px;
  margin: 20px auto 0;
  width: min(1440px, calc(100% - 60px));
  overflow: hidden;
  border: 1px solid #dce9e2;
  border-radius: 24px;
  background: #edf8f2;
  isolation: isolate;
}

.industry-page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(250, 253, 251, .99) 0%, rgba(250, 253, 251, .94) 35%, rgba(250, 253, 251, .35) 61%, rgba(250, 253, 251, .04) 100%);
}

.industry-page-hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 330px;
  max-width: 670px;
  margin-left: max(34px, calc((100% - 1320px) / 2));
  padding: 58px 0;
  flex-direction: column;
  justify-content: center;
}

.industry-page-eyebrow {
  margin: 0 0 12px;
  color: var(--cmid-green);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.industry-page-hero h1,
.industry-range-placeholder h1 {
  margin: 0;
  color: #112032;
  font-size: clamp(42px, 4.2vw, 64px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.industry-page-hero__content > p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: #475467;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.industry-directory {
  padding: 76px 0 82px;
  background: linear-gradient(180deg, #fff 0%, #f8fbf9 100%);
}

.industry-directory__header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.industry-directory__header h2 {
  margin: 0;
  color: #112032;
  font-size: clamp(36px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.industry-directory__header > p:last-child {
  margin: 16px auto 0;
  color: #5c6877;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

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

.industry-page-card {
  display: flex;
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #dfe8e3;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(28, 59, 44, .07);
  flex-direction: column;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.industry-page-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: visible;
  background: #edf4f0;
}

.industry-page-card__media > img {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  transition: transform 250ms ease;
}

.industry-page-card__icon {
  position: absolute;
  left: 22px;
  bottom: -27px;
  display: grid;
  width: 56px;
  height: 56px;
  border: 1px solid #dbece2;
  border-radius: 50%;
  background: #fff;
  color: var(--cmid-green);
  box-shadow: 0 8px 24px rgba(8, 120, 63, .15);
  place-items: center;
}

.industry-page-card__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.industry-page-card__body {
  display: flex;
  padding: 42px 22px 23px;
  flex: 1;
  flex-direction: column;
}

.industry-page-card h3 {
  margin: 0;
  color: #152234;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.3;
}

.industry-page-card p {
  margin: 11px 0 20px;
  color: #52606f;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.65;
}

.industry-page-card__link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--cmid-green);
  font-size: 16px;
  font-weight: 700;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}

.industry-page-card__link span:last-child { transition: transform 200ms ease; }
.industry-page-card:hover {
  border-color: #a9d4bc;
  box-shadow: 0 18px 38px rgba(23, 54, 38, .12);
  transform: translateY(-4px);
}
.industry-page-card:hover .industry-page-card__media > img { transform: scale(1.025); }
.industry-page-card:hover .industry-page-card__link span:last-child { transform: translateX(4px); }

.industry-page-card a:focus-visible,
.industry-contact__button:focus-visible,
.industry-range-placeholder__back:focus-visible {
  outline: 3px solid rgba(8, 120, 63, .28);
  outline-offset: 4px;
}

.industry-contact {
  padding: 0 0 84px;
  background: #f8fbf9;
}

.industry-contact__panel {
  display: grid;
  min-height: 154px;
  padding: 28px 34px;
  border: 1px solid #dcebe2;
  border-radius: 22px;
  background: linear-gradient(110deg, #eff9f3 0%, #f9fcfa 58%, #eaf7f0 100%);
  box-shadow: 0 10px 26px rgba(28, 59, 44, .05);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.industry-contact__icon {
  display: grid;
  width: 58px;
  height: 58px;
  border: 1px solid #cfe8da;
  border-radius: 50%;
  background: #fff;
  color: var(--cmid-green);
  place-items: center;
}

.industry-contact__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.industry-contact h2 {
  margin: 0;
  color: #132237;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 800;
  letter-spacing: -.025em;
}

.industry-contact p {
  margin: 8px 0 0;
  color: #566473;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.industry-contact__button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 11px;
  background: var(--cmid-green);
  color: #fff;
  font-size: 17px;
  font-weight: 750;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(8, 120, 63, .2);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.industry-contact__button:hover {
  box-shadow: 0 14px 28px rgba(8, 120, 63, .26);
  transform: translateY(-2px);
}

.industry-range-placeholder {
  min-height: 650px;
  padding: 84px 0 96px;
  background: linear-gradient(180deg, #f5faf7 0%, #fff 100%);
}

.industry-range-placeholder__breadcrumb {
  display: flex;
  margin-bottom: 52px;
  color: #667483;
  font-size: 15px;
  gap: 10px;
  align-items: center;
}

.industry-range-placeholder__breadcrumb a,
.industry-range-placeholder__back {
  color: var(--cmid-green);
  font-weight: 700;
  text-decoration: none;
}

.industry-range-placeholder > .industry-page-container > p:not(.industry-page-eyebrow) {
  max-width: 760px;
  margin: 20px 0 36px;
  color: #52606f;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.industry-range-placeholder__notice {
  display: flex;
  max-width: 840px;
  padding: 28px;
  border: 1px solid #dcebe2;
  border-radius: 20px;
  background: #fff;
  gap: 20px;
  align-items: center;
  box-shadow: 0 12px 32px rgba(23, 33, 43, .06);
}

.industry-range-placeholder__notice h2 {
  margin: 0;
  color: #142235;
  font-size: 22px;
}

.industry-range-placeholder__notice p {
  margin: 8px 0 0;
  color: #596675;
  line-height: 1.6;
}

.industry-range-placeholder__actions {
  display: flex;
  margin-top: 26px;
  gap: 24px;
  align-items: center;
}

.industry-product-range {
  margin-top: 40px;
}

.industry-product-range__header {
  display: flex;
  margin-bottom: 22px;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
}

.industry-product-range__header h2 {
  margin: 0;
  color: #142235;
  font-size: 26px;
  line-height: 1.25;
}

.industry-product-range__header p {
  margin: 0;
  color: #66736d;
  font-size: 15px;
  font-weight: 650;
}

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

.industry-product-card {
  display: flex;
  min-width: 0;
  min-height: 348px;
  overflow: hidden;
  border: 1px solid #dde9e1;
  border-radius: 18px;
  color: #17212b;
  background: #fff;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(23, 33, 43, .055);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.industry-product-card__media {
  display: block;
  height: 178px;
  overflow: hidden;
  background: #f5f8f6;
}

.industry-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.industry-product-card__body {
  display: flex;
  min-width: 0;
  padding: 20px;
  flex: 1;
  flex-direction: column;
}

.industry-product-card__category {
  margin-bottom: 7px;
  color: var(--cmid-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.industry-product-card__body > strong {
  overflow-wrap: anywhere;
  font-size: 18px;
  line-height: 1.35;
}

.industry-product-card__packaging {
  display: flex;
  margin-top: 12px;
  color: #5f6d66;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.45;
  flex-direction: column;
}

.industry-product-card__packaging > span {
  color: #7a8780;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.industry-product-card__action {
  display: flex;
  margin-top: auto;
  padding-top: 18px;
  color: var(--cmid-green);
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  align-items: center;
}

.industry-product-card:hover,
.industry-product-card:focus-visible {
  border-color: rgba(8, 120, 63, .38);
  outline: none;
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(23, 33, 43, .1);
}

.industry-product-card:hover .industry-product-card__media img,
.industry-product-card:focus-visible .industry-product-card__media img {
  transform: scale(1.025);
}

@media (max-width: 1320px) {
  .industry-directory__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .industry-product-range__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
  .industry-directory__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .industry-product-range__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .industry-page-container { width: min(100% - 40px, 760px); }
  .industry-page-hero { width: calc(100% - 28px); min-height: 310px; }
  .industry-page-hero__content { min-height: 310px; margin-left: 0; padding: 44px 28px; }
  .industry-page-hero::after { background: linear-gradient(90deg, rgba(250, 253, 251, .98), rgba(250, 253, 251, .83) 58%, rgba(250, 253, 251, .35)); }
  .industry-directory { padding-block: 62px; }
  .industry-directory__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
  .industry-product-range__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-contact { padding-bottom: 62px; }
  .industry-contact__panel { grid-template-columns: auto minmax(0, 1fr); }
  .industry-contact__button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 580px) {
  .industry-page-container { width: calc(100% - 28px); }
  .industry-page-hero { margin-top: 12px; min-height: 330px; }
  .industry-page-hero > img { object-position: 68% center; opacity: .62; }
  .industry-page-hero::after { background: rgba(250, 253, 251, .78); }
  .industry-page-hero__content { min-height: 330px; padding: 38px 18px; }
  .industry-page-hero h1, .industry-range-placeholder h1 { font-size: 40px; }
  .industry-page-hero__content > p:last-child,
  .industry-directory__header > p:last-child { font-size: 17px; }
  .industry-directory { padding-block: 52px; }
  .industry-directory__header { margin-bottom: 30px; text-align: left; }
  .industry-directory__grid { grid-template-columns: 1fr; }
  .industry-product-range__header { align-items: flex-start; flex-direction: column; }
  .industry-product-range__grid { grid-template-columns: 1fr; }
  .industry-product-card { min-height: 0; }
  .industry-page-card { min-height: 0; }
  .industry-contact__panel { padding: 24px 20px; grid-template-columns: 1fr; text-align: center; }
  .industry-contact__icon { margin-inline: auto; }
  .industry-range-placeholder { padding: 58px 0 72px; }
  .industry-range-placeholder__notice { align-items: flex-start; }
  .industry-range-placeholder__actions { align-items: stretch; flex-direction: column; }
  .industry-range-placeholder__back { padding: 12px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .industry-page-card,
  .industry-page-card__media > img,
  .industry-page-card__link span:last-child,
  .industry-product-card,
  .industry-product-card__media img,
  .industry-contact__button { transition: none; }
}
