:root {
  --ink: #101820;
  --muted: #5f6b75;
  --line: #d9e0e6;
  --paper: #f5f7f9;
  --white: #ffffff;
  --steel: #24313d;
  --red: #d71920;
  --red-dark: #a90e15;
  --max: 1180px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 clamp(20px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 3px solid transparent;
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 4px;
  font-size: 13px;
}

.main-nav .language-switcher a {
  min-height: 32px;
  padding: 0 5px;
}

.language-switcher a + a::before {
  content: "|";
  margin-right: 8px;
  color: var(--line);
}

.main-nav .language-switcher a.active {
  color: var(--red);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(720px, calc(100vw - 56px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(16, 24, 32, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.service-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(340px, calc(100vw - 56px));
  display: grid;
  gap: 8px;
  padding: 24px;
  color: var(--white);
  background: #151719;
  box-shadow: 0 28px 70px rgba(16, 24, 32, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.service-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.has-service-menu:hover .service-dropdown,
.has-service-menu:focus-within .service-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.main-nav .service-dropdown a {
  display: block;
  min-height: 0;
  padding: 4px 0;
  color: var(--white);
  background: transparent;
  border-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.main-nav .service-dropdown a:hover {
  color: #ff4a51;
  background: transparent;
}

.mega-menu div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px;
  background: #151719;
}

.mega-menu strong,
.main-nav .mega-menu .mega-heading {
  display: block;
  margin-top: 8px;
  color: #ff4a51;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mega-menu strong:first-child,
.main-nav .mega-menu .mega-heading:first-child {
  margin-top: 0;
}

.main-nav .mega-menu a {
  display: block;
  min-height: 0;
  padding: 4px 0;
  color: var(--white);
  border-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.main-nav .mega-menu a:hover {
  color: #ff4a51;
}

.nav-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  border-bottom: 0 !important;
}

.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--steel);
}

.hero-media,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  display: none;
}

.hero-content {
  position: relative;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(24px, 4vw, 36px);
  color: var(--white);
  background: rgba(7, 24, 36, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(9px) saturate(118%);
  -webkit-backdrop-filter: blur(9px) saturate(118%);
  transform: translateY(28vh);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow { color: #ff4a51; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  color: #dbe3e8;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 0;
}

.hero-actions .button {
  min-height: 60px;
  padding: 0 34px;
  font-size: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 800;
  border: 1px solid currentColor;
}

.button.primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button.secondary {
  color: var(--white);
  background: rgba(16, 24, 32, 0.32);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 98px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.split p {
  color: var(--muted);
  font-size: 18px;
}

.home-advantages {
  display: grid;
  gap: 38px;
}

.advantage-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
}

.advantage-intro h2 {
  margin-bottom: 0;
}

.advantage-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.advantage-grid article {
  min-height: 280px;
  display: grid;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
}

.advantage-grid span {
  margin-bottom: 44px;
  color: var(--red);
  font-weight: 900;
}

.advantage-grid p {
  color: var(--muted);
}

.home-product-showcase {
  display: grid;
  gap: clamp(34px, 5vw, 62px);
}

.showcase-heading {
  max-width: 760px;
}

.showcase-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 7vw, 88px);
}

.showcase-item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: center;
}

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

.showcase-item.reverse .showcase-image {
  order: 2;
}

.showcase-image {
  display: block;
  overflow: hidden;
  background: #e8edf0;
  aspect-ratio: 1.55 / 1;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.showcase-item:hover .showcase-image img {
  transform: scale(1.035);
}

.showcase-copy {
  padding-block: 8px;
  padding-left: clamp(34px, 5vw, 72px);
}

.showcase-item.reverse .showcase-copy {
  padding-right: clamp(34px, 5vw, 72px);
  padding-left: 0;
}

.showcase-copy::before {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-bottom: clamp(24px, 4vw, 46px);
  background: var(--red);
}

.showcase-copy span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-copy h3 {
  margin: 0 0 14px;
  color: #6d1d28;
  font-size: clamp(28px, 3.1vw, 44px);
  font-weight: 500;
  line-height: 1.04;
  text-transform: uppercase;
}

.showcase-copy p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.showcase-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-copy a::after {
  content: ">";
  transition: transform 0.2s ease;
}

.showcase-copy a:hover::after {
  transform: translateX(5px);
}

.home-product-groups {
  display: grid;
  gap: clamp(58px, 7vw, 86px);
}

.home-product-group {
  display: grid;
  gap: 26px;
}

.home-product-group-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.home-product-group-heading > span {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 30px;
  padding-top: 11px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  border-top: 2px solid var(--red);
}

.home-product-group-heading h3 {
  margin: 0 0 10px;
  color: #6d1d28;
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 500;
  line-height: 1.08;
  text-transform: uppercase;
}

.home-product-group-heading p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.home-product-group-heading a {
  margin-top: 4px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-product-group-heading a::after {
  content: " >";
}

.home-product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  align-items: stretch;
}

.home-product-card-grid.is-single-product {
  grid-template-columns: 1fr;
  max-width: 480px;
}

.home-featured-product-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, calc((100% - 48px) / 3)));
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  align-items: stretch;
}

.home-featured-product {
  display: grid;
  grid-template-rows: 220px 1fr;
  gap: 26px;
  min-width: 0;
}

.home-featured-product .home-product-group-heading {
  width: 100%;
  max-width: none;
}

.home-featured-product .home-product-group-heading h3 {
  font-size: clamp(20px, 1.75vw, 22px);
}

.home-featured-product .home-product-card,
.home-featured-product .home-product-card a {
  min-height: 100%;
}

.home-featured-product .home-product-card-body {
  min-height: 221px;
}

.home-featured-product .home-product-card-body strong {
  min-height: 2.5em;
  font-size: 17px;
}

.home-featured-product .home-product-card-body > span {
  min-height: 2.9em;
}

.home-product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5e8eb;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.09);
}

.home-product-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: var(--ink);
}

.home-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
  background: var(--steel);
}

.home-product-card-body {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 212px;
  padding: 22px 22px 24px;
  text-align: center;
}

.home-product-card-body strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.home-product-card-body span {
  color: #2f3e4c;
  font-size: 16px;
  line-height: 1.45;
}

.home-product-card-body em {
  align-self: end;
  justify-self: center;
  min-width: 150px;
  margin-top: auto;
  padding: 11px 22px;
  color: #2c91ff;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid #2c91ff;
  border-radius: 999px;
}

.home-product-card a:hover .home-product-card-body em {
  color: var(--white);
  background: #2c91ff;
}

.custom-line-section {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(0, 520px) minmax(0, 720px) minmax(20px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: var(--white);
  background: var(--steel);
}

.custom-line-copy {
  grid-column: 2;
}

.custom-line-copy .eyebrow {
  color: #ff4a51;
}

.custom-line-copy p:not(.eyebrow) {
  color: #dbe3e8;
  font-size: 18px;
}

.custom-line-copy .button {
  margin-top: 18px;
}

.custom-line-visual {
  grid-column: 3;
  display: grid;
  gap: 18px;
}

.custom-line-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.custom-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.custom-steps article {
  min-height: 132px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.custom-steps strong,
.custom-steps span {
  display: block;
}

.custom-steps strong {
  margin-bottom: 8px;
}

.custom-steps span {
  color: #c5d0d8;
  font-size: 14px;
}

.product-strip,
.catalog,
.service-grid,
.news-grid,
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.product-strip article,
.catalog article,
.service-grid article,
.news-grid article,
.metrics div,
.contact-card {
  min-height: 220px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
}

.product-icon {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--red);
  font-weight: 900;
}

.dark-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(0, 540px) minmax(0, 640px) minmax(20px, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  color: var(--white);
  background: var(--steel);
}

.dark-band > div:first-child { grid-column: 2; }
.dark-band > div:last-child { grid-column: 3; }
.dark-band .eyebrow { color: #ff4a51; }

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.2);
}

.workflow span {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(255,255,255,0.06);
  font-weight: 800;
}

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

.page-hero {
  position: relative;
  min-height: clamp(330px, 38vw, 500px);
  display: flex;
  align-items: center;
  padding: clamp(90px, 12vw, 150px) clamp(20px, 7vw, 90px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.58), rgba(16, 24, 32, 0.22)),
    url("assets/hero-industrial.png") center / cover;
}

.page-hero .eyebrow { color: #ff4a51; }
.page-hero h1 {
  max-width: 1040px;
  margin-bottom: 0;
  color: #f6f8fa;
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}

.page-hero-glass {
  width: min(1080px, 100%);
  padding: clamp(24px, 4vw, 40px);
  background: rgba(7, 24, 36, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(9px) saturate(118%);
  -webkit-backdrop-filter: blur(9px) saturate(118%);
}

.company-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: #d8e0e6;
  font-size: 19px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.service-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: #d8e0e6;
  font-size: 19px;
}

.service-overview {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.service-menu {
  position: sticky;
  top: 104px;
  display: grid;
  padding: 8px;
  background: #1d1d1d;
}

.service-menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  color: #f5b400;
  background: #3f3f3f;
  border-bottom: 2px solid #1d1d1d;
  font-size: 18px;
  font-weight: 700;
}

.service-menu a:hover {
  color: var(--white);
  background: var(--red);
}

.service-content {
  display: grid;
  gap: clamp(24px, 4vw, 38px);
}

.service-intro {
  max-width: 800px;
}

.service-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.service-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.service-panel {
  scroll-margin-top: 112px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  column-gap: clamp(24px, 4vw, 46px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid var(--line);
}

.service-panel span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-panel h2 {
  margin: 0 0 14px;
  color: #6d1d28;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  text-transform: uppercase;
}

.service-panel p,
.service-panel ul {
  grid-column: 2;
}

.service-panel p {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.service-panel ul {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  padding-left: 18px;
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-weight: 800;
}

.service-cta {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background: var(--steel);
}

.service-cta h2,
.service-cta p {
  margin: 0;
}

.service-cta p {
  color: #d3dde4;
}

.service-cta .button {
  width: fit-content;
}

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

.catalog a {
  color: var(--red);
  font-weight: 800;
}

.product-directory {
  display: grid;
  gap: 32px;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.12;
}

.directory-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--white);
  background: #151719;
  box-shadow: 0 24px 60px rgba(16, 24, 32, 0.12);
}

.directory-table th,
.directory-table td {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
  vertical-align: top;
}

.directory-table thead th {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #101316;
}

.directory-table tbody th {
  width: 42%;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.directory-table tbody td {
  font-size: 18px;
}

.directory-table a {
  color: var(--white);
  text-decoration: none;
}

.directory-table a:hover {
  color: #ff4a51;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.product-card-grid.is-single-product {
  grid-template-columns: 1fr;
  max-width: 480px;
}

.category-card,
.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5e8eb;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.09);
}

.category-card a,
.product-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: var(--ink);
}

.category-card img,
.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
  background: var(--steel);
}

.category-card-body,
.product-card-body {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 212px;
  padding: 22px 22px 24px;
  text-align: center;
}

.category-card-body strong,
.product-card-body strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.category-card-body span,
.product-card-body span {
  color: #2f3e4c;
  font-size: 16px;
  line-height: 1.45;
}

.category-card-body em,
.product-card-body em {
  align-self: end;
  justify-self: center;
  min-width: 150px;
  margin-top: auto;
  padding: 11px 22px;
  color: #2c91ff;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid #2c91ff;
  border-radius: 999px;
}

.product-card a::after {
  content: none;
}

.product-card:focus-within {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.category-card:hover em,
.product-card a:hover .product-card-body em {
  color: var(--white);
  background: #2c91ff;
}

.company-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.company-overview-copy h2 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.company-overview-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.company-overview-image {
  margin: 0;
  background: var(--steel);
  box-shadow: 0 22px 54px rgba(16, 24, 32, 0.12);
}

.company-overview-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.company-core-equipment {
  display: grid;
  gap: 34px;
}

.company-category-number {
  color: #ff4a51 !important;
  font-size: 14px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.company-snapshot {
  padding-bottom: 0;
}

.company-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.company-snapshot-grid article {
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.company-snapshot-grid strong {
  color: var(--red);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.company-snapshot-grid span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
}

.company-difference,
.company-group,
.company-mission {
  display: grid;
  gap: 34px;
}

.company-difference-grid,
.company-group-grid,
.company-mission-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.company-difference-grid {
  grid-template-columns: 1fr;
}

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

.company-group-grid article,
.company-mission-grid article {
  min-height: 210px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
}

.company-group-grid h3 {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
}

.company-group-grid p {
  color: var(--muted);
  font-size: 17px;
}

.company-mission .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.company-mission-grid article {
  min-height: 150px;
  border-left: 5px solid var(--red);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.company-factory-issues article {
  min-height: 150px;
}

.product-category {
  display: grid;
  gap: 42px;
}

.category-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.category-intro p:not(.eyebrow) {
  max-width: 840px;
  color: var(--muted);
  font-size: 18px;
}

.product-card h3 {
  margin: 0;
  color: var(--ink);
}

.product-detail {
  width: min(1360px, calc(100% - clamp(120px, 12vw, 220px)));
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: start;
}

.product-copy h2 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.14;
}

.product-copy .lead {
  color: #6f777d;
  font-size: 18px;
  font-weight: 500;
}

.product-copy p {
  color: #757d83;
  font-size: 17px;
}

.product-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.product-points li {
  padding-left: 20px;
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-weight: 600;
}

.product-quote-button {
  margin-top: 30px;
}

.product-gallery {
  display: grid;
  gap: 8px;
}

.product-specifications {
  width: min(1360px, calc(100% - clamp(120px, 12vw, 220px)));
  padding-top: 0;
}

.product-specifications h2 {
  margin: 0 0 24px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.14;
}

.product-spec-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #cfd6dc;
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.product-spec-table {
  width: 100%;
  min-width: 1120px;
  table-layout: fixed;
  border-collapse: collapse;
}

.product-spec-table th,
.product-spec-table td {
  width: 12.5%;
  padding: 18px 14px;
  border-right: 1px solid #cfd6dc;
  text-align: center;
  vertical-align: middle;
}

.product-spec-table th:last-child,
.product-spec-table td:last-child {
  border-right: 0;
}

.product-spec-table th {
  color: var(--white);
  background: var(--steel);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.product-spec-table td {
  height: 62px;
  border-top: 1px solid #cfd6dc;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.company-support {
  display: grid;
  gap: 34px;
}

.company-support .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.company-support-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.company-support-grid .service-panel {
  background: var(--white);
}

.company-capability-table {
  min-width: 760px;
}

.company-capability-table th,
.company-capability-table td {
  width: auto;
  padding: 20px 24px;
  text-align: left;
}

.company-capability-table th {
  width: 28%;
}

.company-capability-table td {
  color: #4f5963;
  font-weight: 700;
}

.company-contact-cta {
  padding-top: 0;
}

.company-contact-cta .contact-card {
  display: grid;
  gap: 16px;
  min-height: 0;
  background: var(--paper);
}

.company-contact-cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
}

.company-contact-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.company-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.company-contact-actions .button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  background: var(--steel);
}

.gallery-slide {
  display: none;
}

.gallery-slide.is-active {
  display: block;
}

.gallery-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-control {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 16px rgba(6, 17, 27, 0.24);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  font-size: 0;
  font-weight: 900;
  transform: translateY(-50%);
  cursor: pointer;
}

.gallery-control::before {
  content: "";
  width: 9px;
  height: 9px;
  border: solid rgba(255, 255, 255, 0.92);
  border-width: 0 2px 2px 0;
}

.gallery-control.prev::before {
  transform: translateX(2px) rotate(135deg);
}

.gallery-control.next::before {
  transform: translateX(-2px) rotate(-45deg);
}

.gallery-control:hover {
  background: rgba(255, 255, 255, 0.4);
}

.gallery-control.prev {
  left: 14px;
}

.gallery-control.next {
  right: 14px;
}

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

.gallery-thumb {
  padding: 0;
  border: 3px solid transparent;
  background: transparent;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--red);
}

.gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.solution-list {
  display: grid;
  gap: 22px;
}

.solution-list article {
  display: grid;
  grid-template-columns: 180px minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.solution-list span {
  color: var(--red);
  font-weight: 900;
}

.metrics div {
  display: grid;
  align-content: center;
}

.metrics strong {
  display: block;
  color: var(--red);
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1;
}

.metrics span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  font: inherit;
}

.contact-form textarea { resize: vertical; }

.contact-card {
  background: var(--paper);
}

.contact-card a {
  display: block;
  margin-top: 12px;
  color: var(--red);
  font-weight: 800;
}

.site-footer {
  padding: 58px clamp(20px, 4vw, 54px) 28px;
  color: var(--white);
  background: #0d1319;
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 0.8fr;
  gap: clamp(30px, 6vw, 82px);
}

.footer-grid h2 {
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-grid p {
  color: #b9c3ca;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: #dce4ea;
}

.footer-grid a:hover { color: #ff4a51; }

.footer-note {
  width: min(var(--max), 100%);
  margin: 42px auto 0;
  padding-top: 22px;
  color: #89959e;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 13px;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .product-detail {
    width: min(var(--max), calc(100% - 40px));
  }

  .product-specifications {
    width: min(var(--max), calc(100% - 40px));
  }

  .product-spec-table {
    min-width: 960px;
  }

  .brand { min-width: 0; }
  .brand small { display: none; }

  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 18px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: grid;
    gap: 6px;
  }

  .main-nav a {
    min-height: 46px;
    border-bottom: 1px solid var(--line);
  }

  .nav-item {
    display: grid;
    min-height: 0;
  }

  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    background: #151719;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .service-dropdown {
    position: static;
    width: 100%;
    padding: 0;
    background: #151719;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .service-dropdown::before {
    display: none;
  }

  .main-nav .service-dropdown a {
    min-height: 0;
    padding: 6px 18px;
    color: var(--white);
    background: #151719;
    border-bottom: 0;
  }

  .mega-menu::before {
    display: none;
  }

  .mega-menu div {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav .mega-menu a {
    min-height: 0;
    padding: 6px 0;
    border-bottom: 0;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .language-switcher {
    justify-content: center;
    padding: 8px 0 0;
  }

  .main-nav .language-switcher a {
    min-height: 38px;
    border-bottom: 0;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 24px;
  }

  h1 { font-size: clamp(34px, 9vw, 48px); }

  .page-hero {
    min-height: 300px;
    padding: 68px 20px;
  }

  .page-hero-glass {
    padding: 24px;
  }

  .page-hero h1 {
    font-size: clamp(29px, 7vw, 38px) !important;
  }

  .split,
  .advantage-intro,
  .product-detail,
  .company-overview,
  .contact-layout,
  .solution-list article,
  .service-overview,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-strip,
  .advantage-grid,
  .showcase-grid,
  .catalog,
  .category-grid,
  .product-card-grid,
  .service-grid,
  .news-grid,
  .metrics,
  .company-snapshot-grid,
  .company-group-grid,
  .company-mission-grid {
    grid-template-columns: 1fr;
  }

  .home-featured-product-row {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .home-featured-product {
    grid-template-rows: auto 1fr;
  }

  .category-grid,
  .product-card-grid {
    max-width: 520px;
  }

  .showcase-item,
  .showcase-item.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .showcase-item.reverse .showcase-image {
    order: 0;
  }

  .showcase-copy,
  .showcase-item.reverse .showcase-copy {
    padding-right: 0;
    padding-left: 0;
  }

  .showcase-copy h3 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .home-product-group-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: center;
  }

  .home-product-group-heading > span {
    place-items: center;
    width: auto;
    height: auto;
    padding-top: 14px;
  }

  .home-product-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .home-product-card-body {
    min-height: 0;
    padding: 16px;
    text-align: center;
  }

  .home-product-card-body strong {
    font-size: 16px;
  }

  .home-product-card-body span {
    font-size: 13px;
    line-height: 1.45;
  }

  .home-product-card-body em {
    justify-self: center;
    min-width: 0;
    padding: 9px 14px;
    font-size: 11px;
  }

  .service-menu {
    position: static;
    top: auto;
  }

  .service-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-panel p,
  .service-panel ul {
    grid-column: auto;
  }

  .custom-line-section {
    grid-template-columns: 20px 1fr 20px;
  }

  .custom-line-copy,
  .custom-line-visual {
    grid-column: 2;
  }

  .category-intro {
    grid-template-columns: 1fr;
  }

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

  .directory-table,
  .directory-table thead,
  .directory-table tbody,
  .directory-table tr,
  .directory-table th,
  .directory-table td {
    display: block;
    width: 100%;
  }

  .directory-table thead {
    display: none;
  }

  .directory-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .directory-table th,
  .directory-table td {
    padding: 16px 20px;
    border-bottom: 0;
  }

  .directory-table tbody th {
    width: 100%;
    padding-bottom: 4px;
    color: #ff4a51;
    font-size: 16px;
  }

  .directory-table tbody td {
    padding-top: 10px;
    font-size: 17px;
  }

  .dark-band {
    grid-template-columns: 20px 1fr 20px;
  }

  .dark-band > div:first-child,
  .dark-band > div:last-child {
    grid-column: 2;
  }

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

@media (max-width: 640px) {
  h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .page-hero h1 {
    font-size: clamp(27px, 9vw, 34px) !important;
  }

  .hero-content,
  .page-hero-glass {
    padding: 20px;
    border-radius: 6px;
  }

  .home-product-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 360px;
  }

  .home-featured-product-row {
    max-width: 360px;
  }

  .gallery-control {
    width: 34px;
    height: 34px;
  }

  .gallery-control.prev {
    left: 8px;
  }

  .gallery-control.next {
    right: 8px;
  }

  .home-product-card-body {
    padding: 22px;
  }

  .home-product-card-body strong {
    font-size: 20px;
  }

  .home-product-card-body span {
    font-size: 16px;
  }

  .home-product-card-body em {
    min-width: 150px;
    padding: 11px 20px;
    font-size: 13px;
  }
}

@media (max-width: 460px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .service-cta .button {
    width: 100%;
  }

  .workflow {
    grid-template-columns: 1fr;
  }

  .custom-steps {
    grid-template-columns: 1fr;
  }
}

/* Blog archive and article system */
.blog-hero {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-hero h1 {
  max-width: 980px;
}

.blog-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #d8e0e6;
  font-size: 19px;
}

.blog-category-nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.blog-category-nav a {
  padding: 9px 14px;
  color: #394754;
  background: #f2f5f7;
  border: 1px solid #e0e6ea;
  font-size: 14px;
  font-weight: 800;
}

.blog-category-nav a:hover,
.blog-category-nav a.is-current {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.blog-featured-section {
  padding-bottom: 28px;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  background: #0d151d;
  color: var(--white);
  overflow: hidden;
}

.blog-featured-image {
  min-height: 470px;
  background: #17232d;
}

.blog-featured-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.blog-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(32px, 5vw, 68px);
}

.blog-featured-copy .eyebrow {
  color: #ff4a51;
}

.blog-featured-copy h2 {
  margin: 20px 0;
  font-size: clamp(30px, 4vw, 48px);
}

.blog-featured-copy h2 a:hover {
  color: #ff4a51;
}

.blog-featured-copy > p:not(.eyebrow) {
  color: #c6d0d8;
  font-size: 17px;
}

.blog-featured-copy .button {
  margin-top: 12px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #71808d;
  font-size: 13px;
  font-weight: 700;
}

.blog-featured .blog-meta,
.article-hero .blog-meta {
  color: #d2dbe2;
}

.blog-meta a {
  color: var(--red);
  font-weight: 800;
}

.blog-archive-section,
.home-blog-section,
.article-related {
  display: grid;
  gap: 36px;
}

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

.blog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(16, 24, 32, 0.12);
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e7ecef;
}

.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.025);
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.blog-card h2 {
  margin: 16px 0 14px;
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.15;
}

.blog-card h2 a:hover {
  color: var(--red);
}

.blog-card-body > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 16px;
}

.blog-read-more {
  margin-top: auto;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-empty {
  padding: 32px;
  color: var(--muted);
  background: var(--paper);
  border-left: 4px solid var(--red);
}

.blog-pagination .page-numbers {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.blog-pagination a,
.blog-pagination span {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  font-weight: 800;
}

.blog-pagination .current,
.blog-pagination a:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.blog-cta {
  width: min(var(--max), calc(100% - 40px));
  margin-bottom: clamp(58px, 8vw, 98px);
  padding: clamp(34px, 5vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  color: var(--white);
  background: #0d151d;
}

.blog-cta h2 {
  margin-bottom: 14px;
}

.blog-cta p {
  max-width: 760px;
  margin-bottom: 0;
  color: #c2ccd4;
}

.home-blog-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.home-blog-heading h2 {
  max-width: 760px;
  margin: 0;
}

.home-blog-heading > a {
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 900;
}

.article-hero {
  min-height: 530px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(58px, 8vw, 96px);
}

.article-hero-inner {
  width: min(var(--max), 100%);
}

.article-hero h1 {
  max-width: 1050px;
  margin: 22px 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: #c8d2d9;
  font-size: 14px;
  font-weight: 700;
}

.article-breadcrumb a:hover {
  color: #ff4a51;
}

.article-author {
  margin: 0;
  color: #d3dce3;
  font-size: 15px;
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 340px);
  justify-content: space-between;
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.article-content {
  min-width: 0;
  color: #263540;
  font-size: 18px;
  line-height: 1.78;
}

.article-lead {
  margin-bottom: 34px;
  padding-left: 22px;
  color: var(--ink);
  border-left: 4px solid var(--red);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.article-content h2 {
  margin: 58px 0 22px;
  scroll-margin-top: 110px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.article-content h3 {
  margin: 38px 0 16px;
  color: var(--ink);
  font-size: 26px;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content figure,
.article-content table,
.article-content blockquote {
  margin-bottom: 26px;
}

.article-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content img {
  max-width: 100%;
  height: auto;
}

.article-content figure {
  margin-left: 0;
  margin-right: 0;
}

.article-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.article-content th,
.article-content td {
  padding: 13px 15px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  background: #eef2f5;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 24px;
}

.article-toc,
.article-product {
  padding: 26px;
  background: var(--paper);
  border-top: 4px solid var(--red);
}

.article-toc > strong {
  display: block;
  margin-bottom: 15px;
  font-size: 19px;
}

.article-toc ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.article-toc a:hover {
  color: var(--red);
}

.article-product h2 {
  margin: 12px 0 14px;
  font-size: 28px;
}

.article-product p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}

.article-product .button {
  width: 100%;
  margin-top: 8px;
}

.article-faq {
  margin-top: 58px;
  padding-top: 1px;
}

.article-faq details {
  border-top: 1px solid var(--line);
}

.article-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.article-faq summary {
  padding: 20px 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.article-faq details p {
  padding-bottom: 18px;
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-image,
  .blog-featured-image img {
    min-height: 360px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .blog-hero,
  .article-hero {
    min-height: 390px;
  }

  .blog-grid,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-featured-image,
  .blog-featured-image img {
    min-height: 260px;
  }

  .blog-featured-copy {
    padding: 30px 24px;
  }

  .blog-cta {
    grid-template-columns: 1fr;
  }

  .home-blog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-content {
    font-size: 17px;
  }

  .article-hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }
}

/* v0.10.9: keep Blog in the same visual system as product cards and details. */
.blog-featured-section {
  display: none;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}

.blog-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e5e8eb;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.09);
  transform: none;
}

.blog-card:hover {
  transform: none;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.09);
}

.blog-card > a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: var(--ink);
}

.blog-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 2.7;
  overflow: hidden;
  background: var(--steel);
}

.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.blog-card:hover .blog-card-image img {
  transform: none;
}

.blog-card-body {
  display: grid;
  min-height: 270px;
  align-content: start;
  align-items: initial;
  gap: 14px;
  padding: 22px 22px 24px;
  text-align: center;
}

.blog-card-body strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  color: #6b7782;
  font-size: 13px;
  font-weight: 700;
}

.blog-card-meta b,
.blog-featured-label {
  color: var(--red);
  font-weight: 900;
}

.blog-featured-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-excerpt {
  color: #2f3e4c;
  font-size: 16px;
  line-height: 1.45;
}

.blog-card-body em {
  align-self: end;
  justify-self: center;
  min-width: 150px;
  margin-top: auto;
}

.article-hero {
  display: block;
  min-height: auto;
  padding-bottom: clamp(90px, 12vw, 150px);
}

.article-product-detail {
  padding-bottom: clamp(40px, 6vw, 72px);
}

.article-intro .blog-meta {
  margin: 14px 0 24px;
  color: #6f777d;
}

.article-intro .product-points a {
  color: var(--ink);
}

.article-intro .product-points a:hover {
  color: var(--red);
}

.article-gallery .gallery-stage {
  background: #eef2f5;
}

.article-layout {
  width: min(1360px, calc(100% - clamp(120px, 12vw, 220px)));
  padding-top: clamp(40px, 6vw, 72px);
}

.article-related .section-heading {
  max-width: 1060px;
  margin-right: auto;
  margin-left: auto;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
  padding-bottom: 0;
}

.home-intro h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.home-intro-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    width: min(var(--max), calc(100% - 40px));
  }
}

@media (max-width: 720px) {
  .blog-grid,
  .home-intro {
    grid-template-columns: 1fr;
  }

  .article-hero {
    min-height: auto;
  }

  .article-product-detail {
    width: min(var(--max), calc(100% - 40px));
  }
}

/* v0.11.0: quieter, balanced headings and translucent image-hero panels. */
.home-intro h1,
.company-overview-copy h2,
.showcase-copy h3,
.blog-featured-copy h2,
.home-blog-heading h2,
.article-hero h1 {
  font-weight: 600;
  line-height: 1.1;
  text-wrap: balance;
}

.home-intro h1 {
  font-size: clamp(34px, 4vw, 48px);
}

.company-overview-copy h2,
.blog-featured-copy h2,
.home-blog-heading h2 {
  font-size: clamp(28px, 3.5vw, 40px);
}

.showcase-copy h3 {
  font-size: clamp(27px, 3.2vw, 38px);
  text-transform: none;
}

.home-product-group-heading h3 {
  text-transform: none;
}

.home-featured-product .home-product-group-heading h3 {
  display: grid;
  place-items: center;
  min-height: 2.3em;
  font-size: clamp(20px, 1.75vw, 22px);
  font-weight: 500;
  line-height: 1.15;
  text-wrap: balance;
}

.home-featured-product .home-product-group-heading p {
  min-height: 4.35em;
  font-size: 14px;
  line-height: 1.45;
}

.blog-card h2 {
  font-weight: 600;
}

.article-hero h1 {
  max-width: 1000px;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.08;
}

@media (max-width: 820px) {
  .home-intro h1,
  .article-hero h1 {
    font-size: clamp(30px, 8vw, 40px) !important;
  }
}

@media (max-width: 640px) {
  .home-intro h1,
  .article-hero h1 {
    font-size: clamp(27px, 9vw, 34px) !important;
  }
}
