/* ==== Kalp Alloys â€” design system ==== */
:root {
  --ink: #0a1826;
  --navy: #0f2740;
  --steel: #1d5077;
  --steel-600: #174160;
  --accent: #33a7dd;
  --accent-600: #2b8fbf;
  --text: #16232e;
  --muted: #5d6f7c;
  --line: #e5eaee;
  --bg: #ffffff;
  --bg-alt: #f4f7f9;
  --bg-steel: #eef3f6;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10, 24, 38, .06), 0 2px 6px -2px rgba(10, 24, 38, .08);
  --shadow: 0 6px 16px -8px rgba(10, 24, 38, .16), 0 12px 32px -16px rgba(10, 24, 38, .14);
  --shadow-lg: 0 14px 34px -12px rgba(10, 24, 38, .22), 0 28px 64px -24px rgba(10, 24, 38, .28);
  --glow-accent: 0 8px 22px -8px rgba(51, 167, 221, .55);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --container: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  line-height: 1.12;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.01em
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.section {
  padding: 84px 0
}

.section--alt {
  background: var(--bg-alt)
}

.eyebrow {
  font-family: "Poppins";
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  color: var(--accent)
}

.section__head {
  max-width: 680px;
  margin-bottom: 48px
}

.section__head--center {
  margin-inline: auto;
  text-align: center
}

.section__title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin: .5rem 0 .6rem
}

.section__sub {
  color: var(--muted);
  font-size: 1.05rem
}

.k-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: "Poppins";
  font-weight: 600;
  font-size: .98rem;
  padding: .72rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap
}

.k-btn--accent {
  background: var(--accent);
  color: #fff
}

.k-btn--accent:hover {
  background: var(--accent-600);
  transform: translateY(-2px)
}

.k-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .4)
}

.k-btn--ghost:hover {
  background: rgba(255, 255, 255, .12)
}

.k-btn--outline {
  background: transparent;
  color: var(--steel);
  border-color: var(--steel)
}

.k-btn--outline:hover {
  background: var(--steel);
  color: #fff
}

.k-btn--lg {
  padding: .9rem 1.8rem;
  font-size: 1.05rem
}

/* ===== header right-side CTA cluster ===== */
.site-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none
}

.header-call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--steel);
  background: #fff;
  transition: .2s ease
}

.header-call:hover {
  background: var(--steel);
  border-color: var(--steel);
  color: #fff
}

.header-quote {
  padding: .6rem 1.15rem;
  font-size: .92rem;
  box-shadow: 0 8px 20px -10px rgba(51, 167, 221, .9)
}

.header-quote i {
  font-size: .85rem
}

/* ===== Get Quote popup ===== */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px
}

.quote-modal[hidden] {
  display: none
}

.quote-modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 38, .62);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .22s ease
}

.quote-modal.is-open .quote-modal__scrim {
  opacity: 1
}

.quote-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 30px 32px 26px;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .22s ease, transform .22s ease
}

.quote-modal.is-open .quote-modal__dialog {
  opacity: 1;
  transform: none
}

.quote-modal__x {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-steel, #eef4f8);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease
}

.quote-modal__x:hover {
  background: var(--steel);
  color: #fff
}

.quote-modal__head h2 {
  font-size: 1.5rem;
  margin: 0 0 6px;
  color: var(--ink)
}

.quote-modal__head p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .95rem
}

.quote-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.quote-field--full {
  grid-column: 1 / -1
}

.quote-modal .field-label {
  display: block;
  margin-bottom: 5px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink)
}

.quote-modal .req {
  color: #c0392b;
  margin-left: 2px
}

.quote-modal .form-control {
  width: 100%;
  padding: .68rem .85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm, 8px);
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease
}

.quote-modal .form-control:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(51, 167, 221, .18)
}

.quote-modal__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px
}

.quote-modal__actions .form-status {
  font-size: .9rem;
  font-weight: 600
}

.quote-modal__note {
  margin: 10px 0 0;
  font-size: .82rem;
  color: var(--muted)
}

.site-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background .3s ease, box-shadow .3s ease
}

.site-top.scrolled {
  background: #fff;
  box-shadow: var(--shadow)
}

.site-top.scrolled .topbar {
  display: none
}

.site-top:not(.scrolled) .brand img {
  filter: brightness(0) invert(1)
}

.site-top.scrolled .nav__link {
  color: var(--ink);
  text-shadow: none
}

.site-top.scrolled .nav__link:hover,
.site-top.scrolled .nav__link.is-active {
  color: var(--steel)
}

.topbar {
  background: transparent;
  color: #eaf1f6;
  font-size: .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.topbar__in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  gap: 16px
}

.topbar__contact {
  display: flex;
  gap: 22px;
  align-items: center
}

.topbar__contact .ti,
.topbar__contact a i {
  color: var(--accent)
}

.topbar__contact a:hover,
.topbar__contact a:hover i {
  color: #fff
}

.topbar__social a i {
  font-size: 16px;
  line-height: 1
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 16px
}

.topbar__social {
  display: flex;
  gap: 13px
}

.topbar__social a {
  color: #c7d4de;
  display: inline-flex
}

.topbar__social a:hover {
  color: var(--accent)
}

.topbar__div {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, .25)
}

.topbar__deal {
  color: #fff;
  font-weight: 600
}

.topbar__deal:hover {
  color: var(--accent)
}

.nav__link.has-caret {
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  display: inline-block;
  opacity: .7
}

.floaters {
  position: fixed;
  left: 14px;
  top: 62%;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.floater {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: var(--shadow);
  transition: .2s
}

.floater--call {
  background: var(--accent)
}

.floater--wa {
  background: #25d366
}

.floater:hover {
  transform: scale(1.08)
}

.site-header {
  position: static;
  background: transparent;
  transition: box-shadow .2s
}

.site-header.scrolled {
  box-shadow: var(--shadow)
}

.site-header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px
}

.brand img {
  height: 65px;
  width: auto;
  object-fit: contain
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px
}

.nav__link {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  padding: .5rem .85rem;
  border-radius: 7px;
  transition: .15s;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35)
}

.nav__link:hover {
  color: var(--accent);
  background: transparent
}

.nav__link.is-active {
  color: var(--accent)
}

.nav__cta {
  margin-left: 12px
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer
}

.nav-close {
  display: none
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: .25s
}

/* white bars over transparent header (dark hero/banner); dark once drawer opens */
.site-top:not(.scrolled) .nav-toggle span {
  background: #fff
}

/* call pill inherits the same light treatment over the dark banner */
.site-top:not(.scrolled) .header-call {
  background: transparent;
  border-color: rgba(255, 255, 255, .45);
  color: #fff
}

.site-top:not(.scrolled) .header-call:hover {
  background: rgba(255, 255, 255, .16)
}

.nav-toggle.open span {
  background: var(--ink)
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg)
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg)
}

/* mobile + tablet: hide topbar, full-height side-slide drawer */

.hero {
  position: relative;
  background: linear-gradient(120deg, #0a1826 0%, #0f2740 55%, #173a56 100%);
  color: #eaf1f6;
  overflow: hidden
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .6;
  pointer-events: none
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 800;
  margin: .7rem 0 1.1rem
}

.hero h1 em {
  color: var(--accent);
  font-style: normal
}

.hero__lead {
  font-size: 1.15rem;
  color: #bcccd8;
  max-width: 560px;
  margin-bottom: 2rem
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.2rem
}

.hero__trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 1.4rem
}

.hero__trust div {
  font-size: .92rem;
  color: #a9bccb
}

.hero__trust b {
  display: block;
  font-family: "Poppins";
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700
}

.hero__panel {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 30px
}

.hero__panel h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 16px
}

.hero__panel ul {
  list-style: none;
  display: grid;
  gap: 12px
}

.hero__panel li {
  display: flex;
  gap: 11px;
  color: #cdd9e3;
  font-size: .98rem;
  align-items: flex-start
}

.hero__panel li::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 700;
  flex: none
}

.stats {
  background: var(--navy);
  color: #fff
}

.stats__grid {
  padding: 38px 0
}

.stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .12)
}

.stats__grid>*:last-child .stat {
  border-right: 0
}

.stat__num {
  font-family: "Poppins";
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  line-height: 1
}

.stat__label {
  color: #9fb3c2;
  font-size: .92rem;
  margin-top: 6px
}

.cat {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: .25s;
  display: flex;
  flex-direction: column
}

.cat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

.cat__img {
  aspect-ratio: 16/11;
  background: var(--bg-steel);
  overflow: hidden
}

.cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s
}

.cat:hover .cat__img img {
  transform: scale(1.06)
}

.cat__body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.cat__name {
  font-size: 1.22rem;
  margin-bottom: .4rem
}

.cat__blurb {
  color: var(--muted);
  font-size: .94rem;
  flex: 1
}

.cat__link {
  margin-top: 16px;
  font-family: "Poppins";
  font-weight: 600;
  color: var(--steel);
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.cat__link::after {
  content: "\2192";
  transition: .2s
}

.cat:hover .cat__link::after {
  transform: translateX(4px)
}

.materials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center
}

.chip {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: .6rem 1.25rem;
  transition: .2s
}

.chip:hover {
  border-color: var(--steel);
  color: var(--steel);
  box-shadow: var(--shadow)
}

.usp {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px
}

.usp__ic {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-steel);
  color: var(--steel);
  display: grid;
  place-items: center
}

.usp__ic svg {
  width: 26px;
  height: 26px
}

.usp__ic i {
  font-size: 24px;
  line-height: 1
}

.usp h3 {
  font-size: 1.18rem;
  margin-bottom: .35rem
}

.usp p {
  color: var(--muted);
  font-size: .96rem
}

.ind {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px 20px;
  text-align: center;
  transition: .2s
}

.ind:hover {
  border-color: var(--steel);
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.ind__ic {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  color: var(--steel)
}

.ind__ic svg {
  width: 100%;
  height: 100%
}

.ind__ic i {
  font-size: 30px;
  line-height: 46px
}

.ind__name {
  font-family: "Poppins";
  font-weight: 600;
  color: var(--ink)
}

.stds {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  justify-content: center;
  align-items: center
}

.std {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--steel);
  opacity: .85
}

.faq {
  margin-inline: auto
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden
}

.faq__q {
  width: 100%;
  text-align: left;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center
}

.faq__q::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  flex: none;
  transition: .25s
}

.faq__item.open .faq__q::after {
  transform: rotate(45deg)
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease
}

.faq__a p {
  padding: 0 24px 22px;
  color: var(--muted)
}

.cta {
  background: linear-gradient(120deg, var(--steel-600), var(--steel));
  color: #fff
}

.cta__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px 0
}

.cta__title {
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem)
}

.cta__text {
  color: #dceaf3;
  margin-top: .4rem;
  max-width: 520px
}

.cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.footer {
  background: var(--ink);
  color: #a9bccb;
  padding-top: 64px;
  font-size: .95rem
}

.footer__grid {
  padding-bottom: 40px
}

.footer__col h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 18px
}

.footer__col a {
  display: block;
  color: #a9bccb;
  padding: 5px 0;
  transition: .15s
}

.footer__col a:hover {
  color: var(--accent)
}

.footer__reach p {
  margin-bottom: 16px;
  line-height: 1.6
}

.footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.footer__tags span,
.footer__tags a {
  font-size: .78rem;
  color: #cdd9e3;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 4px 10px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s
}

.footer__tags a:hover,
.footer__tags a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28)
}

.footer__brand {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 32px 0
}

.footer__brand-in {
  display: flex;
  align-items: center;
  gap: 28px
}

.footer__logo {
  height: auto;
  flex-shrink: 0;
  filter: brightness(0) invert(1)
}

.footer__tagline {
  flex: 1;
  margin: 0;
  max-width: 620px;
  line-height: 1.6
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto
}

.footer__social a {
  display: inline-flex;
  padding: 6px;
  background: #fff;
  border-radius: 8px;
  line-height: 0;
  transition: .2s ease
}

.footer__social a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow)
}

.footer__social img {
  width: 26px;
  height: 26px;
  display: block;
  border-radius: 3px
}

.footer__contact p {
  margin-top: 8px
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer__bar-in {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: .86rem;
  color: #7f95a6
}

/* ==== WP-style hero override ==== */
.hero {
  background: #0a121e
}

.hero::after {
  content: none
}

.hero__slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(90% 130% at 50% 130%, rgba(242, 120, 30, .30), transparent 55%), radial-gradient(120% 120% at 50% 8%, #243a55, #0a121e 70%)
}

.hero__card {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  background: rgba(9, 14, 23, .55);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 66px 48px;
  backdrop-filter: blur(2px)
}

.hero__eyebrow {
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--accent);
  display: block;
  margin-bottom: 14px
}

.hero__card h1 {
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 32px
}

.k-btn--hero {
  display: inline-flex;
  padding: .85rem 2.1rem;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem
}

.k-btn--hero:hover {
  background: #fff;
  color: var(--ink)
}

.hero__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(8, 14, 22, .35);
  backdrop-filter: blur(2px);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: .2s
}

.hero__arrow--l {
  left: 24px
}

.hero__arrow--r {
  right: 24px
}

.hero__arrow:hover {
  background: var(--accent);
  border-color: var(--accent)
}

/* hero slider bg + dots */
.hero__bgs {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease
}

.hero__bg.is-active {
  opacity: 1
}

.hero__slide>.container,
.hero__dots {
  position: relative;
  z-index: 2
}

.hero__dots {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 9px
}

.hero__dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  padding: 0;
  transition: .2s
}

.hero__dots button.is-active {
  background: var(--accent);
  width: 26px;
  border-radius: 6px
}

/* category slider */
.cats-slider {
  position: relative
}

.cats-slider__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 12px;
  scrollbar-width: none
}

.cats-slider__track::-webkit-scrollbar {
  display: none
}

.cats-slider__track .cat {
  flex: 0 0 300px;
  scroll-snap-align: start
}

.cats-slider__btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--steel);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 5;
  display: grid;
  place-items: center
}

.cats-slider__btn:hover {
  background: var(--steel);
  color: #fff;
  border-color: var(--steel)
}

.cats-slider__prev {
  left: -18px
}

.cats-slider__next {
  right: -18px
}

/* Our Products â€” per-category banner + product slider */
.pcats {
  display: flex;
  flex-direction: column;
  gap: 34px
}

.pcat {
  display: flex;
  gap: 28px;
  align-items: stretch;
  /* padding: 22px; */
  /* border: 1px solid var(--line); */
  border-radius: 20px;
  background: #fff
}

.pcat:nth-child(even) {
  flex-direction: row-reverse;
  background: var(--bg-alt);
  border-color: transparent
}

.pcat .pcat__banner {
  flex: 0 0 33%;
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--ink)
}

.pcat:nth-child(even) .pcat__banner {
  border-radius: 16px;
  justify-content: flex-end;
  text-align: right
}

.pcat__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 18, 26, .5), rgba(10, 18, 26, .78))
}

.pcat__banner h3 {
  position: relative;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 0 32px;
  line-height: 1.12
}

.pcat__slider {
  flex: 1;
  position: relative;
  min-width: 0;
  z-index: 2;
  margin: 25px 0;
  padding: 25px;
  background: #fff;
  border-radius: 20px;
}

/* Cards overlap onto the banner image, like the live site. */
.pcat:not(:nth-child(even)) .pcat__slider {
  margin-left: -64px
}

.pcat:nth-child(even) .pcat__slider {
  margin-right: -64px
}

.pcat__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 2px 2px 12px;
  scrollbar-width: none;
  height: 100%
}

.pcat__track::-webkit-scrollbar {
  display: none
}

.pcard {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .2s;
  color: inherit
}

.pcard:hover {
  border-color: var(--line)
}

.pcard__img {
  flex: 1 1 auto;
  min-height: 200px;
  background: #fff;
  padding: 16px;
  display: grid;
  place-items: center
}

.pcard__img img {
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: contain
}

.pcard__cap {
  background: #37474f;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 14px;
  line-height: 1.3;
  height: 76px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.pcat__nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--steel);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 5;
  display: grid;
  place-items: center
}

.pcat__nav:hover {
  background: var(--steel);
  color: #fff;
  border-color: var(--steel)
}

.pcat__prev {
  left: -16px
}

.pcat__next {
  right: -16px
}

/* ============================================================
   INNER PAGES  (added for full-site build)
   ============================================================ */
.page-hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy), var(--steel));
  color: #fff;
  padding: 74px 0 62px;
  overflow: hidden
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 300px at 88% -10%, rgba(51, 167, 221, .35), transparent 60%);
  pointer-events: none
}

.page-hero__in {
  position: relative;
  z-index: 1;
  text-align: center
}

.page-hero h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em
}

.page-hero p {
  max-width: 760px;
  margin: 14px auto 0;
  color: #d3e2ee;
  font-size: 1.02rem
}

.crumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  font-size: .86rem;
  color: #bcd2e2;
  margin-bottom: 16px
}

.crumb a {
  color: #bcd2e2;
  text-decoration: none
}

.crumb a:hover {
  color: #fff
}

.crumb span {
  opacity: .6
}

/* prose */
.prose {
  max-width: 920px;
  margin: 0 auto
}

/* fluid wrapper: copy sits in a centred reading container while data tables
   break out to a full-width (container-fluid) band. */
.prose.wide {
  max-width: none;
  padding-inline: clamp(16px, 4vw, 48px)
}

/* data tables span the full fluid band (capped so they don't sprawl on
   ultra-wide monitors) */
.prose.wide>.tbl-wrap {
  max-width: 1400px;
  margin-inline: auto
}

/* --- readable copy polish --- */
.prose.wide>p,
.prose.wide>ul,
.prose.wide>ol {
  line-height: 1.72
}

.prose.wide>p:first-of-type {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink)
}

/* set each flange-type block apart with a hairline rule */
.prose.wide>h3 {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line)
}

.prose h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--navy);
  font-weight: 800;
  margin: 34px 0 14px;
  letter-spacing: -.01em
}

.prose h3 {
  font-size: 1.22rem;
  color: var(--steel-600);
  font-weight: 700;
  margin: 26px 0 10px
}

.prose h4 {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 700;
  margin: 22px 0 8px
}

.prose p {
  color: var(--text);
  margin: 0 0 14px
}

.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 20px
}

.prose li {
  margin: 6px 0;
  color: var(--text)
}

.prose strong {
  color: var(--navy)
}

.prose a {
  color: var(--accent-600);
  font-weight: 600
}

/* technical tables */
.tbl-wrap {
  overflow-x: auto;
  margin: 18px 0 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow)
}

.prose table {
  border-collapse: collapse;
  width: 100%;
  min-width: 640px;
  font-size: .855rem;
  background: #fff
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 8px 12px;
  text-align: center;
  white-space: nowrap
}

.prose thead th,
.prose tr:first-child td strong {
  background: var(--navy);
  color: #fff;
  font-weight: 600
}

.prose thead th {
  background: var(--steel);
  color: #fff;
  border-color: var(--steel);
  vertical-align: middle;
  font-weight: 600
}

/* first (Grade) column acts as a row header */
.prose tbody th[scope="row"] {
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-alt);
  white-space: nowrap
}

.prose table td {
  font-variant-numeric: tabular-nums
}

.prose tbody tr:hover td,
.prose tbody tr:hover th[scope="row"] {
  background: #eaf1f8;
  color: var(--navy)
}

/* full-width footnote row */
.prose .tbl-foot {
  text-align: left;
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg-alt);
  white-space: normal
}

/* filter box injected above long data tables */
.tbl-filter {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 6px 0 14px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: .92rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff
}

.tbl-filter:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(37, 99, 149, .15)
}

.prose tbody td strong {
  color: var(--navy)
}

.prose tbody tr:nth-child(even) {
  background: var(--bg-alt)
}

.prose td strong {
  font-weight: 700
}

.tbl-note {
  font-size: .82rem;
  color: var(--muted);
  margin: -14px 0 24px
}

/* freeze the first (label) column so the grade / NPS stays visible while
   scrolling wide data tables sideways. Only the top-left corner header cell
   is pinned (NPS spans the header rows via rowspan; Grade sits under a
   full-width title) — not the mid-table sub-headers. */
.prose thead tr:first-child th:first-child,
.prose tbody th[scope="row"],
.prose tbody td:first-child {
  position: sticky;
  left: 0;
  box-shadow: 1px 0 0 var(--line)
}

.prose thead tr:first-child th:first-child {
  z-index: 5
}

.prose tbody th[scope="row"] {
  z-index: 3
}

.prose tbody td:first-child {
  z-index: 2;
  background: #fff
}

.prose tbody tr:nth-child(even) td:first-child {
  background: var(--bg-alt)
}

.prose tbody tr:hover td:first-child {
  background: #eaf1f8;
  color: var(--navy)
}

/* the sticky column shouldn't hug the edge on wide colspan note rows */
.prose tbody td[colspan] {
  position: static;
  box-shadow: none
}

/* tall "to be specified" bore cell (spans every size row): let it wrap in a
   narrow column instead of forcing a huge nowrap width */
.prose td.vnote {
  white-space: normal;
  min-width: 46px;
  max-width: 64px;
  font-size: .72rem;
  line-height: 1.35;
  color: var(--muted);
  background: var(--bg-alt);
  vertical-align: middle
}

/* slim, on-brand scrollbar for the horizontal data-table scroll */
.tbl-wrap {
  scrollbar-width: thin;
  scrollbar-color: var(--steel) var(--bg-alt);
  scroll-behavior: smooth
}

.tbl-wrap::-webkit-scrollbar {
  height: 10px
}

.tbl-wrap::-webkit-scrollbar-track {
  background: var(--bg-alt)
}

.tbl-wrap::-webkit-scrollbar-thumb {
  background: var(--steel);
  border-radius: 999px;
  border: 2px solid var(--bg-alt)
}

/* flange type pills */
.ftypes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 8px
}

.ftype {
  background: var(--bg-steel);
  color: var(--steel-600);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: .92rem
}

.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg)
}

.feature-grid {
  margin-top: 8px
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow)
}

.feature__ic {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 12px
}

.feature__ic svg {
  width: 44px;
  height: 44px
}

.feature h3 {
  font-size: 1.06rem;
  color: var(--navy);
  margin-bottom: 6px
}

.feature p {
  color: var(--muted);
  font-size: .94rem
}

/* linked feature cards (technical hub, etc.) */
a.feature {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s
}

a.feature:hover {
  transform: translateY(-4px);
  border-color: var(--steel);
  box-shadow: var(--shadow-lg)
}

.feature__more {
  margin-top: auto;
  padding-top: 14px;
  color: var(--accent-600);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.feature__more::after {
  content: "\2192";
  transition: transform .2s var(--ease)
}

a.feature:hover .feature__more::after {
  transform: translateX(4px)
}

.val {
  border-left: 3px solid var(--accent);
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px
}

.val h4 {
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1.02rem
}

.val p {
  color: var(--muted);
  font-size: .92rem
}

.prod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: flex;
  flex-direction: column
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.prod-card__img {
  aspect-ratio: 1;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px
}

.prod-card__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain
}

.prod-card__cap {
  padding: 12px 14px;
  font-weight: 600;
  color: var(--navy);
  font-size: .92rem;
  text-align: center;
  border-top: 1px solid var(--line)
}

.cat-block {
  margin-bottom: 44px
}

.cat-block__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px
}

.cat-block__head h2 {
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 800
}

.cat-block__head .bar {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent)
}

.gallery a {
  display: block;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--line)
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s
}

.gallery a:hover img {
  transform: scale(1.07)
}

.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.post-card__img {
  aspect-ratio: 16/9;
  background: var(--bg-steel);
  overflow: hidden
}

.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.post-card__body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.post-card__date {
  font-size: .78rem;
  color: var(--accent-600);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em
}

.post-card__body h3 {
  font-size: 1.04rem;
  color: var(--navy);
  margin: 8px 0 8px;
  line-height: 1.35
}

.post-card__body p {
  color: var(--muted);
  font-size: .9rem;
  flex: 1
}

.post-card__body a.more {
  margin-top: 12px;
  color: var(--accent-600);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none
}

/* Bootstrap pagination, brand-skinned */
.pagination {
  gap: 8px;
  margin-top: 40px
}

.pagination .page-link {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s
}

.pagination .page-link:hover {
  border-color: var(--accent-600);
  color: var(--accent-600)
}

.pagination .page-link:focus {
  box-shadow: 0 0 0 .2rem rgba(51, 167, 221, .25)
}

.pagination .page-item.active .page-link {
  background: var(--accent-600);
  border-color: var(--accent-600);
  color: #fff;
  cursor: default
}

.pagination .page-item.disabled .page-link {
  color: var(--muted);
  background: transparent;
  border-color: transparent
}

/* ---- blog single page ---- */
.blog-detail {
  align-items: start
}

.blog-detail__cover {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-steel);
  margin-bottom: 20px
}

.blog-detail__cover img {
  width: 100%;
  height: auto;
  display: block
}

.blog-detail__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0 0 22px;
  font-size: .82rem;
  color: var(--muted)
}

.blog-detail__meta li {
  position: relative;
  padding-left: 16px
}

.blog-detail__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%)
}

.blog-content {
  color: #3a4a56;
  font-size: 1.05rem;
  line-height: 1.8;
  overflow-wrap: break-word
}

.blog-content>p:first-of-type {
  font-size: 1.16rem;
  line-height: 1.7;
  color: var(--navy)
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
  scroll-margin-top: 120px
}

.blog-content h2 {
  font-size: 1.55rem;
  margin: 1.7em 0 .7em;
  padding-bottom: .35em;
  border-bottom: 1px solid var(--line)
}

.blog-content h3 {
  font-size: 1.28rem;
  margin: 1.5em 0 .6em;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  line-height: 1.35
}

.blog-content h4 {
  font-size: 1.1rem;
  margin: 1.4em 0 .5em
}

.blog-content p {
  margin: 0 0 1.15em
}

.blog-content strong,
.blog-content b {
  color: var(--navy)
}

.blog-content a {
  color: var(--accent-600);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s
}

.blog-content a:hover {
  color: var(--navy)
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 1.25em;
  padding-left: 1.5em
}

.blog-content ul {
  list-style: none;
  padding-left: 1.7em
}

.blog-content ul>li {
  position: relative
}

.blog-content ul>li::before {
  content: "";
  position: absolute;
  left: -1.2em;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
  transform: rotate(45deg)
}

.blog-content li {
  margin-bottom: .55em
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 1em 0
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: .92rem
}

.blog-content th,
.blog-content td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left
}

.blog-content th {
  background: var(--bg-steel)
}

.blog-content blockquote {
  margin: 1.2em 0;
  padding: 12px 20px;
  border-left: 4px solid var(--accent);
  background: var(--bg-steel);
  color: var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0
}

.blog-content figure {
  margin: 1em 0
}

.blog-detail__side {
  min-width: 0;
  align-self: stretch
}

.blog-missing {
  text-align: center;
  padding: 40px 0
}

.blog-missing h2 {
  color: var(--navy)
}

/* card footer: author + read link */
.post-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line)
}

.post-card__author {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted)
}

.post-card__foot .more {
  margin-top: 0
}

/* blog search */
.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 560px;
  margin: 0 0 26px
}

.blog-search input[type="search"] {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: .95rem;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s
}

.blog-search input[type="search"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(51, 167, 221, .15)
}

.blog-search button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s
}

.blog-search button:hover {
  background: var(--accent-600)
}

.blog-search__clear {
  font-size: .85rem;
  color: var(--muted);
  white-space: nowrap
}

.blog-search__clear:hover {
  color: var(--accent-600)
}

.blog-search__result {
  margin: -12px 0 22px;
  color: var(--muted);
  font-size: .9rem
}

/* prev / next post nav */
.post-nav {
  margin: 34px 0
}

.post-nav__link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .2s, box-shadow .2s, transform .2s
}

.post-nav__link:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px)
}

.post-nav__link--next {
  text-align: right
}

.post-nav__dir {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent-600)
}

.post-nav__title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

/* related posts */
.related-posts {
  margin-top: 56px
}

.related-posts__title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: .4em;
  border-bottom: 1px solid var(--line)
}

.cinfo {
  background: linear-gradient(150deg, var(--navy), var(--steel));
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 28px
}

.cinfo h3 {
  font-size: 1.3rem;
  margin-bottom: 18px
}

.cinfo__row {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 16px
}

.cinfo__row svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px
}

.cinfo__row a,
.cinfo__row span {
  color: #e2edf5;
  text-decoration: none;
  font-size: .95rem;
  word-break: break-word
}

.cinfo__row a:hover {
  color: #fff
}

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow)
}

.field {
  margin-bottom: 16px
}

.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg-alt)
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff
}

.field textarea {
  resize: vertical;
  min-height: 120px
}

.map-embed {
  margin-top: 34px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0
}

/* ===== inner pages: solid sticky header + dark banner ===== */
body.inner .site-top {
  position: sticky;
  background: #fff;
  box-shadow: var(--shadow)
}

body.inner .topbar {
  background: var(--ink);
  color: #c7d4de;
  border-bottom: 0
}

body.inner .site-header {
  background: #fff
}

body.inner .nav__link {
  color: var(--ink);
  text-shadow: none
}

body.inner .nav__link:hover,
body.inner .nav__link.is-active {
  color: var(--steel)
}

body.inner .brand img {
  filter: none
}

.page-hero {
  background: linear-gradient(120deg, #0a1826, #173a56);
  color: #fff;
  padding: 60px 0
}

.page-hero .crumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .9rem;
  color: #a9bccb;
  margin-bottom: 12px
}

.page-hero .crumb a {
  color: #a9bccb
}

.page-hero .crumb a:hover {
  color: #fff
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem)
}

.page-hero p {
  color: #bcccd8;
  margin-top: 10px;
  max-width: 660px
}

.prose h2 {
  margin: .2rem 0 1rem
}

.prose p {
  margin-bottom: 1rem;
  color: var(--text)
}

/* ===== navbar dropdowns ===== */
.nav__item {
  position: relative;
  display: flex;
  align-items: center
}

.site-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 224px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s;
  z-index: 60
}

.nav__item:hover .site-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

/* Back row is mobile-drawer only — hide on desktop hover dropdown */
.site-dropdown__back-item {
  display: none
}

.nav__item:hover .caret {
  transform: rotate(180deg)
}

.site-dropdown li a {
  display: block;
  padding: .55rem .85rem;
  border-radius: 7px;
  color: var(--ink);
  font-size: .94rem;
  font-weight: 500;
  white-space: nowrap;
  text-shadow: none
}

.site-dropdown li a:hover {
  background: var(--bg-steel);
  color: var(--steel)
}

/* second-level flyout (e.g. Resources › Tools › …) */
.site-dropdown li.has-sub {
  position: relative
}

.site-dropdown li.has-sub>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.caret--sub {
  flex: none;
  border-left: 5px solid currentColor;
  border-right: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  opacity: .6
}

.site-subdropdown {
  position: absolute;
  top: -9px;
  right: 100%;
  margin-right: 6px;
  min-width: 234px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: .18s;
  z-index: 70
}

.site-dropdown li.has-sub:hover>.site-subdropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0)
}

.site-dropdown li.has-sub:hover>a {
  background: var(--bg-steel);
  color: var(--steel)
}

.site-subdropdown li a {
  display: block;
  padding: .55rem .85rem;
  border-radius: 7px;
  color: var(--ink);
  font-size: .94rem;
  font-weight: 500;
  white-space: nowrap;
  text-shadow: none
}

.site-subdropdown li a:hover {
  background: var(--bg-steel);
  color: var(--steel)
}

/* ===== inner pages: transparent header overlays the dark page banner (like homepage) ===== */
body.inner .site-top {
  position: fixed;
  background: transparent;
  box-shadow: none
}

body.inner .topbar {
  background: transparent;
  color: #eaf1f6;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

body.inner .site-header {
  background: transparent
}

body.inner .nav__link {
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35)
}

body.inner .nav__link:hover,
body.inner .nav__link.is-active {
  color: var(--accent)
}

body.inner .brand img {
  filter: brightness(0) invert(1)
}

body.inner .site-top.scrolled {
  background: #fff;
  box-shadow: var(--shadow)
}

body.inner .site-top.scrolled .topbar {
  display: none
}

body.inner .site-top.scrolled .site-header {
  background: #fff
}

body.inner .site-top.scrolled .nav__link {
  color: var(--ink);
  text-shadow: none
}

body.inner .site-top.scrolled .nav__link:hover,
body.inner .site-top.scrolled .nav__link.is-active {
  color: var(--steel)
}

body.inner .site-top.scrolled .brand img {
  filter: none
}

/* Prevent AOS slide-in animations from creating horizontal scroll.
   Use `clip` (not `hidden`) so it doesn't become a scroll container and break position:sticky. */
html,
body {
  overflow-x: clip
}

/* ==== Blog slider (home) ==== */
.blog-slider {
  position: relative
}

.blog-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 14px;
  scrollbar-width: none
}

.blog-track::-webkit-scrollbar {
  display: none
}

.bcard {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  transition: box-shadow .2s ease
}

.bcard:hover {
  box-shadow: var(--shadow-lg)
}

.bcard__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-steel)
}

.bcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.bcard__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1
}

.bcard__date {
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.bcard__title {
  font-size: 1.06rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.bcard__more {
  margin-top: auto;
  color: var(--steel);
  font-weight: 600;
  font-size: .92rem
}

.blog-prev {
  left: -16px
}

.blog-next {
  right: -16px
}

/* ==== Mobile: full-width container, minimal side padding ==== */

/* ==== Product detail pages ==== */
.k-btn--primary {
  background: var(--accent);
  color: #fff
}

.k-btn--primary:hover {
  background: var(--accent-600);
  transform: translateY(-2px)
}

.prod-detail {
  align-items: start
}

.prod-detail__media {
  background: var(--bg-steel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center
}

.prod-detail__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm)
}

.prod-detail__body h2 {
  color: var(--ink);
  margin-bottom: 14px
}

.prod-detail__body p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px
}

.prod-detail__body .cat-std {
  color: var(--steel);
  font-size: .95rem
}

.prod-detail__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px
}

.prod-detail__cta .k-btn--ghost {
  color: var(--steel);
  border-color: var(--steel)
}

.prod-detail__cta .k-btn--ghost:hover {
  background: var(--steel);
  color: #fff
}

.prod-spec {
  margin-top: 48px
}

.prod-spec table {
  width: 100%;
  border-collapse: collapse
}

.prod-spec th,
.prod-spec td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--line);
  vertical-align: top
}

.prod-spec th {
  background: var(--bg-alt);
  color: var(--ink);
  width: 220px;
  font-weight: 600
}

.prod-spec td {
  color: var(--text)
}

.cat-std {
  color: var(--steel);
  font-size: .95rem
}

/* page banner starts at very top, content clears the fixed header */
.page-hero {
  padding-top: 150px
}

/* ============================================================
   Modern polish layer — 2026 refresh
   Refined motion, depth, hover states. Non-breaking.
   ============================================================ */

::selection {
  background: rgba(51, 167, 221, .22);
  color: var(--ink)
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px
}

/* eyebrow gets a small accent tick */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent)
}

.section__head--center .eyebrow {
  justify-content: center
}

/* buttons — depth, gradient accent, spring motion */
.k-btn {
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
  will-change: transform
}

.k-btn--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-600));
  box-shadow: var(--glow-accent)
}

.k-btn--accent:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-600));
  box-shadow: 0 12px 28px -8px rgba(51, 167, 221, .68);
  transform: translateY(-2px)
}

.k-btn--outline:hover,
.k-btn--hero:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow)
}

.k-btn:active {
  transform: translateY(0) scale(.98)
}

/* category + product cards — smoother lift, richer transition */
.cat,
.pcard,
.ind,
.usp {
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease)
}

.usp:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent
}

.usp__ic {
  transition: background .3s var(--ease), color .3s var(--ease)
}

.usp:hover .usp__ic {
  background: var(--steel);
  color: #fff
}

/* product cards had NO hover — give them the same life as category cards */
.pcard {
  transition: transform .3s var(--ease), box-shadow .3s var(--ease)
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.pcard__img img {
  transition: transform .45s var(--ease)
}

.pcard:hover .pcard__img img {
  transform: scale(1.07)
}

/* flat grey caption → brand-navy gradient */
.pcard__cap {
  background: linear-gradient(135deg, var(--navy), var(--ink));
  transition: background .3s var(--ease)
}

.pcard:hover .pcard__cap {
  background: linear-gradient(135deg, var(--steel), var(--steel-600))
}

/* chips + std badges */
.chip {
  transition: transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease)
}

.chip:hover {
  transform: translateY(-2px)
}

/* FAQ — softer, interactive, highlighted when open */
.faq__item {
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease)
}

.faq__item:hover {
  border-color: #cfd9e0
}

.faq__item.open {
  border-color: var(--accent);
  box-shadow: 0 10px 30px -16px rgba(51, 167, 221, .45)
}

.faq__q {
  transition: color .2s var(--ease)
}

.faq__q:hover {
  color: var(--steel)
}

/* section separation on cards used inside forms/panels */
.cat,
.pcard,
.ind,
.usp,
.hero__panel {
  box-shadow: var(--shadow-sm)
}

/* floating action buttons — subtle pulse ring on the WhatsApp */
.floater {
  box-shadow: var(--shadow-lg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease)
}

.floater:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 16px 34px -12px rgba(10, 24, 38, .5)
}

/* header nav underline reveal */
.site-top.scrolled .nav__link {
  position: relative
}

.site-top.scrolled .nav__link::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .28rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease)
}

.site-top.scrolled .nav__link:hover::after,
.site-top.scrolled .nav__link.is-active::after {
  transform: scaleX(1)
}

/* hero card — deeper glass, gradient hairline */
.hero__card {
  background: linear-gradient(180deg, rgba(9, 14, 23, .48), rgba(9, 14, 23, .62));
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .7)
}

/* primary hero button gets the accent treatment on hover */
.k-btn--hero {
  transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease)
}

.k-btn--hero:hover {
  border-color: #fff;
  box-shadow: 0 12px 30px -10px rgba(255, 255, 255, .35)
}

/* CTA band — subtle depth + texture */
.cta {
  position: relative;
  overflow: hidden
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 100% 0%, rgba(51, 167, 221, .35), transparent 55%);
  pointer-events: none
}

.cta__in {
  position: relative;
  z-index: 1
}

/* stat numbers — accent underline flourish */
.stat__num {
  background: linear-gradient(180deg, #fff, #dbe7f0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

/* nicer scrollbar for product/category sliders is intentionally hidden;
   add smooth momentum only */
.pcat__track,
.cats-slider__track {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch
}

.grade {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease)
}

.grade:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-left-color: var(--accent)
}

.grade__ic {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: var(--steel);
  background: linear-gradient(145deg, var(--bg-steel), #e2ebf1);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease)
}

.grade:hover .grade__ic {
  background: linear-gradient(145deg, var(--accent), var(--steel));
  color: #fff;
  transform: rotate(-6deg) scale(1.06)
}

.grade__name {
  font-size: 1.12rem;
  margin-bottom: .18rem;
  letter-spacing: -.01em
}

.grade__use {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45
}

.indcard {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--ink);
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease)
}

.indcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 26, .05) 30%, rgba(10, 18, 26, .82) 100%);
  transition: background .35s var(--ease)
}

.indcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: inherit;
  transform: scale(1);
  transition: transform .6s var(--ease);
  z-index: -1
}

.indcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.indcard:hover::before {
  background: linear-gradient(180deg, rgba(29, 80, 119, .35) 0%, rgba(10, 18, 26, .88) 100%)
}

.indcard__name {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.25;
  padding: 20px 18px;
  width: 100%;
  border-left: 3px solid var(--accent);
  margin: 0 0 16px 18px;
  transition: border-color .35s var(--ease)
}

/* ==== About page ==== */
.about-intro {
  align-items: center
}

.about-intro__media {
  position: relative
}

.about-intro__media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  box-shadow: var(--shadow-lg)
}

.about-intro__badge {
  position: absolute;
  right: -18px;
  bottom: -22px;
  background: linear-gradient(135deg, var(--steel), var(--steel-600));
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  max-width: 210px;
  box-shadow: var(--shadow-lg)
}

.about-intro__badge-num {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1
}

.about-intro__badge-txt {
  display: block;
  margin-top: 4px;
  font-size: .88rem;
  color: #dceaf3
}

.about-intro__body .eyebrow {
  margin-bottom: .6rem
}

.about-intro__body .section__title {
  margin-top: 0
}

.about-intro__body p {
  color: var(--muted);
  margin-bottom: 1rem
}

.about-intro__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 1.4rem
}

/* value cards */
.values-grid {
  grid-template-columns: repeat(4, 1fr)
}

.value-card {
  text-align: center;
  padding-top: 30px
}

.value-card__ic {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--steel);
  background: linear-gradient(145deg, var(--bg-steel), #e2ebf1);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease)
}

.value-card:hover .value-card__ic {
  background: linear-gradient(145deg, var(--accent), var(--steel));
  color: #fff;
  transform: translateY(-3px)
}

.value-card h3 {
  font-size: 1.12rem;
  margin-bottom: .4rem
}

.value-card p {
  color: var(--muted);
  font-size: .94rem
}

/* testimonial */
.testimonial {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 40px 34px;
  box-shadow: var(--shadow);
  text-align: center
}

.testimonial__mark {
  color: var(--accent);
  font-size: 2rem;
  opacity: .6;
  margin-bottom: 14px
}

.testimonial blockquote {
  font-size: 1.22rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 24px
}

.testimonial figcaption {
  display: inline-flex;
  align-items: center;
  gap: 14px
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--steel))
}

.testimonial__who {
  text-align: left;
  line-height: 1.3
}

.testimonial__who strong {
  display: block;
  color: var(--ink)
}

.testimonial__who small {
  color: var(--muted);
  font-size: .84rem
}

/* ============================================================
   Product detail — refined presentation layer (2026)
   Pure-CSS uplift; applies across all product pages. Non-breaking.
   ============================================================ */

/* Media: framed showcase panel with depth + product float */
.prod-detail__media {
  position: relative;
  background: radial-gradient(120% 120% at 18% 8%, #fff 0%, var(--bg-steel) 58%, #e6edf2 100%);
  padding: 34px;
  min-height: 340px;
  overflow: hidden;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .75);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease)
}

.prod-detail__media::before {
  content: "";
  position: absolute;
  top: -42%;
  right: -30%;
  width: 72%;
  height: 82%;
  background: radial-gradient(circle, rgba(51, 167, 221, .16), transparent 70%);
  pointer-events: none
}

.prod-detail__media:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .75)
}

.prod-detail__media img {
  position: relative;
  width: auto;
  max-width: 100%;
  max-height: 300px;
  filter: drop-shadow(0 14px 24px rgba(10, 24, 38, .2));
  transition: transform .4s var(--ease)
}

.prod-detail__media:hover img {
  transform: scale(1.045)
}

/* Body heading gets an accent underline mark */
.prod-detail__body h2 {
  position: relative;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  padding-bottom: 14px
}

.prod-detail__body h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--steel))
}

/* Standards line reads as a highlighted callout, not stray text */
.cat-std {
  display: inline-block;
  background: linear-gradient(90deg, rgba(51, 167, 221, .1), rgba(29, 80, 119, .05));
  border: 1px solid rgba(51, 167, 221, .22);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--steel-600);
  line-height: 1.5
}

.prod-detail__body .cat-std {
  color: var(--steel-600)
}

/* Primary CTA carries a soft brand glow */
.prod-detail__cta .k-btn--primary {
  box-shadow: var(--glow-accent)
}

.prod-detail__cta .k-btn--primary:hover {
  box-shadow: 0 12px 28px -6px rgba(51, 167, 221, .6)
}

/* Spec table: framed, borderless rows, zebra + hover */
.prod-spec .tbl-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  /* Vertical clip keeps the square table corners inside the rounded wrapper;
     horizontal must stay scrollable or a nine-column composition table loses
     its right half on a phone. */
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: var(--shadow-sm)
}

.prod-spec th,
.prod-spec td {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 14px 18px
}

.prod-spec th {
  background: var(--bg-steel);
  color: var(--navy);
  border-right: 1px solid var(--line)
}

.prod-spec tbody tr {
  transition: background .15s ease
}

.prod-spec tbody tr:hover {
  background: rgba(51, 167, 221, .05)
}

.prod-spec tbody tr:last-child th,
.prod-spec tbody tr:last-child td {
  border-bottom: 0
}

.prod-spec td a {
  color: var(--steel);
  font-weight: 600
}

.prod-spec td a:hover {
  color: var(--accent);
  text-decoration: underline
}

/* Related cards: quiet image zoom + caption cue */
.prod-card__img img {
  transition: transform .4s var(--ease)
}

.prod-card:hover .prod-card__img img {
  transform: scale(1.06)
}

.prod-card:hover .prod-card__cap {
  color: var(--accent-600)
}

/* ==== Contact page ==== */
.contact-panel {
  background: linear-gradient(150deg, var(--navy), var(--steel));
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow)
}

.contact-panel .cat-block__head h2 {
  color: #fff
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: .95rem;
  color: #e2edf5;
  line-height: 1.6
}

.contact-list li:last-child {
  border-bottom: 0
}

.contact-list strong {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px
}

.contact-list a {
  color: #fff;
  word-break: break-word
}

.contact-list a:hover {
  color: var(--accent);
  text-decoration: underline
}

.contact-panel .prod-detail__cta .k-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .45)
}

.contact-panel .prod-detail__cta .k-btn--ghost:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow)
}

.contact-form .field-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px
}

.contact-form .field-label .req {
  color: #c0392b;
  margin-left: 2px
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-alt);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease)
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #90a1ad
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #cfd9e1
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(51, 167, 221, .18)
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px
}

.contact-form .k-btn--ghost {
  color: var(--steel);
  border-color: var(--steel)
}

.contact-form .k-btn--ghost:hover {
  background: var(--steel);
  color: #fff
}

.contact-form .k-btn[disabled] {
  opacity: .65;
  cursor: not-allowed;
  transform: none
}

.contact-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line)
}

.form-status {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted)
}

.form-note {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 12px
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.map-wrap iframe {
  display: block;
  width: 100%;
  border: 0
}


/* ===== Bootstrap bridge =====
   These blocks used to stretch because CSS grid made every track equal height.
   Inside a Bootstrap .col they have to opt in. */
.prod-grid>[class*="col"],
.blog-grid>[class*="col"],
.feature-grid>[class*="col"],
.grades>[class*="col"],
.inds-img>[class*="col"],
.usps>[class*="col"],
.gallery>[class*="col"] {
  display: flex
}

.prod-grid>[class*="col"]>*,
.blog-grid>[class*="col"]>*,
.feature-grid>[class*="col"]>*,
.grades>[class*="col"]>*,
.inds-img>[class*="col"]>*,
.usps>[class*="col"]>*,
.gallery>[class*="col"]>* {
  width: 100%
}

/* ==========================================================================
   AEO layer — answer-first blocks, Key Takeaways, dated pages, sticky contact
   and the tools/calculator UI. Added for the SEO/AEO master plan.
   ========================================================================== */

/* Answer-first passage — the 40-50 word block an answer engine lifts verbatim. */
.aeo-answer {
  max-width: 860px;
  margin: 0 auto 26px;
  padding: 22px 26px;
  background: var(--bg-steel);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
}

.aeo-answer__q {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem
}

.aeo-answer__a {
  margin: 0;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.72
}

/* Key Takeaways — each bullet must read as a standalone, quotable fact. */
.aeo-takeaways {
  max-width: 860px;
  margin: 0 auto 30px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm)
}

.aeo-takeaways__h {
  margin: 0 0 14px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em
}

.aeo-takeaways ul {
  margin: 0;
  padding-left: 20px
}

.aeo-takeaways li {
  margin-bottom: 9px;
  line-height: 1.66;
  color: var(--text)
}

.aeo-takeaways li:last-child {
  margin-bottom: 0
}

/* Publish / update stamp — answer engines drop undated pages. */
.aeo-dates {
  margin: 0 0 18px;
  font-size: .86rem;
  color: var(--muted)
}

/* Footer NAP — must render as one unbroken citation string. */
.footer__nap {
  line-height: 1.6
}

.footer__nap-name {
  display: block;
  font-weight: 700;
  color: #fff
}

/* Comparison / spec tables inside prose — the most-cited structure in AI answers. */
.aeo-table {
  width: 100%;
  margin: 0 0 24px;
  border-collapse: collapse;
  font-size: .96rem
}

.aeo-table th,
.aeo-table td {
  padding: 11px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top
}

.aeo-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  white-space: nowrap
}

.aeo-table tbody tr:nth-child(even) {
  background: var(--bg-alt)
}

.aeo-table caption {
  caption-side: bottom;
  padding-top: 10px;
  font-size: .84rem;
  color: var(--muted);
  text-align: left
}

/* ---- Tools & calculators ------------------------------------------------ */
.k-calc {
  max-width: 860px;
  margin: 0 auto 30px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm)
}

.k-calc__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px
}

.k-calc__field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.k-calc__field label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy)
}

.k-calc__field input,
.k-calc__field select {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #fff;
  color: var(--text)
}

.k-calc__field input:focus,
.k-calc__field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent)
}

.k-calc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px
}

.k-calc__out {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--bg-steel);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent)
}

.k-calc__out-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2
}

.k-calc__out-lbl {
  font-size: .88rem;
  color: var(--muted);
  margin-top: 4px
}

.k-calc__note {
  margin: 14px 0 0;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6
}

.k-calc__err {
  color: #c0392b;
  font-weight: 600
}

/* ---- Sticky mobile contact bar ----------------------------------------- */
.k-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
  background: var(--navy);
  box-shadow: 0 -4px 18px rgba(10, 24, 38, .22)
}

.k-sticky__btn {
  flex: 1;
  padding: 13px 6px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, .14)
}

.k-sticky__btn:last-child {
  border-right: 0
}

.k-sticky__btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08)
}

.k-sticky__btn--wa {
  background: #1faa53
}

.k-sticky__btn--wa:hover {
  background: #1c9a4b
}

.k-sticky__btn--quote {
  background: var(--accent)
}

.k-sticky__btn--quote:hover {
  background: var(--accent-600)
}

@media (max-width: 767.98px) {
  .k-sticky {
    display: flex
  }

  body {
    padding-bottom: 52px
  }

  .aeo-answer,
  .aeo-takeaways,
  .k-calc {
    padding-left: 18px;
    padding-right: 18px
  }
}


/* ==========================================================================
   SECTION LAYOUTS
   Tools / Standards / Industries / Locations / Resources each get a different
   page STRUCTURE — column width, section framing, where the number sits, and
   how takeaways, tables, FAQs and related links are arranged.

   The brand palette is deliberately unchanged: every rule below uses the
   existing --navy / --steel / --accent / --line / --bg-alt / --bg-steel
   tokens. Nothing here introduces a new colour.
   ========================================================================== */

/* ---- Hero scaffolding shared by all five layouts ------------------------ */
.page-hero__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px
}

.page-hero__text {
  min-width: 0;
  width: 100%
}

.page-hero__kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85
}

.page-hero__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 68px;
  padding: 0 14px;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 14px
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 32px;
  margin: 22px 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .18)
}

.page-hero__meta li {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.page-hero__meta-l {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .7
}

.page-hero__meta-v {
  font-size: .95rem;
  font-weight: 600
}

.sec-block__num {
  display: none;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--steel)
}

.theme-tools .sec-block__num,
.theme-standards .sec-block__num,
.theme-industries .sec-block__num,
.theme-locations .sec-block__num,
.theme-resources .sec-block__num {
  display: block
}

/* ==========================================================================
   TOOLS — console layout
   Narrow working column, each section framed as a panel with a corner tab,
   data tables running edge to edge, takeaways in two columns.
   ========================================================================== */

.page-hero--tools .page-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0
}

.page-hero--tools .page-hero__meta li {
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, .18)
}

.page-hero--tools .page-hero__meta li:first-child {
  padding-left: 0;
  border-left: 0
}

.page-hero--tools .page-hero__badge {
  border-radius: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace
}

/* Plain container — no panel or card framing. */
.theme-tools .sec-block>.container {
  max-width: 1040px
}

.theme-tools .sec-block__num {
  margin-bottom: 6px;
  color: var(--steel)
}

.theme-tools .tbl-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.theme-tools .aeo-table {
  margin-bottom: 0
}

.theme-tools .aeo-table th,
.theme-tools .aeo-table td {
  border-left: 0;
  border-right: 0
}

.theme-tools .aeo-table td {
  font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .92rem
}

.theme-tools .aeo-takeaways ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  padding-left: 18px
}

.theme-tools .aeo-answer,
.theme-tools .aeo-takeaways {
  max-width: 940px
}

.theme-tools .faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  align-items: start
}

.theme-tools .materials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.theme-tools .materials .chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
  text-align: center
}

/* ==========================================================================
   STANDARDS — spec-sheet layout
   Narrow measure, clause numbers hanging in the margin, numbered takeaways,
   boxed tables with the caption on top, references instead of pills.
   ========================================================================== */

.page-hero--standards .page-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 24px
}

.page-hero--standards .page-hero__badge {
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  height: auto;
  min-height: 68px;
  max-width: 190px;
  text-align: center;
  padding: 14px 16px
}

.theme-standards .sec-block>.container {
  max-width: 860px;
  padding-left: 76px
}

.theme-standards .sec-block__head {
  position: relative;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 10px;
  margin-bottom: 18px
}

.theme-standards .sec-block__num {
  position: absolute;
  left: -76px;
  top: 2px;
  width: 56px;
  padding: 6px 0;
  text-align: center;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-steel)
}

.theme-standards .sec-block__head h2 {
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.28rem
}

.theme-standards .cat-block__head .bar {
  display: none
}

.theme-standards .aeo-answer,
.theme-standards .aeo-takeaways {
  max-width: 860px
}

.theme-standards .aeo-takeaways ul {
  list-style: none;
  padding-left: 0;
  counter-reset: spec
}

.theme-standards .aeo-takeaways li {
  counter-increment: spec;
  position: relative;
  padding-left: 42px;
  margin-bottom: 12px
}

.theme-standards .aeo-takeaways li::before {
  content: counter(spec, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .8rem;
  font-weight: 700;
  color: var(--steel)
}

.theme-standards .aeo-table {
  border: 2px solid var(--navy)
}

.theme-standards .aeo-table caption {
  caption-side: top;
  padding: 0 0 10px;
  font-weight: 600
}

.theme-standards .faq__item {
  border-left: 3px solid var(--line);
  padding-left: 14px
}

.theme-standards .materials {
  display: block;
  max-width: 860px;
  margin: 0 auto;
  text-align: left
}

.theme-standards .materials .chip {
  display: inline;
  padding: 0;
  margin: 0 6px 0 0;
  background: none;
  border: 0;
  border-radius: 0;
  color: var(--steel);
  text-decoration: underline
}

.theme-standards .materials .chip::after {
  content: ' \00B7';
  color: var(--muted);
  text-decoration: none
}

.theme-standards .materials .chip:last-child::after {
  content: ''
}

/* ==========================================================================
   INDUSTRIES — editorial card layout
   Stacked hero, wide measure, centred headings, takeaways as a three-up card
   grid, FAQs as cards, related links as large tiles.
   ========================================================================== */

.page-hero--industries .page-hero__row {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px
}

.page-hero--industries .page-hero__badge {
  border-radius: 50%;
  width: 68px;
  min-width: 68px;
  padding: 0;
  font-size: 1.6rem
}

.theme-industries .sec-block>.container {
  max-width: 1080px
}

.theme-industries .sec-block__head {
  text-align: center
}

.theme-industries .sec-block__head .bar {
  margin-left: auto;
  margin-right: auto
}

.theme-industries .sec-block__num {
  letter-spacing: .18em
}

.theme-industries .sec-block__head h2 {
  font-size: 1.5rem
}

.theme-industries .sec-block .prose>p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
}

.theme-industries .aeo-takeaways {
  max-width: 1080px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0
}

.theme-industries .aeo-takeaways__h {
  text-align: center
}

.theme-industries .aeo-takeaways ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding-left: 0;
  counter-reset: ind
}

.theme-industries .aeo-takeaways li {
  counter-increment: ind;
  margin: 0;
  padding: 20px 20px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm)
}

.theme-industries .aeo-takeaways li::before {
  content: counter(ind);
  display: block;
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--bg-steel)
}

.theme-industries .aeo-answer {
  max-width: 1080px
}

.theme-industries .aeo-table th,
.theme-industries .aeo-table td {
  padding: 16px 18px
}

.theme-industries .aeo-table th[scope="row"] {
  width: 34%;
  color: var(--navy)
}

.theme-industries .faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start
}

.theme-industries .faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm)
}

.theme-industries .materials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.theme-industries .materials .chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  font-weight: 600
}

/* ==========================================================================
   LOCATIONS — route timeline layout
   Sections run down a connector line with a numbered stop marker, hero facts
   become a stat band, takeaways read as a dispatch checklist, related links
   form a dense location cloud.
   ========================================================================== */

.page-hero--locations .page-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px
}

.page-hero--locations .page-hero__meta-v {
  font-size: 1.05rem;
  font-weight: 700
}

.page-hero--locations .page-hero__badge {
  border-radius: 50% 50% 50% 6px;
  width: 68px;
  min-width: 68px;
  padding: 0;
  font-size: 1.5rem
}

.theme-locations .sec-block>.container {
  position: relative;
  max-width: 940px;
  padding-left: 62px
}

.theme-locations .sec-block>.container::before {
  content: '';
  position: absolute;
  left: 21px;
  top: -40px;
  bottom: -40px;
  width: 2px;
  background: var(--line)
}

.theme-locations .sec-block:last-of-type>.container::before {
  bottom: 50%
}

.theme-locations .sec-block__head {
  position: relative
}

.theme-locations .sec-block__num {
  position: absolute;
  left: -62px;
  top: -2px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--steel);
  border: 4px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line)
}

.theme-locations .sec-block.section--alt .sec-block__num {
  border-color: var(--bg-alt)
}

.theme-locations .cat-block__head .bar {
  display: none
}

.theme-locations .aeo-answer,
.theme-locations .aeo-takeaways {
  max-width: 940px
}

/* Export-market pages run every section at full container width instead of the
   940px reading column; the numbered timeline rail stays. */
.theme-locations .sec-block>.container.geo-wide {
  max-width: var(--container)
}

/* Export-market pages run the answer block, takeaways and the market intro at
   full container width instead of the 940px reading column. */
.theme-locations .geo-wide .aeo-answer,
.theme-locations .geo-wide .aeo-takeaways,
.theme-locations .geo-wide .prose {
  max-width: none
}

.theme-locations .geo-wide .aeo-takeaways ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px
}

@media (max-width: 767.98px) {
  .theme-locations .geo-wide .aeo-takeaways ul {
    grid-template-columns: 1fr
  }
}

.theme-locations .aeo-takeaways ul {
  list-style: none;
  padding-left: 0
}

.theme-locations .aeo-takeaways li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px
}

.theme-locations .aeo-takeaways li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--steel)
}

.theme-locations .aeo-table {
  border-left: 3px solid var(--steel)
}

.theme-locations .materials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start
}

.theme-locations .materials .chip {
  padding: 7px 13px;
  font-size: .88rem;
  border-radius: 999px
}

/* ==========================================================================
   RESOURCES — document layout
   One narrow column, no alternating bands, hairline rules between sections,
   larger reading type. Deliberately the quietest of the five.
   ========================================================================== */

.theme-resources .sec-block,
.theme-resources .sec-block.section--alt {
  background: #fff
}

.theme-resources .sec-block>.container {
  max-width: 760px;
  border-top: 1px solid var(--line);
  padding-top: 34px
}

.theme-resources .sec-block:first-of-type>.container {
  border-top: 0
}

.theme-resources .sec-block__head {
  margin-bottom: 14px
}

.theme-resources .cat-block__head .bar {
  display: none
}

.theme-resources .sec-block__num {
  display: inline-block;
  margin-right: 10px;
  color: var(--muted)
}

.theme-resources .sec-block .prose {
  font-size: 1.04rem;
  line-height: 1.78
}

.theme-resources .aeo-answer,
.theme-resources .aeo-takeaways {
  max-width: 760px
}

.theme-resources .aeo-takeaways {
  box-shadow: none;
  border-style: dashed
}

.theme-resources .faq {
  max-width: 760px;
  margin: 0 auto
}

.theme-resources .materials {
  max-width: 760px;
  margin: 0 auto;
  justify-content: flex-start
}

/* ---- Hub sub-headings inside link groups -------------------------------- */
.theme-tools .prose h3,
.theme-standards .prose h3,
.theme-industries .prose h3,
.theme-locations .prose h3,
.theme-resources .prose h3 {
  margin: 26px 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy)
}

.theme-tools .prose h3:first-child,
.theme-standards .prose h3:first-child,
.theme-industries .prose h3:first-child,
.theme-locations .prose h3:first-child,
.theme-resources .prose h3:first-child {
  margin-top: 0
}

/* ---- Responsive: every multi-column layout collapses to one ------------- */
@media (max-width: 991.98px) {

  .theme-tools .aeo-takeaways ul,
  .theme-tools .faq,
  .theme-tools .materials,
  .theme-industries .aeo-takeaways ul,
  .theme-industries .faq,
  .theme-industries .materials {
    grid-template-columns: 1fr
  }

  .page-hero--tools .page-hero__meta,
  .page-hero--standards .page-hero__meta,
  .page-hero--locations .page-hero__meta {
    grid-template-columns: 1fr 1fr
  }

  .page-hero--tools .page-hero__meta li {
    padding-left: 0;
    border-left: 0
  }
}

@media (max-width: 767.98px) {
  .page-hero__row {
    flex-direction: column;
    gap: 14px
  }

  .page-hero__badge {
    min-width: 56px;
    height: 56px;
    font-size: 1.25rem
  }

  .page-hero--standards .page-hero__badge {
    min-height: 56px;
    font-size: .9rem
  }

  .page-hero--tools .page-hero__meta,
  .page-hero--standards .page-hero__meta,
  .page-hero--locations .page-hero__meta {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .theme-tools .sec-block>.container {
    padding: 26px 18px 22px
  }

  .theme-tools .sec-block__num {
    left: 18px
  }

  .theme-tools .tbl-wrap {
    margin-left: -18px;
    margin-right: -18px
  }

  .theme-standards .sec-block>.container {
    padding-left: 15px
  }

  .theme-standards .sec-block__num {
    position: static;
    width: auto;
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px
  }

  .theme-locations .sec-block>.container {
    padding-left: 15px
  }

  .theme-locations .sec-block>.container::before {
    display: none
  }

  .theme-locations .sec-block__num {
    position: static;
    width: auto;
    height: auto;
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 999px;
    border-width: 0;
    box-shadow: none;
    margin-bottom: 8px
  }
}


/* ==========================================================================
   SPLIT LAYOUT — calculator pages
   Content runs 70% on the left, the calculator sits 30% on the right and
   stays sticky while the reader scrolls the explanation. Content is presented
   plainly inside the container: no card or panel framing.
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: 36px;
  align-items: start
}

/* Grid items default to min-width:auto, so a wide table inside a column can
   push its track past the viewport. Both columns opt out explicitly. */
.split__main,
.split__side {
  min-width: 0
}

/* Inner sections lose their own band padding and container width so they sit
   flush inside the grid column. */
.split__main>.section,
.split__side>.section {
  padding: 0;
  background: transparent
}

.split__main>.section.section--alt {
  background: transparent
}

.split__main .container,
.split__side .container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0
}

.split__main>.section+.section {
  margin-top: 38px
}

/* The calculator tracks the reader down the page. */
.split__side {
  position: sticky;
  top: 96px
}

.split__side .k-calc {
  margin: 0;
  max-width: none
}

/* A narrow column cannot hold a multi-column input grid. */
.split__side .k-calc__grid {
  grid-template-columns: 1fr
}

.split__side .k-calc__actions .k-btn {
  width: 100%
}

/* Takeaways read as content, not as a card. */
.aeo-takeaways {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin-bottom: 26px
}

.aeo-takeaways__h {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line)
}

.theme-industries .aeo-takeaways li,
.theme-tools .aeo-takeaways li {
  box-shadow: none
}

.theme-tools .aeo-takeaways ul {
  grid-template-columns: 1fr 1fr
}

/* Inside the narrower split column, dense grids relax. */
.split__main .aeo-takeaways ul {
  grid-template-columns: 1fr 1fr
}

.split__main .faq {
  grid-template-columns: 1fr
}

@media (max-width: 1199.98px) {
  .split {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 26px
  }
}

@media (max-width: 991.98px) {
  .split {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px
  }

  .split__side {
    position: static
  }

  .split__side .k-calc__grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr))
  }

  .split__main .aeo-takeaways ul {
    grid-template-columns: 1fr
  }
}
/* ==== Industries index — sector cards ==== */
.sector-grid>[class*="col"] {
  display: flex
}

.sector {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease)
}

.sector::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--steel));
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 2
}

.sector:hover {
  transform: translateY(-5px);
  border-color: rgba(51, 167, 221, .45);
  box-shadow: var(--shadow-lg)
}

.sector:hover::after {
  opacity: 1
}

.sector__media {
  position: relative;
  display: block;
  height: 170px;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  transition: filter .45s var(--ease)
}

.sector:hover .sector__media {
  filter: saturate(1.08)
}

.sector__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 38, .18) 0%, rgba(10, 24, 38, .62) 100%);
  transition: background .35s var(--ease)
}

.sector:hover .sector__media::before {
  background: linear-gradient(180deg, rgba(29, 80, 119, .3) 0%, rgba(10, 24, 38, .68) 100%)
}

.sector__ic {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  color: var(--steel);
  font-size: .98rem;
  backdrop-filter: blur(3px);
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease)
}

.sector:hover .sector__ic {
  background: linear-gradient(145deg, var(--accent), var(--steel));
  color: #fff;
  transform: rotate(-6deg)
}

.sector__no {
  position: absolute;
  right: 16px;
  bottom: 12px;
  z-index: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, .34);
  letter-spacing: -.02em;
  transition: color .35s var(--ease)
}

.sector:hover .sector__no {
  color: rgba(255, 255, 255, .58)
}

.sector__body {
  display: block;
  padding: 20px 22px 16px
}

.sector__name {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: var(--ink);
  transition: color .3s var(--ease)
}

.sector:hover .sector__name {
  color: var(--steel)
}

.sector__desc {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55
}

.sector__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: .85rem
}

.sector__tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--steel-600);
  background: var(--bg-steel);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap
}

.sector__go {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding: 13px 22px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .3s var(--ease), background .3s var(--ease)
}

.sector:hover .sector__go {
  color: var(--accent-600);
  background: var(--bg-alt)
}

.sector__go i {
  transition: transform .3s var(--ease)
}

.sector:hover .sector__go i {
  transform: translateX(5px)
}

.sector-assure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 46px;
  padding: 30px 32px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm)
}

.sector-assure__item {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.sector-assure__ic {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--bg-steel);
  color: var(--accent-600);
  font-size: .96rem
}

.sector-assure__title {
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: .22rem
}

.sector-assure__text {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.55;
  margin: 0
}

/* ==== Industry rail — sticky sector index (.split__side) ==== */
.ind-side__card,
.ind-side__cta {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm)
}

.ind-side__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line)
}

.ind-side__label {
  font-family: "Poppins", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel)
}

.ind-side__count {
  min-width: 26px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--bg-steel);
  color: var(--steel-600);
  font-size: .74rem;
  font-weight: 700;
  text-align: center
}

.ind-side__list {
  list-style: none;
  margin: 0;
  padding: 6px
}

.ind-side__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: .84rem;
  line-height: 1.35;
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease)
}

.ind-side__link>i:first-child {
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--bg-steel);
  color: var(--accent-600);
  font-size: .74rem;
  transition: background .25s var(--ease), color .25s var(--ease)
}

.ind-side__link>span {
  flex: 1 1 auto
}

.ind-side__arrow {
  flex: none;
  font-size: .76rem;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease)
}

.ind-side__link:hover {
  background: var(--bg-alt);
  color: var(--steel)
}

.ind-side__link:hover>i:first-child {
  background: linear-gradient(145deg, var(--accent), var(--steel));
  color: #fff
}

.ind-side__link:hover .ind-side__arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--accent-600)
}

.ind-side__hub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  color: var(--steel);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .25s var(--ease), color .25s var(--ease)
}

.ind-side__hub:hover {
  background: var(--bg-alt);
  color: var(--accent-600)
}

.ind-side__link.is-on,
.ind-side__link[aria-current="page"] {
  background: var(--bg-steel);
  color: var(--steel);
  font-weight: 600
}

.ind-side__link.is-on>i:first-child,
.ind-side__link[aria-current="page"]>i:first-child {
  background: linear-gradient(145deg, var(--accent), var(--steel));
  color: #fff
}

.ind-side__link.is-on .ind-side__arrow,
.ind-side__link[aria-current="page"] .ind-side__arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--steel)
}

.ind-side__cta {
  margin-top: 16px;
  padding: 20px 18px;
  background: linear-gradient(160deg, var(--navy), var(--steel));
  border-color: transparent;
  color: #fff
}

.ind-side__cta-title {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: .5rem
}

.ind-side__cta-text {
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
  margin: 0 0 14px
}

.ind-side__cta-btn {
  width: 100%;
  justify-content: center
}

.ind-side__cta-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .25s var(--ease), border-color .25s var(--ease)
}

.ind-side__cta-alt:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .55);
  color: #fff
}

@media (min-width: 992px) {
  .theme-industries .split__side {
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
    padding-right: 3px
  }

  .theme-industries .split__side::-webkit-scrollbar {
    width: 5px
  }

  .theme-industries .split__side::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 999px
  }

  .theme-industries .split__side::-webkit-scrollbar-track {
    background: transparent
  }
}
