:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3f9;
  --ink: #162131;
  --muted: #5a6a7f;
  --line: #d5deea;
  --brand: #0f4c81;
  --brand-strong: #0c3d67;
  --ok: #1e7b65;
  --shadow: 0 10px 30px rgba(10, 26, 45, 0.08);
  --font-body: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 80% -20%, #dce8f6 0%, transparent 35%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
}

body {
  line-height: 1.55;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 247, 251, 0.98);
  backdrop-filter: blur(10px);
}

.utility-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 3vw;
  background: #0f2f4f;
  color: #d8e6f6;
  font-size: 0.76rem;
}

.utility-links,
.utility-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.utility-links a,
.utility-actions a {
  color: #d8e6f6;
  text-decoration: none;
}

.utility-links a:hover,
.utility-actions a:hover {
  color: #fff;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 3vw;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  min-width: 0;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--brand) 0%, #2671b2 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.brand-logo {
  display: block;
  width: 142px;
  height: auto;
  flex: 0 0 auto;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-text small {
  font-size: 0.68rem;
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.2rem);
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
  min-width: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #233146;
  font-weight: 600;
  font-size: clamp(0.86rem, 0.9vw, 0.95rem);
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.26rem;
  height: 2px;
  background: transparent;
  border-radius: 2px;
}

nav a:hover,
nav a.nav-current {
  color: var(--brand);
}

nav a.nav-current::after {
  background: var(--brand);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  cursor: pointer;
  color: #233146;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav-dropdown-summary::after {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.75;
}

.nav-dropdown-summary:hover,
.nav-dropdown.nav-current .nav-dropdown-summary,
.nav-dropdown[open] .nav-dropdown-summary {
  color: var(--brand);
}

.nav-dropdown.nav-current .nav-dropdown-summary-label {
  position: relative;
}

.nav-dropdown.nav-current .nav-dropdown-summary-label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.26rem;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}

.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  min-width: 280px;
  padding: 0.55rem;
  border: 1px solid #d8e3ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(16, 35, 57, 0.12);
  transform: translateX(-50%);
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown[open] .nav-dropdown-panel {
  display: grid;
  gap: 0.22rem;
}

.nav-dropdown-panel a {
  display: block;
  padding: 0.78rem 0.92rem;
  border-radius: 12px;
  text-decoration: none;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a.nav-current {
  background: #f2f7fd;
}

.nav-store-mega {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-store-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-store-trigger::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.9rem;
  height: 3px;
  background: transparent;
}

.nav-store-panel {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100vw - 24px);
  max-width: 1760px;
  z-index: 70;
}

.nav-store-mega.open .nav-store-panel,
.nav-store-mega:hover .nav-store-panel {
  display: block;
}

.nav-store-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2.25rem;
  padding: 1.6rem 1.75rem;
  border: 1px solid #dce5f0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 50px rgba(16, 35, 57, 0.12);
  backdrop-filter: blur(10px);
}

.nav-store-sidebar {
  padding-right: 1rem;
  border-right: 1px solid #e8eef6;
}

.nav-store-sidebar-title {
  margin-bottom: 0.9rem;
  color: #617286;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-store-system-list {
  display: grid;
  gap: 0.5rem;
}

.nav-store-system-block {
  display: grid;
  gap: 0.28rem;
}

.nav-store-system {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: #213349;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  padding: 0.85rem 2.1rem 0.85rem 0.95rem;
  cursor: pointer;
  position: relative;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.nav-store-system::after {
  content: "+";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64778d;
  font-size: 1rem;
  line-height: 1;
}

.nav-store-system-block.active .nav-store-system::after {
  content: "-";
}

.nav-store-system:hover,
.nav-store-system.active {
  background: #f3f8ff;
  border-color: #d7e5f5;
  color: var(--brand);
}

.nav-store-group-list {
  display: none;
  gap: 0.18rem;
  padding-left: 0.85rem;
}

.nav-store-system-block.active .nav-store-group-list {
  display: grid;
}

.nav-store-group-link {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: #495b70;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  text-align: left;
  padding: 0.58rem 0.8rem 0.58rem 1rem;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease;
}

.nav-store-group-link:hover,
.nav-store-group-link.active {
  background: #f1f4f8;
  color: #132b44;
}

.nav-store-content {
  min-width: 0;
}

.nav-store-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-store-content-title,
.nav-store-group-title {
  color: #1d2f43;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-store-group-more {
  color: #486886;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-store-sections {
  display: grid;
  gap: 1.35rem;
}

.nav-store-group {
  display: grid;
  gap: 0.8rem;
}

.nav-store-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.nav-store-card {
  display: grid;
  gap: 0.7rem;
  min-width: 0;
  padding: 0.95rem;
  border: 1px solid #e5ecf4;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  text-decoration: none;
  color: #24364b;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.nav-store-card:hover {
  transform: translateY(-2px);
  border-color: #c9d9eb;
  box-shadow: 0 14px 28px rgba(24, 45, 71, 0.08);
}

.nav-store-card-media {
  height: 150px;
  border-radius: 14px;
  background: #f3f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-store-card-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.nav-store-card-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #dfeaf6;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav-store-card-title {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
}

.nav-store-card-meta {
  display: block;
  color: #6a7a8d;
  font-size: 0.8rem;
  line-height: 1.35;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid #b8c8da;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  flex: 0 0 auto;
}

.lang-switch button {
  border: none;
  background: transparent;
  color: #223247;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.34rem 0.7rem;
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--brand);
  color: #fff;
}

.nav-search {
  display: inline-flex;
  align-items: center;
  border: 1px solid #b8c8da;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  flex: 0 0 auto;
}

.nav-search input {
  border: none;
  outline: none;
  background: transparent;
  padding: 0.34rem 0.68rem;
  width: 160px;
  font: inherit;
  font-size: 0.82rem;
  color: #233146;
}

.nav-search button {
  border: none;
  border-left: 1px solid #d3deeb;
  background: #f7fbff;
  color: #244463;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.34rem 0.62rem;
  cursor: pointer;
}

.nav-search button:hover {
  background: #ecf4ff;
}

.product-strip {
  display: none;
  align-items: center;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.58rem 6vw;
  background: #f8fbff;
  border-bottom: 1px solid var(--line);
}

.product-strip a {
  flex: 0 0 auto;
  text-decoration: none;
  color: #2e4866;
  border: 1px solid #c8d6e6;
  background: #fff;
  border-radius: 999px;
  padding: 0.29rem 0.74rem;
  font-size: 0.78rem;
}

.product-strip a:hover {
  border-color: #90afd0;
  color: #1e3d5f;
}

.product-strip {
  scrollbar-width: none;
}

.product-strip::-webkit-scrollbar {
  display: none;
}

main {
  width: min(1380px, 94vw);
  margin: 1.5rem auto 4rem;
}

.hero {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, #ffffff 0%, #f2f7fd 100%);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
  aspect-ratio: 16 / 7.8;
  overflow: hidden;
  background: #0d1724;
  color: #fff;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  max-width: 620px;
}

.hero-banner-no-copy .hero-copy {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-banner-bg,
.hero-banner-overlay {
  position: absolute;
  inset: 0;
}

.hero-banner-bg {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  transform: scale(1.02);
  transition: opacity 0.8s ease;
}

.hero-banner-show-full .hero-banner-bg {
  background-position: center center;
  background-size: contain;
  transform: none;
}

.hero-banner-show-full .hero-banner-bg::after,
.hero-banner-show-full .hero-banner-overlay {
  opacity: 0;
}

.hero-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 17, 30, 0.82) 0%, rgba(8, 17, 30, 0.58) 34%, rgba(8, 17, 30, 0.18) 100%);
}

.hero-banner-overlay {
  background:
    radial-gradient(circle at 15% 20%, rgba(74, 124, 180, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  z-index: 1;
  transition: opacity 0.5s ease;
}

.hero-banner .eyebrow,
.hero-banner .lead,
.hero-banner h1 {
  color: #fff;
}

.hero-banner .lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-banner .btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-banner-dots {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.hero-banner-dot {
  width: 10px;
  height: 10px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.hero-banner-dot.is-active {
  width: 28px;
  background: #fff;
}

.hero-banner-help {
  position: relative;
  z-index: 2;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.eyebrow {
  margin: 0;
  color: var(--brand);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  font-weight: 700;
}

h1 {
  margin: 0.45rem 0 0.9rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 0.72rem;
  margin-top: 1.35rem;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  padding: 0.66rem 1.12rem;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-ghost {
  color: #24405f;
  border-color: #98b3d0;
  background: #fff;
}

.btn-ghost:hover {
  background: #f0f6fd;
}

.btn-sm {
  padding: 0.5rem 0.88rem;
  font-size: 0.88rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  margin: 1rem 0 1.8rem;
  align-items: stretch;
}

.stats article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.stats article:hover {
  transform: translateY(-4px);
  border-color: #7ea5cf;
  box-shadow: 0 18px 36px rgba(16, 35, 57, 0.12);
}

.stats-label {
  margin: 0 0 0.42rem;
  color: #7a8ba0;
  font-size: 14px;
  font-weight: 600;
}

.stats h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2vw, 2rem);
}

.stats-copy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.stats-note {
  grid-column: 1 / -1;
  margin: 0.1rem 0 0;
  text-align: center;
  color: #65778d;
  font-size: 0.94rem;
}

.featured-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.featured-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.2rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.featured-product-card:hover {
  transform: translateY(-6px);
  border-color: #7ea5cf;
  box-shadow: 0 20px 38px rgba(16, 35, 57, 0.14);
}

.featured-product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.featured-product-badge-hot {
  background: rgba(221, 77, 48, 0.12);
  color: #c04a2d;
}

.featured-product-badge-star {
  background: rgba(221, 167, 30, 0.14);
  color: #966f0d;
}

.featured-product-image {
  width: 100%;
  height: 260px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #eef4fb;
  padding: 0.2rem;
  margin-bottom: 0.9rem;
  transition: transform 0.22s ease;
}

.featured-product-card:hover .featured-product-image {
  transform: scale(1.03);
}

.featured-product-card h3 {
  margin: 0 0 0.5rem;
  min-height: 3rem;
  font-size: 1.02rem;
}

.featured-product-card p {
  color: var(--muted);
  margin-top: 0;
}

.featured-product-card p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}

.featured-product-card .btn {
  min-width: 132px;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(15, 76, 129, 0.18);
}

.featured-product-card .btn:hover {
  background: #1463a5;
}

.home-resources {
  position: relative;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 138, 154, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
}

.home-resources::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #2d8a9a, #d79b2d);
}

.home-resource-head {
  display: grid;
  max-width: 860px;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.home-resource-head .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
  color: #2d8a9a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-resource-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
}

.home-resource-head .section-intro {
  margin: 0;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.65;
}

.home-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-resource-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid #dbe5f1;
  border-radius: 14px;
  background:
    linear-gradient(145deg, #ffffff 0%, #f8fbfe 100%);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(10, 26, 45, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-resource-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.06) 0%, transparent 48%),
    linear-gradient(180deg, transparent 0%, rgba(246, 249, 253, 0.9) 100%);
  pointer-events: none;
}

.home-resource-card::after {
  content: ">";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #bfd0e2;
  border-radius: 50%;
  color: var(--brand);
  font-weight: 800;
  background: #fff;
}

.home-resource-card > * {
  position: relative;
}

.home-resource-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.72rem;
  padding: 0.28rem 0.58rem;
  border: 1px solid #c8d7e7;
  border-radius: 999px;
  color: #47617c;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
}

.home-resource-card h3 {
  margin: 0 0 0.5rem;
  color: #0d2237;
  font-size: 1.03rem;
  line-height: 1.28;
}

.home-resource-card p {
  margin: 0;
  color: #516177;
  font-size: 0.91rem;
  line-height: 1.55;
}

.home-resource-card.is-featured {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(15, 76, 129, 0.24) 0%, rgba(15, 76, 129, 0.68) 52%, rgba(13, 34, 55, 0.94) 100%),
     url("assets/images/home-banner.jpg") center / cover no-repeat;
}

.home-resource-card.is-featured[href*="blog-ai-packaging-automation"] {
  background:
    linear-gradient(180deg, rgba(15, 76, 129, 0.2) 0%, rgba(15, 76, 129, 0.66) 52%, rgba(13, 34, 55, 0.94) 100%),
    url("assets/images/blog/ai-packaging-automation-2026.jpg") center / cover no-repeat;
}

.home-resource-card.is-featured[href*="blog-flexible-packaging"] {
  background:
    linear-gradient(180deg, rgba(15, 76, 129, 0.2) 0%, rgba(15, 76, 129, 0.66) 52%, rgba(13, 34, 55, 0.94) 100%),
    url("assets/images/blog/flexible-packaging-web-handling-2026.jpg") center / cover no-repeat;
}

.home-resource-card.is-featured[href*="blog-battery-electrode"] {
  background:
    linear-gradient(180deg, rgba(15, 76, 129, 0.2) 0%, rgba(15, 76, 129, 0.66) 52%, rgba(13, 34, 55, 0.94) 100%),
    url("assets/images/blog/battery-electrode-web-handling-2026.jpg") center / cover no-repeat;
}

.home-resource-card.is-featured span {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #dceaf8;
}

.home-resource-card.is-featured h3,
.home-resource-card.is-featured p {
  color: #fff;
}

.home-resource-card.is-featured p {
  color: #e5f0fb;
}

.home-resource-card.is-featured::after {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.home-resource-card:hover {
  transform: translateY(-4px);
  border-color: #82a7ce;
  box-shadow: 0 18px 34px rgba(10, 26, 45, 0.11);
}

.home-resource-action {
  display: flex;
  justify-content: center;
  margin: 1.35rem 0 0;
}

.resources-page {
  width: min(1380px, 94vw);
  margin: 1.6rem auto 4rem;
}

.resources-page .resources-hero.panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(2rem, 4vw, 3.8rem);
  border: 0;
  background:
    linear-gradient(100deg, rgba(12, 32, 54, 0.95) 0%, rgba(15, 76, 129, 0.84) 58%, rgba(15, 76, 129, 0.48) 100%),
    url("assets/images/blog/ai-packaging-automation-2026.jpg") center / cover no-repeat;
  color: #fff;
}

.resources-page .resources-hero .eyebrow,
.resources-page .resource-section-head .eyebrow {
  margin: 0 0 0.55rem;
  color: #2d8a9a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resources-page .resources-hero .eyebrow {
  color: #d9ecff;
}

.resources-page .resources-hero h1 {
  max-width: 860px;
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
}

.resources-page .resources-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #e7f1fb;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.resource-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.resource-topic-row span {
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.resources-page .resource-section.panel {
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
}

.resources-page .resource-section-head {
  margin-bottom: 1rem;
}

.resources-page .resource-section-head h2 {
  margin: 0;
  color: #101d2d;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.resources-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.resource-index-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dbe5f1;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(10, 26, 45, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.resource-index-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eaf1f8;
}

.resource-index-card span {
  align-self: flex-start;
  margin: 1rem 1rem 0.7rem;
  padding: 0.28rem 0.58rem;
  border: 1px solid #c8d7e7;
  border-radius: 999px;
  color: #0f4c81;
  background: #f7fbff;
  font-size: 0.74rem;
  font-weight: 800;
}

.resource-index-card h3 {
  margin: 0 1rem 0.55rem;
  color: #0d2237;
  font-size: 1.05rem;
  line-height: 1.3;
}

.resource-index-card p {
  margin: 0 1rem 1.15rem;
  color: #516177;
  font-size: 0.92rem;
  line-height: 1.55;
}

.resource-index-card:hover {
  transform: translateY(-4px);
  border-color: #82a7ce;
  box-shadow: 0 18px 34px rgba(10, 26, 45, 0.11);
}

.applications-page {
  width: min(1440px, 94vw);
}

.application-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: end;
  min-height: 560px;
  margin: 1.5rem 0 1rem;
  padding: clamp(1.4rem, 4vw, 4rem);
  overflow: hidden;
  border: 1px solid #cfdceb;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(6, 17, 30, 0.94) 0%, rgba(13, 49, 84, 0.82) 50%, rgba(13, 49, 84, 0.28) 100%),
     url("assets/images/home-banner.jpg") center / cover no-repeat;
  color: #fff;
  box-shadow: 0 22px 55px rgba(10, 26, 45, 0.16);
}

.application-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--brand), #2d8a9a, #d79b2d);
}

.application-hero-copy,
.application-hero-panel {
  position: relative;
  z-index: 1;
}

.application-hero .eyebrow,
.application-hero h1,
.application-hero .lead {
  color: #fff;
}

.application-hero h1 {
  max-width: 850px;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.98;
}

.application-hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.application-hero .btn-ghost,
.application-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.application-hero .btn-ghost:hover,
.application-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.application-hero-panel {
  align-self: center;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(4, 14, 25, 0.25);
  backdrop-filter: blur(12px);
}

.application-hero-panel > span {
  display: block;
  margin-bottom: 0.8rem;
  color: #dceaf8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.application-checklist strong {
  padding: 0.68rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.88rem;
}

.application-section,
.application-cta {
  margin: 1rem 0;
  padding: clamp(1.25rem, 3vw, 2.3rem);
  border: 1px solid #d7e2ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(10, 26, 45, 0.06);
}

.application-section-head {
  max-width: 920px;
  margin-bottom: 1.25rem;
}

.application-section-head .eyebrow,
.application-cta .eyebrow {
  color: #2d8a9a;
}

.application-section-head h2,
.application-cta h2 {
  margin: 0 0 0.72rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.application-section-head p,
.application-cta p {
  color: #53667d;
}

.application-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.application-case-card {
  display: grid;
  grid-template-rows: 260px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #d9e4f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(10, 26, 45, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.application-case-card:hover {
  transform: translateY(-5px);
  border-color: #8bb0d5;
  box-shadow: 0 20px 42px rgba(10, 26, 45, 0.13);
}

.application-case-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #edf4fb;
}

.application-case-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 22, 37, 0.28) 100%);
}

.application-case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.22s ease;
}

.application-case-card:hover img {
  transform: scale(1.04);
}

.application-case-card > div {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1.25rem;
}

.application-case-card span {
  width: fit-content;
  padding: 0.28rem 0.62rem;
  border: 1px solid #c8d7e7;
  border-radius: 999px;
  color: #47617c;
  background: #f6f9fd;
  font-size: 0.74rem;
  font-weight: 800;
}

.application-case-card h3 {
  margin: 0;
  color: #0d2237;
  font-size: 1.22rem;
}

.application-case-card p {
  margin: 0;
  color: #52667d;
}

.application-solution-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 1rem 0;
  overflow: hidden;
  border: 1px solid #d7e2ef;
  border-radius: 22px;
  background: #d7e2ef;
  box-shadow: 0 10px 28px rgba(10, 26, 45, 0.06);
}

.application-solution-strip article {
  padding: 1.35rem;
  background: linear-gradient(160deg, #ffffff 0%, #f2f7fd 100%);
}

.application-solution-strip span {
  color: #2d8a9a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.application-solution-strip h3 {
  margin: 0.55rem 0 0;
  color: #0d2237;
  font-size: 1.1rem;
}

.application-product-paths {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.application-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.application-path-grid article {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid #d9e4f0;
  border-radius: 20px;
  background: #fff;
}

.application-path-grid img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  margin-bottom: 1rem;
  border: 1px solid #dbe5f1;
  border-radius: 16px;
  background: #edf4fb;
}

.application-path-grid h3 {
  margin: 0 0 0.55rem;
}

.application-path-grid p {
  color: #52667d;
}

.application-path-grid .btn {
  margin-top: auto;
  width: fit-content;
}

.application-cta {
  background:
    radial-gradient(circle at 88% 0%, rgba(45, 138, 154, 0.22), transparent 30%),
    linear-gradient(135deg, #0d3154 0%, #0f4c81 100%);
  color: #fff;
}

.application-cta h2,
.application-cta p {
  max-width: 820px;
  color: #fff;
}

.industry-page {
  --industry-radius: 26px;
}

.industry-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  margin: 1.5rem 0 1rem;
  padding: clamp(1.15rem, 3vw, 2rem);
  border: 1px solid #d4e0ee;
  border-radius: var(--industry-radius);
  background:
    radial-gradient(circle at 8% 0%, rgba(45, 138, 154, 0.16), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f3f7fc 100%);
  box-shadow: 0 18px 42px rgba(10, 26, 45, 0.09);
}

.industry-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 1.2rem);
}

.industry-hero h1 {
  max-width: 900px;
  margin: 0 0 1rem;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.industry-hero .lead {
  max-width: 760px;
  color: #52667d;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.industry-hero figure {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #cbd9e8;
  border-radius: calc(var(--industry-radius) - 6px);
  background: #eaf2fa;
}

.industry-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.industry-feature-grid article {
  padding: 1.25rem;
  border: 1px solid #d9e4f0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 253, 0.92)),
    radial-gradient(circle at 0 0, rgba(16, 83, 136, 0.09), transparent 36%);
}

.industry-feature-grid h3 {
  margin: 0 0 0.5rem;
  color: #0d2237;
  font-size: 1.08rem;
}

.industry-feature-grid p {
  margin: 0;
  color: #52667d;
}

.ad-landing {
  width: min(1440px, 94vw);
}

.ad-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: stretch;
  min-height: 560px;
  margin: 1.5rem 0 1rem;
  padding: clamp(1.4rem, 4vw, 4rem);
  overflow: hidden;
  border: 1px solid #cfdceb;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(8, 18, 31, 0.92) 0%, rgba(15, 55, 93, 0.78) 48%, rgba(15, 55, 93, 0.18) 100%),
     url("assets/images/home-banner.jpg") center / cover no-repeat;
  color: #fff;
  box-shadow: 0 22px 55px rgba(10, 26, 45, 0.16);
}

.ad-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--brand), #2d8a9a, #d79b2d);
}

.ad-hero-tension {
  background:
    linear-gradient(90deg, rgba(8, 18, 31, 0.92) 0%, rgba(16, 62, 101, 0.82) 50%, rgba(16, 62, 101, 0.2) 100%),
     url("assets/images/home-banner.jpg") center / cover no-repeat;
}

.ad-hero-web {
  background:
    linear-gradient(90deg, rgba(8, 18, 31, 0.92) 0%, rgba(17, 66, 92, 0.8) 50%, rgba(17, 66, 92, 0.2) 100%),
     url("assets/images/home-banner.jpg") center / cover no-repeat;
}

.ad-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  max-width: 780px;
}

.ad-hero .eyebrow,
.ad-hero h1,
.ad-hero .lead {
  color: #fff;
}

.ad-hero h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 5vw, 5.1rem);
  line-height: 0.98;
}

.ad-hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.ad-hero .btn-ghost,
.ad-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}

.ad-hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.96);
  color: #123250;
  box-shadow: 0 12px 26px rgba(4, 14, 25, 0.18);
}

.ad-hero .btn-ghost:hover {
  background: #fff;
  color: #0f4c81;
}

.ad-cta .btn-ghost {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.96);
  color: #123250;
}

.ad-cta .btn-ghost:hover {
  background: #fff;
  color: #0f4c81;
}

.ad-hero-card,
.ad-product-feature {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(4, 14, 25, 0.25);
  backdrop-filter: blur(12px);
}

.ad-hero-card strong,
.ad-product-feature strong {
  display: block;
  margin-bottom: 0.7rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.ad-hero-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ad-hero-card li {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.ad-product-feature {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.ad-product-feature img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 16px;
  background: #edf4fb;
}

.ad-product-feature span {
  color: #697b91;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ad-product-feature strong {
  color: #0d2237;
  font-size: 2rem;
}

.ad-product-feature p {
  margin: 0;
  color: #52667d;
}

.ad-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1rem 0;
}

.ad-proof-grid article {
  padding: 1.25rem;
  border: 1px solid #d7e2ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(10, 26, 45, 0.06);
}

.ad-proof-grid span,
.ad-section-head .eyebrow,
.ad-cta .eyebrow {
  color: #2d8a9a;
}

.ad-proof-grid strong {
  display: block;
  margin: 0.28rem 0 0.4rem;
  color: #0d2237;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.ad-proof-grid p {
  margin: 0;
  color: #5b6d83;
  font-size: 0.92rem;
}

.ad-section,
.ad-split,
.ad-cta {
  margin: 1rem 0;
  padding: clamp(1.25rem, 3vw, 2.4rem);
  border: 1px solid #d7e2ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(10, 26, 45, 0.06);
}

.ad-section-head {
  max-width: 900px;
  margin-bottom: 1.25rem;
}

.ad-section-head h2,
.ad-split h2,
.ad-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.ad-section-head p,
.ad-split p,
.ad-cta p {
  color: #53667d;
}

.ad-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ad-card {
  position: relative;
  min-height: 220px;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid #d9e4f0;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(15, 76, 129, 0.07), transparent 44%),
    #fbfdff;
}

.ad-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 110px;
  height: 110px;
  border: 18px solid rgba(15, 76, 129, 0.07);
  border-radius: 50%;
}

.ad-card h3 {
  margin: 0 0 0.65rem;
  color: #0d2237;
  font-size: 1.22rem;
}

.ad-card p {
  color: #52667d;
}

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

.ad-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  background: linear-gradient(160deg, #ffffff 0%, #edf4fb 100%);
}

.ad-step-list {
  display: grid;
  gap: 0.75rem;
}

.ad-step-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem;
  border: 1px solid #d5e2ef;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.ad-step-list span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: #0f4c81;
  color: #fff;
  font-weight: 800;
}

.ad-step-list p {
  margin: 0;
  color: #233146;
  font-weight: 600;
}

.ad-cta {
  background:
    radial-gradient(circle at 88% 0%, rgba(45, 138, 154, 0.22), transparent 30%),
    linear-gradient(135deg, #0d3154 0%, #0f4c81 100%);
  color: #fff;
}

.ad-cta h2,
.ad-cta p {
  max-width: 820px;
  color: #fff;
}

.panel {
  margin: 1rem 0;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 4px 18px rgba(8, 26, 46, 0.04);
}

.panel.alt {
  background: linear-gradient(160deg, #f9fbff 0%, #edf3fa 100%);
}

.blog-article {
  width: min(1180px, 92vw);
  max-width: none;
  margin: 1.4rem auto 4rem;
}

.blog-article > .panel {
  width: 100%;
  max-width: none;
  margin: 0 auto 1rem;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(10, 26, 45, 0.05);
}

.blog-article .page-head {
  position: relative;
  max-width: none;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(100deg, rgba(12, 32, 54, 0.96) 0%, rgba(15, 76, 129, 0.86) 58%, rgba(15, 76, 129, 0.56) 100%),
     url("assets/images/home-banner.jpg") center / cover no-repeat;
  color: #fff;
  padding: clamp(2rem, 4vw, 3.6rem);
}

.blog-article .page-head::before {
  content: "Industrial Automation Resource";
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #dbeaf9;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

html[lang="zh-CN"] .blog-article .page-head::before {
  content: "工业自动化技术资料";
}

.blog-article .page-head p,
.blog-article .page-head a {
  color: #dceaf8;
}

.blog-article .page-head p:first-child {
  order: -1;
  margin-bottom: auto;
  font-size: 0.9rem;
  opacity: 0.92;
}

.blog-article .page-head h1 {
  max-width: 820px;
  margin: 0 0 0.95rem;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 4.25rem);
  line-height: 1.02;
}

.blog-article .page-head h1 + p {
  max-width: 760px;
  margin: 0;
  color: #e6f0fa;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.blog-article h2 {
  margin: 0 0 0.85rem;
  color: #101d2d;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.blog-article h2:not(:first-child) {
  margin-top: 1.7rem;
  padding-top: 1.35rem;
  border-top: 1px solid #e4ebf3;
}

.blog-hero-figure {
  overflow: hidden;
  padding: 0;
}

.blog-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-media-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.6rem);
  padding: clamp(0.75rem, 1.6vw, 1rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(45, 138, 154, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f8fd 100%);
}

.blog-media-panel figure {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d7e3ef;
  border-radius: 8px;
  background: #eaf1f8;
}

.blog-media-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.blog-media-copy {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2.2vw, 1.8rem);
  border: 1px solid #dbe6f1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.blog-media-copy span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.85rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: #e8f2fb;
  color: #0f4c81;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-media-copy h2 {
  margin: 0 0 0.75rem;
  padding-top: 0;
  border-top: 0;
  color: #0f2f4f;
}

.blog-media-copy p {
  margin: 0;
}

.blog-trend-grid,
.blog-source-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

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

.blog-trend-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff 0%, #f2f7fd 100%);
}

.blog-trend-card h3 {
  margin: 0 0 0.45rem;
  color: #0f2f4f;
  font-size: 1rem;
}

.blog-source-list a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.blog-source-list a:hover {
  text-decoration: underline;
}

.blog-article p,
.blog-article li {
  color: #41516a;
  font-size: 1rem;
  line-height: 1.75;
}

.blog-article ul {
  display: grid;
  gap: 0.55rem;
  margin: 0.8rem 0 0;
  padding-left: 0;
  list-style: none;
}

.blog-article li {
  position: relative;
  padding-left: 1.35rem;
}

.blog-article li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2d8a9a;
  box-shadow: 0 0 0 4px rgba(45, 138, 154, 0.12);
}

.blog-article > .panel:nth-last-of-type(3) {
  background: #f9fbfe;
}

.blog-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.blog-article .blog-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.blog-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.72rem;
  text-decoration: none;
  color: var(--brand);
  font-weight: 700;
  background: #fff;
}

.blog-article .blog-links a {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: flex-end;
  border-radius: 8px;
  padding: 1rem 2.1rem 1rem 1rem;
  background: #fff;
  color: #133456;
  box-shadow: 0 8px 20px rgba(10, 26, 45, 0.04);
}

.blog-article .blog-links a::after {
  content: ">";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: #2d8a9a;
  font-weight: 700;
}

.blog-links a:hover {
  border-color: #7ea5cf;
  background: #f2f7fd;
}

.blog-article .blog-links a:hover {
  transform: translateY(-2px);
  border-color: #7ea5cf;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(10, 26, 45, 0.09);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.blog-article .faq-list {
  gap: 0.85rem;
}

.faq-list article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem;
  background: #fff;
}

.blog-article .faq-list article {
  border-radius: 8px;
  border-left: 4px solid #2d8a9a;
  padding: 1rem 1.1rem;
}

.faq-list h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.blog-article .faq-list h3 {
  color: #101d2d;
}

.faq-list p {
  margin: 0;
}

.seo-cta {
  background: linear-gradient(135deg, #0f4c81 0%, #113b61 100%);
  color: #fff;
}

.blog-article .seo-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem 2rem;
  border: 0;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.98) 0%, rgba(17, 59, 97, 0.98) 100%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12));
}

.seo-cta h2,
.seo-cta p {
  color: #fff;
}

.blog-article .seo-cta h2 {
  margin-bottom: 0.35rem;
}

.blog-article .seo-cta p {
  margin: 0;
}

.blog-article .seo-cta p:last-child {
  justify-self: end;
}

.seo-cta .btn-primary {
  background: #fff;
  color: var(--brand-strong);
}

.seo-cta .btn-primary:hover {
  background: #e8f1fb;
}

main > .cards.hierarchy-cards,
main > .cards.product-cards {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #c8dced;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(232, 242, 253, 0.86) 0%, rgba(255, 255, 255, 0.98) 48%, rgba(241, 247, 254, 0.92) 100%);
  box-shadow: 0 18px 42px rgba(31, 72, 111, 0.1);
}

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

main > .cards.hierarchy-cards > .card,
main > .cards.product-cards > .card {
  border-color: #c0d5ea;
  box-shadow: 0 12px 28px rgba(31, 72, 111, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

main > .cards.hierarchy-cards > .card:hover,
main > .cards.product-cards > .card:hover {
  transform: translateY(-4px);
  border-color: #0f5d95;
  box-shadow: 0 18px 36px rgba(15, 76, 129, 0.16);
}

main > .cards.hierarchy-cards h2,
main > .cards.product-cards h3 {
  color: #07182b;
}

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

.product-system-card {
  position: relative;
  display: grid;
  grid-template-rows: 255px minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

.product-system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.98) 72%);
  z-index: 1;
}

.product-system-media {
  position: relative;
  margin: 0;
  min-height: 255px;
  overflow: hidden;
  background: #eaf3fb;
}

.product-system-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.product-system-card:hover .product-system-media img {
  transform: scale(1.07);
}

.product-system-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.15rem 1.2rem 1.25rem;
}

.product-system-copy .eyebrow {
  margin: 0;
  color: #0f5d95;
}

.product-system-copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  letter-spacing: -0.03em;
}

.product-system-copy p:not(.eyebrow) {
  margin: 0;
  color: #405873;
  font-size: 1rem;
  line-height: 1.62;
}

.product-system-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.1rem 0 0.2rem;
}

.product-system-tags span {
  border: 1px solid #bdd3e8;
  border-radius: 999px;
  background: #f1f7fd;
  color: #234c73;
  padding: 0.25rem 0.62rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-system-card .btn {
  width: max-content;
  min-width: 190px;
  justify-content: center;
  text-align: center;
}

.product-system-card > .product-system-copy > .btn {
  min-width: 240px;
  min-height: 52px;
  margin-top: 0.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: #0a4f88;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(15, 76, 129, 0.22);
}

.product-system-card > .product-system-copy > .btn:hover {
  background: #1268aa;
  box-shadow: 0 18px 36px rgba(15, 76, 129, 0.28);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 1.1rem;
}

.section-heading .eyebrow {
  margin: 0 0 0.3rem;
  color: #0f5d95;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.section-heading p:not(.eyebrow) {
  margin: 0.55rem 0 0;
  color: #49627d;
  line-height: 1.68;
}

.product-directory-section,
.product-core-section,
.product-selection-panel {
  margin-top: 1rem;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.product-category-card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
  min-height: 190px;
  padding: 1rem;
  border: 1px solid #c9dced;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 254, 0.95));
  box-shadow: 0 12px 28px rgba(31, 72, 111, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-category-card:hover {
  transform: translateY(-4px);
  border-color: #0f5d95;
  box-shadow: 0 18px 34px rgba(15, 76, 129, 0.14);
}

.product-category-card img {
  width: 100%;
  height: 100%;
  min-height: 154px;
  object-fit: contain;
  border: 1px solid #d7e5f4;
  border-radius: 14px;
  background: #eef5fc;
  padding: 0.35rem;
}

.product-category-card > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-category-card h3 {
  margin: 0 0 0.45rem;
  color: #07182b;
  font-size: 1.05rem;
}

.product-category-card p {
  margin: 0 0 0.85rem;
  color: #49627d;
  font-size: 0.92rem;
  line-height: 1.58;
}

.product-category-card .btn {
  margin-top: auto;
  width: max-content;
}

.product-core-grid {
  margin-top: 0.2rem;
}

.product-selection-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(15, 93, 149, 0.08), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6faff 100%);
}

.product-selection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-selection-grid article {
  padding: 1rem;
  border: 1px solid #d5e4f3;
  border-radius: 16px;
  background: #fff;
}

.product-selection-grid h3 {
  margin: 0 0 0.45rem;
  color: #07182b;
}

.product-selection-grid p {
  margin: 0;
  color: #49627d;
  line-height: 1.66;
}

.product-quote-cta {
  margin-top: 1rem;
}

main > section.panel[data-seo-enhanced],
main > section.panel[data-category-seo] {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 1.2rem 1.5rem;
  align-items: start;
  width: 100%;
  margin-top: 1rem;
  padding: 1.25rem;
  border: 1px solid #d7e5f4;
  border-left: 4px solid #5d7f9f;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 100%);
  box-shadow: none;
}

main > section.panel[data-seo-enhanced] > *,
main > section.panel[data-category-seo] > * {
  grid-column: 1;
}

main > section.panel[data-seo-enhanced]::before,
main > section.panel[data-category-seo]::before {
  content: "Engineering Notes";
  display: inline-flex;
  width: max-content;
  margin-bottom: 0.15rem;
  padding: 0.22rem 0.6rem;
  border: 1px solid #c6d8ec;
  border-radius: 999px;
  color: #315d86;
  background: #eef6ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main > section.panel[data-seo-enhanced]::after,
main > section.panel[data-category-seo]::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / span 8;
  min-height: 100%;
  border: 1px solid #cbddec;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(8, 31, 54, 0.12), rgba(8, 31, 54, 0.04)),
    url("assets/images/seo/web-handling-engineering-support.jpg") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

body[data-title-en*="Tension"] main > section.panel[data-seo-enhanced]::after,
body[data-title-en*="Tension"] main > section.panel[data-category-seo]::after {
  background:
    linear-gradient(180deg, rgba(8, 31, 54, 0.12), rgba(8, 31, 54, 0.04)),
    url("assets/images/seo/tension-control-engineering-support.jpg") center / cover no-repeat;
}

body[data-title-en*="Product"] main > section.panel[data-seo-enhanced]::after,
body[data-title-en*="Product"] main > section.panel[data-category-seo]::after,
body[data-title-en*="Applications"] main > section.panel[data-seo-enhanced]::after,
body[data-title-en*="Contact"] main > section.panel[data-seo-enhanced]::after {
  background:
    linear-gradient(180deg, rgba(8, 31, 54, 0.12), rgba(8, 31, 54, 0.04)),
    url("assets/images/seo/product-selection-engineering-support.jpg") center / cover no-repeat;
}

main > section.panel[data-seo-extra],
main > section.panel[data-category-deep],
main > section.panel[data-category-quote],
main > section.panel[data-core-quote],
main > section.panel[data-final-seo-fill] {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: 0.2rem 1.1rem;
  align-items: start;
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.9rem 1.05rem;
  border: 1px solid #dbe7f3;
  border-radius: 14px;
  background: #fbfdff;
  box-shadow: none;
}

main > section.panel[data-seo-extra] h2,
main > section.panel[data-category-deep] h2,
main > section.panel[data-category-quote] h2,
main > section.panel[data-core-quote] h2,
main > section.panel[data-final-seo-fill] h2 {
  font-size: 1.05rem;
  line-height: 1.35;
}

main > section.panel[data-seo-extra] p,
main > section.panel[data-category-deep] p,
main > section.panel[data-category-quote] p,
main > section.panel[data-core-quote] p,
main > section.panel[data-final-seo-fill] p {
  grid-column: 2;
}

main > section.panel[data-seo-enhanced] h2,
main > section.panel[data-category-seo] h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

main > section.panel[data-seo-enhanced] p,
main > section.panel[data-seo-extra] p,
main > section.panel[data-category-seo] p,
main > section.panel[data-category-deep] p,
main > section.panel[data-category-quote] p,
main > section.panel[data-core-quote] p,
main > section.panel[data-final-seo-fill] p {
  margin-top: 0.55rem;
  color: #49627d;
  font-size: 0.94rem;
  line-height: 1.68;
}

main > section.panel[data-seo-enhanced] .cards,
main > section.panel[data-category-seo] .cards,
main > section.panel[data-seo-enhanced] .two-col {
  margin-top: 0.95rem;
  gap: 0.75rem;
}

main > section.panel[data-seo-enhanced] .card,
main > section.panel[data-category-seo] .card {
  padding: 0.85rem;
  background: #ffffff;
  box-shadow: none;
}

.section-intro {
  margin: 0.2rem 0 0.95rem;
  color: var(--muted);
}

h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.page-head h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-top: 0;
}

.page-head p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  margin: 0 0 0.45rem;
  width: 100%;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--brand-strong);
}

.breadcrumbs-separator {
  color: #8a98ab;
}

.breadcrumbs-current {
  color: var(--muted);
  font-weight: 600;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

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

.hierarchy-card {
  padding: 1.05rem;
  background: linear-gradient(165deg, #ffffff 0%, #f3f8ff 100%);
}

.hierarchy-card h2 {
  font-size: 1.18rem;
  margin-bottom: 0.45rem;
}

.hierarchy-card p {
  margin: 0 0 0.95rem;
}

.category-thumb {
  width: 100%;
  height: 210px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, #edf5fd 0%, #ffffff 100%);
  padding: 0.35rem;
  margin: 0.25rem 0 0.85rem;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
  align-items: start;
  margin: 1rem 0;
}

.catalog-sidebar {
  position: sticky;
  top: 148px;
}

.catalog-nav {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.catalog-nav a {
  text-decoration: none;
  color: #274465;
  background: #f4f8fd;
  border: 1px solid #cddbeb;
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.catalog-nav a:hover {
  background: #e9f2fc;
}

.catalog-content {
  display: grid;
  gap: 1rem;
}

.system-block h2 {
  margin-bottom: 0.8rem;
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.group-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.85rem;
}

.group-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
}

.group-label {
  margin: 0.6rem 0 0.35rem;
  font-size: 0.8rem;
  color: #3d5879;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem;
}

.model-tags span {
  border: 1px solid #c8d7e8;
  background: #f8fbff;
  border-radius: 999px;
  padding: 0.23rem 0.56rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #223f5f;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
  background: #fff;
}

.card h3,
.faq h3 {
  margin: 0;
}

.card p,
.faq p,
.product-panel-body p {
  color: var(--muted);
}

.catalog-card li {
  margin-bottom: 0.35rem;
}

.product-cards,
.catalog-cards {
  align-items: stretch;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.product-thumb {
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: linear-gradient(135deg, #edf5fd 0%, #ffffff 100%);
  border: 1px solid #c8daec;
  border-radius: 14px;
  padding: 0.35rem;
  flex: 0 0 300px;
}

.product-thumb-lg {
  height: 380px;
}

.product-card-thumb {
  height: 180px;
  flex: 0 0 180px;
  padding: 0.55rem;
}

.image-placeholder {
  background: linear-gradient(160deg, #d9e5f3 0%, #c9d8ea 100%);
  color: #2b4a68;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.product-card .image-placeholder {
  height: 220px;
  min-height: 220px;
}

.product-card h3 {
  min-height: 2.8rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.16rem;
}

.product-card p {
  flex: 1 1 auto;
  min-height: 4.2rem;
}

.product-card .btn {
  margin-top: auto;
}

.image-placeholder img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.product-panels {
  display: grid;
  gap: 0.85rem;
}

.product-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.product-panel-body {
  padding: 0.95rem;
}

.product-panel-body h3 {
  margin: 0.2rem 0 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.52rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  background: #e5effa;
  color: #255184;
}

ul {
  margin: 0.6rem 0 0;
  padding-left: 1.05rem;
}

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

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.steps li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  background: #fff;
}

.steps span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ok);
  color: #fff;
  font-weight: 700;
}

.steps p {
  margin: 0;
}

.faq {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.faq article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  background: #fff;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 0.34rem;
}

.form label:last-of-type {
  grid-column: span 2;
}

input,
textarea {
  border: 1px solid #bac8d8;
  border-radius: 9px;
  padding: 0.62rem;
  font: inherit;
  background: #fff;
}

button.btn {
  width: fit-content;
}

.inline-link,
.contact-links a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.contact-links {
  overflow-wrap: anywhere;
}

.epc-summary {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0.9rem;
  align-items: start;
}

.epc-hero-image,
.epc-gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.55rem;
}

.epc-hero-image img,
.epc-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.panel figure img {
  max-width: 100%;
  height: auto;
  display: block;
}

.epc-gallery img.product-thumb {
  height: 260px;
  object-fit: contain;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.45rem;
}

.epc-gallery img.product-thumb-lg {
  height: 380px;
}

.epc-hero-image figcaption,
.epc-gallery figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.38rem;
}

.drawing-compact {
  max-width: 420px;
  margin: 0 auto;
}

.wiring-compact {
  max-width: 420px;
}

.epc-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-detail-guide {
  border-left: 4px solid #0f5d95;
  background:
    linear-gradient(135deg, rgba(239, 247, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.product-detail-guide.compact {
  border-left-color: #7b9bb9;
}

.detail-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.9rem;
}

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

.detail-guide-grid article {
  border: 1px solid #d7e5f4;
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}

.detail-guide-grid h3 {
  margin: 0 0 0.45rem;
  color: #07182b;
  font-size: 1rem;
}

.detail-guide-grid p {
  margin: 0;
  color: #49627d;
  line-height: 1.68;
}

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.spec-table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.spec-row {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.spec-row + .spec-row {
  border-top: 1px solid var(--line);
}

.spec-row div {
  padding: 0.62rem 0.72rem;
}

.spec-row div:first-child {
  background: #f3f7fc;
  color: #294f74;
  font-weight: 700;
}

.matrix-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.matrix-table th,
.matrix-table td {
  border: 1px solid var(--line);
  padding: 0.62rem 0.72rem;
  text-align: center;
}

.matrix-table thead th {
  background: #f3f7fc;
  color: #294f74;
  font-weight: 700;
}

.matrix-table tbody td:first-child {
  background: #f8fbff;
  color: #294f74;
  font-weight: 700;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 1.4rem 3vw;
  background: #fff;
}

.footer-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
}

.footer-intro {
  display: grid;
  gap: 0.45rem;
  max-width: 680px;
}

.footer-intro strong,
.footer-column h2 {
  color: #152233;
  font-family: var(--font-heading);
}

.footer-intro p,
.footer-meta p {
  margin: 0;
}

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

.footer-column {
  padding: 1rem 1.1rem;
  border: 1px solid #d8e3ef;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.footer-column h2 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.46rem;
}

.footer-links a {
  color: #3f5267;
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-meta {
  padding-top: 0.35rem;
  border-top: 1px solid #e2ebf4;
}

@media (max-width: 900px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body,
  .site-header,
  .topbar,
  .product-strip {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .utility-links,
  .utility-actions a {
    display: none;
  }

  .utility-bar {
    justify-content: flex-end;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }

  .catalog-sidebar {
    position: static;
    top: auto;
  }

  .topbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.72rem;
    width: 100%;
    padding: 0.8rem 14px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .topbar-right {
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    align-items: stretch;
  }

  .hero-banner {
    min-height: 470px;
    aspect-ratio: auto;
    padding: 1.2rem;
  }

  .hero-copy {
    max-width: none;
    min-width: 0;
    width: 100%;
  }

  nav > a,
  nav > details,
  .nav-store-mega {
    width: 100%;
  }

  nav > a,
  .nav-dropdown-summary,
  .nav-store-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid #d7e1ec;
    border-radius: 12px;
    background: #fff;
    padding: 0.65rem 0.75rem;
    text-align: center;
  }

  .breadcrumbs {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex: 0 1 auto;
    grid-template-columns: none;
    gap: 0.35rem;
    align-items: center;
    justify-content: flex-start;
  }

  .breadcrumbs a {
    display: inline;
    width: auto;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    text-align: left;
  }

  .breadcrumbs a::after {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
    display: block;
  }

  .nav-dropdown-summary {
    width: 100%;
    position: relative;
    justify-content: center;
  }

  .nav-dropdown-summary::after {
    position: absolute;
    right: 0.85rem;
    margin-left: 0;
  }

  .nav-dropdown.nav-current .nav-dropdown-summary-label::after {
    display: none;
  }

  .nav-dropdown-panel {
    position: static;
    min-width: 0;
    margin-top: 0.6rem;
    transform: none;
    border-radius: 16px;
  }

  .nav-store-trigger::before {
    display: none;
  }

  .lang-switch,
  .nav-search {
    grid-column: 1 / -1;
  }

  .lang-switch {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  .nav-search {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-search input {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-search button {
    white-space: nowrap;
  }

  .nav-store-mega {
    width: 100%;
    display: block;
    grid-column: 1 / -1;
  }

  .nav-store-panel {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.6rem;
  }

  .nav-store-shell {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
  }

  .nav-store-sidebar {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #e8eef6;
    padding-bottom: 0.9rem;
  }

  .nav-store-system-list {
    grid-template-columns: 1fr;
  }

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

  .brand-text small {
    display: none;
  }

  .brand {
    width: 100%;
  }

  .product-strip {
    display: flex;
    width: 100%;
    max-width: 100%;
    padding: 0.55rem 14px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .product-strip a {
    flex: 0 0 auto;
  }

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

  main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1rem 14px 3rem;
    overflow-x: hidden;
  }

  .topbar *,
  main *,
  .panel,
  .card {
    min-width: 0;
  }

  .topbar-right,
  nav,
  .cards,
  .catalog-content,
  .product-cards,
  .catalog-cards,
  .product-category-grid,
  .product-selection-grid,
  .home-resource-grid,
  .resources-index-grid {
    max-width: 100%;
  }

  .card h2,
  .card h3,
  .card p,
  .product-card h3,
  .product-card p,
  .hierarchy-card h2,
  .hierarchy-card p,
  .resources-page h1,
  .resources-page h2,
  .resources-page p {
    overflow-wrap: anywhere;
  }

  .stats,
  .application-hero,
  .industry-hero,
  .application-case-grid,
  .application-solution-strip,
  .application-path-grid,
  .industry-feature-grid,
  .ad-hero,
  .ad-proof-grid,
  .ad-card-grid,
  .ad-split,
  .featured-product-grid,
  .catalog-layout,
  .group-grid,
  .hierarchy-cards,
  .product-category-grid,
  .product-selection-grid,
  .cards,
  .faq,
  .two-col,
  .detail-guide-grid,
  .detail-guide-grid.three,
  .form,
  .epc-summary,
  .epc-gallery,
  .spec-row,
  .product-panel {
    grid-template-columns: 1fr;
  }

  main > .cards.product-cards {
    grid-template-columns: 1fr;
  }

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

  .product-system-card {
    width: 100%;
    grid-template-rows: 220px minmax(0, 1fr);
  }

  .product-system-copy {
    padding: 1rem;
  }

  .product-system-card > .product-system-copy > .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-system-tags span {
    white-space: normal;
  }

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

  .product-category-card img {
    height: 210px;
  }

  main > section.panel[data-seo-enhanced],
  main > section.panel[data-category-seo] {
    grid-template-columns: 1fr;
  }

  main > section.panel[data-seo-enhanced]::after,
  main > section.panel[data-category-seo]::after {
    grid-column: 1;
    grid-row: auto;
    min-height: 220px;
  }

  main > section.panel[data-seo-extra],
  main > section.panel[data-category-deep],
  main > section.panel[data-category-quote],
  main > section.panel[data-core-quote],
  main > section.panel[data-final-seo-fill] {
    grid-template-columns: 1fr;
  }

  main > section.panel[data-seo-extra] p,
  main > section.panel[data-category-deep] p,
  main > section.panel[data-category-quote] p,
  main > section.panel[data-core-quote] p,
  main > section.panel[data-final-seo-fill] p {
    grid-column: 1;
  }

  .form label:last-of-type {
    grid-column: auto;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .panel,
  .stats article {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .stats {
    gap: 0.9rem;
  }

  .stats-note {
    text-align: left;
    font-size: 0.88rem;
  }

  .ad-landing {
    width: auto;
    max-width: calc(100vw - 28px);
  }

  .applications-page {
    width: 100%;
    max-width: 100%;
  }

  .application-hero {
    min-height: auto;
    padding: 1.3rem;
    border-radius: 20px;
  }

  .industry-hero {
    padding: 1.1rem;
    border-radius: 20px;
  }

  .application-hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.45rem);
    max-width: calc(100vw - 84px);
    overflow-wrap: anywhere;
  }

  .application-hero .lead {
    max-width: calc(100vw - 84px);
    overflow-wrap: anywhere;
  }

  .application-section-head h2,
  .application-section-head p {
    max-width: calc(100vw - 64px);
    overflow-wrap: anywhere;
  }

  .application-hero-panel {
    align-self: stretch;
  }

  .ad-hero {
    min-height: auto;
    padding: 1.3rem;
    border-radius: 20px;
  }

  .ad-hero h1 {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }

  .ad-hero-card,
  .ad-product-feature {
    align-self: stretch;
  }

  .ad-product-row .featured-product-grid,
  .ad-proof-grid,
  .ad-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-placeholder,
  .product-card .image-placeholder,
  .product-thumb,
  .category-thumb {
    min-height: 160px;
    height: 160px;
  }

  .product-thumb-lg {
    height: 220px;
  }

  .industry-hero h1,
  .industry-hero .lead {
    max-width: calc(100vw - 84px);
    overflow-wrap: anywhere;
  }

  .industry-hero figure {
    min-height: 260px;
  }

  .matrix-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 0.8rem;
  }

  .matrix-table th,
  .matrix-table td {
    padding: 0.46rem 0.35rem;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .topbar {
    padding: 0.72rem 14px;
    width: 100%;
  }

  .brand,
  .topbar-right {
    width: 100%;
    max-width: 100%;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.76rem;
  }

  .brand-logo {
    width: 118px;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.52rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  nav > a,
  .nav-dropdown-summary,
  .nav-store-trigger {
    min-height: 42px;
    font-size: 0.88rem;
    padding: 0.58rem 0.5rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .breadcrumbs a {
    min-height: 0;
    font-size: 0.9rem;
    line-height: 1.35;
    padding: 0;
  }

  .nav-dropdown-summary {
    gap: 0.28rem;
    padding-left: 2.1rem;
    padding-right: 2.1rem;
  }

  .nav-store-mega {
    grid-column: 1 / -1;
  }

  .nav-store-trigger {
    width: 100%;
  }

  .hero-banner {
    min-height: 420px;
    border-radius: 18px;
    padding: 1rem;
  }

  .hero-banner h1,
  .hero-banner .lead {
    max-width: calc(100vw - 84px);
    overflow-wrap: break-word;
  }

  .hero-banner-bg::after {
    background: linear-gradient(180deg, rgba(8, 17, 30, 0.7) 0%, rgba(8, 17, 30, 0.52) 45%, rgba(8, 17, 30, 0.8) 100%);
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  h1 {
    font-size: clamp(1.55rem, 6vw, 2rem);
    margin: 0.4rem 0 0.75rem;
  }

  .lead {
    font-size: 0.94rem;
  }

  .hero-actions {
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .hero-banner-dots {
    margin-top: 0.9rem;
  }

  .stats {
    gap: 0.72rem;
    margin: 0.9rem 0 1.3rem;
  }

  .stats h2 {
    font-size: 1.5rem;
  }

  .stats article {
    padding: 1rem;
    border-radius: 16px;
  }

  .stats-label {
    font-size: 13px;
  }

  .stats-copy {
    font-size: 12px;
  }

  .panel {
    padding: 1rem 0.9rem;
    border-radius: 16px;
  }

  .featured-product-image {
    height: 210px;
  }

  .application-case-grid,
  .application-solution-strip,
  .application-path-grid,
  .ad-product-row .featured-product-grid,
  .ad-proof-grid,
  .ad-card-grid {
    grid-template-columns: 1fr;
  }

  .application-section,
  .application-cta,
  .ad-section,
  .ad-split,
  .ad-cta {
    border-radius: 18px;
    padding: 1rem;
  }

  .ad-card {
    min-height: auto;
  }

  .application-case-card {
    grid-template-rows: 210px minmax(0, 1fr);
  }

  .application-checklist {
    grid-template-columns: 1fr;
  }

  .application-hero .hero-actions,
  .application-cta .hero-actions,
  .ad-hero .hero-actions,
  .ad-cta .hero-actions {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .blog-article {
    width: min(94vw, 720px);
    margin-top: 1rem;
  }

  .home-resource-head {
    grid-template-columns: 1fr;
  }

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

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

  .blog-article .page-head {
    min-height: 290px;
    padding: 1.4rem;
  }

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

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

  .blog-media-panel img,
  .blog-media-copy {
    min-height: 0;
  }

  .blog-media-panel img {
    aspect-ratio: 16 / 9;
  }

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

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

  .blog-article .seo-cta p:last-child {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .blog-article {
    width: calc(100vw - 28px);
  }

  .home-resource-grid {
    grid-template-columns: 1fr;
  }

  .resources-page {
    width: 100%;
    max-width: 100%;
  }

  .resources-page .resources-hero.panel {
    min-height: 300px;
    padding: 1.3rem;
  }

  .resources-page .resources-hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    line-height: 1.05;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .resources-page .resources-hero p:not(.eyebrow) {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .resource-topic-row span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .resources-index-grid,
  .resources-index-grid.compact {
    grid-template-columns: 1fr;
  }

  .home-resource-card,
  .home-resource-card.is-featured {
    grid-column: auto;
    min-height: 170px;
  }

  .blog-article .page-head {
    min-height: 250px;
    border-radius: 12px;
  }

  .blog-article .page-head h1 {
    max-width: calc(100vw - 84px);
    font-size: clamp(1.55rem, 6vw, 2rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .blog-article .page-head h1 + p,
  .blog-article p,
  .blog-article li {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .blog-article .page-head::before {
    font-size: 0.72rem;
  }

  .blog-article > .panel {
    max-width: 100%;
    padding: 1rem;
  }

  .blog-media-panel {
    padding: 0.75rem;
  }

  .blog-media-copy {
    padding: 1rem;
  }

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

  .blog-article .blog-links a {
    min-height: 70px;
  }
}

@media (max-width: 420px) {
  .topbar,
  main,
  .resources-page,
  .applications-page,
  .ad-landing,
  .blog-article {
    width: 100%;
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    overflow-x: hidden;
  }

  .topbar-right,
  nav,
  .panel,
  .card,
  .cards,
  .product-system-grid,
  .product-system-card,
  .product-system-copy,
  .resource-section,
  .resource-index-card,
  .application-hero,
  .ad-hero {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  nav {
    grid-template-columns: 1fr;
  }

  nav > a,
  .nav-dropdown-summary,
  .nav-store-trigger {
    justify-content: center;
    min-height: 40px;
  }

  .brand-logo {
    width: 112px;
  }

  .brand-text strong {
    font-size: 0.8rem;
    white-space: normal;
  }

  .product-strip {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-banner h1,
  .application-hero h1,
  .resources-page .resources-hero h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 8vw, 2rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero-banner .lead,
  .application-hero .lead,
  .resources-page .resources-hero p:not(.eyebrow),
  .product-system-copy p,
  .panel p,
  .card p,
  .contact-links {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .product-system-card {
    grid-template-rows: 190px minmax(0, 1fr);
  }

  .product-system-media {
    min-height: 190px;
  }

  .product-system-copy {
    padding: 0.95rem;
  }

  .product-system-card > .product-system-copy > .btn {
    min-height: 50px;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

