:root {
  --bg: #f4f5f7;
  --panel: #ffffff;
  --ink: #1d2433;
  --accent: #c12f2f;
  --accent-dark: #8f1b1b;
  --line: #d9deea;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--site-font, "Nunito", "Segoe UI", "Helvetica Neue", sans-serif);
  color: var(--ink);
  background: radial-gradient(circle at top right, #f8ecec, transparent 30%), var(--bg);
}

body.order-modal-open {
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .96), rgba(250, 252, 255, .92)),
    color-mix(in srgb, var(--panel) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(18, 31, 52, .06);
}

.site-header .container {
  width: min(1320px, 96%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .95rem 0;
}

.nav-primary-row {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.nav-panel {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: .9rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: .6rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: clamp(210px, 20vw, 290px);
  padding: .42rem .9rem;
  border-radius: 16px;
  border: 1px solid #d6dff2;
  background:
    linear-gradient(145deg, #ffffff 0%, #f4f8ff 52%, #ebf1fd 100%);
  box-shadow:
    0 15px 32px rgba(14, 31, 59, .16),
    0 3px 8px rgba(14, 31, 59, .08),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  transform: perspective(1000px) rotateX(5deg);
  transform-origin: center;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
  isolation: isolate;
}

.logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .58) 0%, rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: 0;
}

.logo::after {
  content: "";
  position: absolute;
  inset: auto 14px -10px;
  height: 16px;
  border-radius: 999px;
  background: rgba(19, 36, 63, .22);
  filter: blur(10px);
  z-index: -1;
}

.logo:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-1px);
  box-shadow:
    0 20px 36px rgba(14, 31, 59, .2),
    0 6px 12px rgba(14, 31, 59, .12),
    inset 0 1px 0 rgba(255, 255, 255, .98);
}

.logo img {
  width: clamp(160px, 15.8vw, 228px);
  height: clamp(42px, 4.4vw, 60px);
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 7px rgba(12, 27, 51, .24));
}
.main-nav {
  display: flex;
  grid-column: 2;
  justify-self: center;
}
.main-nav-list,
.sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}

.menu-node {
  position: relative;
}

.submenu-toggle {
  display: none;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  padding: .42rem .68rem;
  border-radius: 999px;
  white-space: nowrap;
}

.menu-link-parent-only {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: default;
}

.menu-link:hover {
  background: #f0f2f7;
}

.menu-link.active {
  background: #f0f2f7;
  font-weight: 600;
}

.sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  background: #fff;
  border: 1px solid #dde5f1;
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(17, 33, 56, .12);
  padding: .38rem;
  display: none;
  z-index: 90;
}

.sub-menu .menu-link {
  width: 100%;
  border-radius: 8px;
}

.sub-menu .menu-node .sub-menu {
  left: 100%;
  top: 0;
}

.menu-node.has-children:hover > .sub-menu,
.menu-node.has-children:focus-within > .sub-menu {
  display: block;
}
.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .4rem;
  position: relative;
}
.lang-pill, .admin-link {
  border: 1px solid var(--line);
  padding: .37rem .66rem;
  border-radius: 999px;
  font-size: .85rem;
}
.lang-pill.active { background: var(--accent); color: #fff; border-color: transparent; }

.header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.search-pill {
  border: 1px solid var(--line);
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1b2943;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.header-search.is-open .search-pill,
.search-pill:hover {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.header-search-panel {
  position: absolute;
  top: calc(100% + .52rem);
  right: 0;
  width: min(520px, calc(100vw - 1.2rem));
  border: 1px solid #d6dfef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(18, 34, 58, .16);
  padding: .62rem;
  z-index: 120;
}

.header-search-input-wrap {
  display: block;
}

.header-search-input {
  width: 100%;
  border: 1px solid #d3dded;
  border-radius: 10px;
  padding: .7rem .76rem;
  font-size: .93rem;
  color: #17253e;
}

.header-search-input:focus {
  outline: none;
  border-color: #89abdf;
  box-shadow: 0 0 0 3px rgba(137, 171, 223, .2);
}

.header-search-results {
  margin-top: .52rem;
  max-height: min(58vh, 420px);
  overflow: auto;
  display: grid;
  gap: .42rem;
}

.header-search-hint {
  border-radius: 10px;
  border: 1px dashed #d3deee;
  background: #f7faff;
  color: #475a79;
  font-size: .84rem;
  padding: .58rem .62rem;
}

.header-search-result {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: .58rem;
  align-items: center;
  border: 1px solid #d7e1f1;
  border-radius: 11px;
  padding: .36rem;
  background: linear-gradient(120deg, #fff, #f8fbff);
  transition: border-color .2s ease, transform .2s ease;
}

.header-search-result:hover {
  border-color: #9db7e3;
  transform: translateY(-1px);
}

.header-search-result-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #d3dded;
  background: #f2f6ff;
}

.header-search-result-content {
  display: grid;
  gap: .14rem;
  min-width: 0;
}

.header-search-result-title {
  font-size: .88rem;
  font-weight: 700;
  color: #16263f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-search-result-summary {
  font-size: .78rem;
  color: #495f82;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.header-search-result-category {
  font-size: .74rem;
  font-weight: 700;
  color: #5b7398;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid #d3def3;
  background: linear-gradient(145deg, #ffffff 0%, #eff4ff 100%);
  color: #1a3157;
  box-shadow: 0 8px 18px rgba(16, 32, 58, .14);
  cursor: pointer;
}

.mobile-nav-toggle-lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-toggle-lines span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}

.nav-wrap.is-open .mobile-nav-toggle-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-wrap.is-open .mobile-nav-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.nav-wrap.is-open .mobile-nav-toggle-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-backdrop {
  display: none;
}

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

.kosmat-slider {
  position: relative;
  background: #0c1426;
  overflow: hidden;
}

.kosmat-slider > .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 5;
}

.kosmat-slider-track {
  position: relative;
  min-height: clamp(360px, 53vw, 620px);
}

.kosmat-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}

.kosmat-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.kosmat-slide img {
  width: 100%;
  height: clamp(360px, 53vw, 620px);
  object-fit: cover;
  display: block;
}

.kosmat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(97deg, rgba(7, 15, 30, .78) 0%, rgba(7, 15, 30, .35) 48%, rgba(7, 15, 30, .08) 100%);
}

.kosmat-slide .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.kosmat-slide-content {
  max-width: 600px;
  color: #fff;
}

.kosmat-kicker {
  margin: 0 0 .5rem;
  display: inline-flex;
  align-items: center;
  padding: .3rem .65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  font-weight: 600;
  font-size: .83rem;
}

.kosmat-slide-content h1 {
  margin: 0;
  font-size: clamp(1.55rem, 3.25vw, 3.25rem);
  line-height: 1.12;
}

.kosmat-slide-content p {
  margin: .75rem 0 1rem;
  color: rgba(255, 255, 255, .92);
  max-width: 54ch;
}

.kosmat-controls {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
  pointer-events: auto;
}

.kosmat-dots {
  display: flex;
  gap: .35rem;
  align-items: center;
}

.kosmat-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.kosmat-dot.is-active {
  width: 22px;
  background: #fff;
}

.kosmat-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .4);
  background: rgba(11, 20, 37, .35);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.kosmat-arrow:hover {
  background: rgba(11, 20, 37, .7);
}

.hero { padding: 4rem 0 3rem; }
.hero h1 { margin: 0 0 .75rem; font-size: clamp(1.7rem, 2.6vw, 2.6rem); }
.hero p { margin: 0; max-width: 800px; color: #4d5566; }
.hero-actions { margin-top: 1rem; display: flex; gap: .7rem; }

.section { padding: 2rem 0; }
.section.alt { background: #f8fafc; }

.cards {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

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

.what-we-produce-section {
  margin-top: 2.2rem;
}

.what-carousel {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 22, 38, 0.08);
  overflow: hidden;
}

.what-carousel-track {
  position: relative;
}

.what-carousel-slide {
  display: none;
  padding: 1rem;
}

.what-carousel-slide.is-active {
  display: block;
}

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

.what-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.what-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.what-card-body {
  padding: .85rem .9rem .95rem;
}

.what-card-body h3 {
  margin: 0;
  font-size: 1.06rem;
}

.what-card-body p {
  margin: .5rem 0 0;
  color: #57637a;
  line-height: 1.52;
  font-size: .94rem;
}

.what-carousel-controls {
  padding: 0 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
}

.what-carousel-dots {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.what-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(19, 39, 66, .35);
  cursor: pointer;
}

.what-carousel-dot.is-active {
  width: 22px;
  background: #132742;
}

.what-carousel-arrow {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #132742;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.what-carousel-arrow:hover {
  background: #f4f7fb;
}

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

.category-banner-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 22, 38, 0.16);
  background: #0d1321;
}

.category-banner-link {
  position: relative;
  display: block;
  min-height: 230px;
}

.category-banner-link img,
.category-banner-fallback {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
}

.category-banner-fallback {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, 0.18), transparent 44%),
    radial-gradient(circle at 84% 30%, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(130deg, #102748 0%, #1b3f73 48%, #315792 100%);
}

.category-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 22, 39, 0.12) 0%, rgba(9, 17, 31, 0.74) 100%);
}

.category-banner-content {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}

.category-banner-content h3 {
  margin: 0;
  font-size: 1.2rem;
}

.category-banner-content p {
  margin: .45rem 0 .7rem;
  color: rgba(255, 255, 255, .9);
  font-size: .92rem;
}

.category-banner-content .btn {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(13, 24, 44, .45);
  color: #fff;
}

.category-banner-link:hover .category-banner-content .btn {
  background: rgba(11, 19, 33, .78);
}

.home-catalog-section {
  padding-top: 0;
}

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

.home-catalog-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 22, 38, 0.12);
  overflow: hidden;
}

.home-catalog-card img {
  width: 100%;
  min-height: 210px;
  max-height: 260px;
  object-fit: cover;
  display: block;
}

.home-catalog-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .75rem;
  flex-wrap: wrap;
}

.home-steel-section {
  margin: 1.3rem 0 1.05rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.2rem 0 1.35rem;
  position: relative;
  border-top: 1px solid #cfdcf2;
  border-bottom: 1px solid #cfdcf2;
  background:
    radial-gradient(circle at 9% 18%, rgba(109, 153, 223, .26) 0%, rgba(109, 153, 223, 0) 35%),
    radial-gradient(circle at 90% 85%, rgba(201, 221, 255, .42) 0%, rgba(201, 221, 255, 0) 38%),
    linear-gradient(145deg, #edf3ff 0%, #f7faff 52%, #eaf2ff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .92),
    inset 0 -1px 0 rgba(255, 255, 255, .92);
}

.home-steel-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(41, 72, 118, .82) 0 56px,
      rgba(41, 72, 118, .22) 56px 78px
    );
  opacity: .32;
  pointer-events: none;
}

.home-steel-inner {
  width: min(1240px, 94%);
  margin: 0 auto;
}

.home-steel-content {
  border: 1px solid #c9d9f2;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .92) 0%, rgba(245, 250, 255, .92) 100%);
  box-shadow: 0 16px 30px rgba(18, 37, 68, .1);
  padding: .95rem 1rem 1.05rem;
  text-align: center;
}

.home-steel-content h2 {
  margin: 0;
  color: #17375f;
}

.home-steel-content .wysiwyg {
  margin: .72rem auto 0;
  max-width: 1060px;
  color: #3e5578;
}

.home-steel-carousel {
  margin-top: 1.05rem;
}

.home-steel-track {
  position: relative;
}

.home-steel-slide {
  display: none;
}

.home-steel-slide.is-active {
  display: block;
}

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

.home-steel-card {
  border: 1px solid #c8d7ef;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 28px rgba(14, 23, 40, .11);
}

.home-steel-image-wrap {
  display: block;
  aspect-ratio: 4 / 5;
  background: #edf3ff;
}

.home-steel-image-wrap img,
.home-steel-image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-steel-image-fallback {
  background: linear-gradient(135deg, #dbe7ff 0%, #eff5ff 100%);
}

.home-steel-card-body {
  padding: .72rem .78rem .86rem;
  display: grid;
  gap: .52rem;
}

.home-steel-title {
  font-weight: 700;
  line-height: 1.34;
  color: #132b4d;
}

.home-steel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid #c8d7ef;
  border-radius: 999px;
  padding: .35rem .64rem;
  font-size: .84rem;
  font-weight: 700;
  color: #15335c;
  background: #fff;
}

.home-steel-controls {
  margin-top: .72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.home-steel-arrow {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #bfd0ea;
  background: #fff;
  font-size: 1.32rem;
  line-height: 1;
  cursor: pointer;
}

.home-steel-dots {
  display: flex;
  align-items: center;
  gap: .34rem;
}

.home-steel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #c9d6ea;
  cursor: pointer;
}

.home-steel-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: #21395d;
}

.home-rfid-section {
  margin: 1.25rem 0 1.2rem;
  padding: 1.05rem 1rem 1.15rem;
  border: 1px solid #d9e3f5;
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(211, 230, 255, .38), rgba(211, 230, 255, 0) 40%),
    linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 30px rgba(18, 37, 68, .08);
}

.home-rfid-head {
  text-align: center;
}

.home-rfid-head h2 {
  margin: 0;
}

.home-rfid-head .wysiwyg {
  margin: .66rem auto 0;
  max-width: 1040px;
}

.home-rfid-grid {
  margin-top: .95rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .86rem;
}

.home-rfid-card {
  border: 1px solid #d7e2f3;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 22px rgba(16, 31, 52, .09);
  display: grid;
}

.home-rfid-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #edf3ff;
}

.home-rfid-card-media img,
.home-rfid-card-media-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-rfid-card-media-fallback {
  background: linear-gradient(135deg, #dbe8ff 0%, #eff4ff 100%);
}

.home-rfid-card-body {
  padding: .72rem .76rem .82rem;
  display: grid;
  gap: .4rem;
}

.home-rfid-card-body h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.34;
  color: #162f55;
}

.home-rfid-card-desc {
  color: #51617d;
  font-size: .89rem;
  line-height: 1.54;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.1em;
}

.home-rfid-card-desc p {
  margin: 0;
}

.home-rfid-card-btn {
  margin-top: .15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1px solid #d4dff1;
  border-radius: 999px;
  padding: .4rem .72rem;
  font-size: .83rem;
  font-weight: 700;
  color: #14345c;
  background: #fff;
}

.home-rfid-card-btn:hover {
  border-color: #b6caeb;
  background: #f3f8ff;
}

.partners-section {
  margin: 1.15rem 0 1.2rem;
}

.partners-marquee {
  margin-top: .85rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 .4rem;
  overflow: hidden;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: .68rem;
  width: max-content;
  animation: partner-scroll 32s linear infinite;
  will-change: transform;
}

.partner-pill {
  flex: 0 0 auto;
  width: 184px;
  height: 78px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .46rem .72rem;
  box-shadow: 0 8px 18px rgba(17, 32, 52, .07);
}

.partner-pill a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partner-pill img {
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  display: block;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.home-latest-blogs-section {
  margin-top: 1.2rem;
}

.home-latest-blogs-grid {
  margin-top: .9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .95rem;
}

.home-latest-blog-card {
  display: grid;
  border: 1px solid #d8e2f3;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 18px rgba(16, 31, 52, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-latest-blog-card:hover {
  transform: translateY(-2px);
  border-color: #b8ccec;
  box-shadow: 0 14px 22px rgba(16, 31, 52, .12);
}

.home-latest-blog-media {
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: linear-gradient(135deg, #f2f5fb 0%, #dde6f5 100%);
}

.home-latest-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-latest-blog-media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.home-latest-blog-body {
  padding: .74rem .78rem .8rem;
  display: grid;
  gap: .38rem;
}

.home-latest-blog-body h3 {
  margin: 0;
  font-size: 1rem;
}

.home-latest-blog-body p {
  margin: 0;
  color: #56627b;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-latest-news-section {
  margin-top: 1.3rem;
}

.home-latest-news-grid {
  margin-top: .92rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .95rem;
}

.home-latest-news-card {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  min-height: 170px;
  border: 1px solid #d5e1f3;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #f6faff 100%);
  box-shadow: 0 12px 24px rgba(15, 30, 54, .09);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.home-latest-news-card:hover {
  transform: translateY(-2px);
  border-color: #aac2e6;
  box-shadow: 0 16px 28px rgba(15, 30, 54, .13);
}

.home-latest-news-media {
  position: relative;
  background: linear-gradient(135deg, #e9f1ff 0%, #d8e3f6 100%);
}

.home-latest-news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-latest-news-media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.home-latest-news-body {
  padding: .74rem .78rem .8rem;
  display: grid;
  gap: .42rem;
  align-content: center;
}

.home-latest-news-body h3 {
  margin: 0;
  font-size: .98rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #1b355b;
}

.home-latest-news-body p {
  margin: 0;
  color: #556580;
  font-size: .9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-featured-products-block {
  margin-bottom: .45rem;
}

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

.home-featured-product-card {
  position: relative;
  border: 2px solid #243a5e;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(246, 250, 255, .98) 100%);
  overflow: hidden;
  box-shadow:
    0 0 0 1px #d5dfef inset,
    7px 7px 0 #ccd8ea;
}

.home-featured-product-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  border: 1px solid #becde3;
  pointer-events: none;
  z-index: 2;
}

.home-featured-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(28, 49, 84, .08) 0 1px,
      rgba(28, 49, 84, 0) 1px 13px
    );
  opacity: .33;
}

.home-featured-product-media {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 4 / 3;
  border-bottom: 2px solid #2b436b;
  background: #e9f1ff;
}

.home-featured-product-media img,
.home-featured-product-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-featured-product-fallback {
  background:
    linear-gradient(135deg, #dce8ff 0%, #edf4ff 100%);
}

.home-featured-product-body {
  position: relative;
  z-index: 1;
  padding: .86rem .86rem .95rem;
  display: grid;
  gap: .48rem;
}

.home-featured-product-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.34;
  color: #1a3459;
}

.home-featured-product-body p {
  margin: 0;
  color: #4f5f79;
  font-size: .91rem;
  line-height: 1.52;
  min-height: 4.6em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-featured-product-btn {
  width: fit-content;
  border-radius: 999px;
  border: 2px solid #1c3b64;
  background: #f5f9ff;
  color: #17345a;
  font-weight: 700;
  box-shadow: 2px 2px 0 #cad7ea;
}

.home-featured-product-btn:hover {
  background: #eaf2ff;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 22, 38, 0.06);
}
.card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.card-body { padding: .9rem; }
.card-body h3 { margin: 0 0 .5rem; font-size: 1.05rem; }
.card-body p { color: #586073; font-size: .95rem; }

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

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: linear-gradient(135deg, #f2f5fb 0%, #dde6f5 100%);
}

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

.blog-card-media-placeholder {
  width: 100%;
  height: 100%;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.blog-card-body h3 {
  margin: 0;
}

.blog-card-body p {
  margin: 0;
  color: #586073;
  line-height: 1.5;
}

.blog-card .btn {
  margin-top: auto;
  width: fit-content;
}

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

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.news-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: linear-gradient(135deg, #eef3fb 0%, #dbe4f5 100%);
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.news-card-body h3 {
  margin: 0;
}

.news-card-body p {
  margin: 0;
  color: #586073;
  line-height: 1.5;
}

.news-card .btn {
  margin-top: auto;
  width: fit-content;
}

.page-applications {
  display: grid;
  gap: .9rem;
}

.applications-intro {
  margin: 0;
  color: #4e5c74;
  line-height: 1.65;
}

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

.application-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.application-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #eff4fd 0%, #dce7f9 100%);
}

.application-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.application-media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.application-card-body {
  display: grid;
  gap: .5rem;
  padding: .75rem;
}

.application-card-body h3 {
  margin: 0;
  font-size: 1.02rem;
}

.application-card-body p {
  margin: 0;
  color: #5a657a;
  line-height: 1.55;
}

.application-list {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: .28rem;
  color: #5a657a;
  font-size: .92rem;
}

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

.application-detail-shell {
  display: grid;
  gap: 1rem;
}

.application-detail-hero {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 1rem;
  border: 1px solid #ccdaf0;
  border-radius: 20px;
  background: linear-gradient(136deg, #f8fbff 0%, #eef4ff 52%, #e6efff 100%);
  padding: clamp(.9rem, 1.8vw, 1.35rem);
  box-shadow:
    0 16px 34px rgba(16, 34, 60, .11),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.application-detail-hero-body {
  display: grid;
  gap: .72rem;
  align-content: flex-start;
}

.application-detail-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border: 1px solid #b9cceb;
  border-radius: 999px;
  padding: .32rem .7rem;
  background: rgba(255, 255, 255, .88);
  color: #26456f;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.application-detail-hero-body h1 {
  margin: 0;
  color: #142b4f;
  font-size: clamp(1.36rem, 2vw, 1.88rem);
  line-height: 1.24;
}

.application-detail-summary {
  margin: 0;
  color: #425d82;
  line-height: 1.7;
}

.application-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.application-detail-hero-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #c5d6ef;
  background: linear-gradient(145deg, #f4f8ff 0%, #e4ecfb 100%);
  min-height: 230px;
}

.application-detail-hero-media img,
.application-detail-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.application-detail-highlights {
  border: 1px solid #d2def2;
  border-radius: 15px;
  background: #fbfdff;
  padding: .92rem .95rem;
}

.application-detail-highlights h2 {
  margin: 0 0 .62rem;
  color: #1b355d;
  font-size: 1.08rem;
}

.application-detail-highlights ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}

.application-detail-highlights li {
  position: relative;
  padding-left: 1.05rem;
  color: #496383;
  line-height: 1.55;
}

.application-detail-highlights li::before {
  content: '';
  position: absolute;
  left: .1rem;
  top: .6rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2f5c95;
  box-shadow: 0 0 0 3px rgba(47, 92, 149, .15);
}

.application-detail-content {
  border: 1px solid #d3dff2;
  border-radius: 16px;
  background: #fff;
  padding: .95rem;
}

.application-detail-content .wysiwyg {
  margin: 0;
}

.application-detail-cta {
  border: 1px solid #c9d9f1;
  border-radius: 16px;
  background: linear-gradient(125deg, #f3f8ff 0%, #e9f1ff 100%);
  padding: .88rem .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}

.application-detail-cta h3 {
  margin: 0 0 .25rem;
  color: #1a355c;
  font-size: 1.04rem;
}

.application-detail-cta p {
  margin: 0;
  color: #496383;
  line-height: 1.55;
}

.pagination-nav {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.pagination-link {
  min-width: 36px;
  height: 36px;
  padding: 0 .55rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-weight: 600;
}

.pagination-link:hover {
  background: #f4f7fd;
}

.pagination-link.is-active {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .52rem .85rem;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}
.btn-sm { font-size: .85rem; padding: .42rem .7rem; }
.btn-primary { background: var(--accent); color: #fff; border-color: transparent; }
.btn-primary:hover { background: var(--accent-dark); }

.filter-form { margin: .7rem 0 1rem; display: flex; align-items: center; gap: .45rem; }
.filter-form select { padding: .45rem .6rem; border-radius: 8px; border: 1px solid var(--line); }

.detail-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1.1rem; }
.detail-image { width: 100%; border-radius: 12px; border: 1px solid var(--line); }
.gallery-grid { margin-top: .7rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.gallery-grid img { width: 100%; height: 90px; object-fit: cover; border-radius: 8px; }
.category-chip { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: .3rem .7rem; font-size: .86rem; }

.product-order-cta {
  margin: .9rem 0 1rem;
}

.label-products-page {
  display: grid;
  gap: .62rem;
}

.label-products-grid {
  margin-top: .86rem;
}

.label-product-card {
  border: 1px solid #cfdcf2;
  border-radius: 16px;
  background: linear-gradient(156deg, #ffffff 0%, #f6faff 100%);
  box-shadow:
    0 14px 26px rgba(16, 33, 60, .1),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.label-product-card:hover {
  transform: translateY(-2px);
  border-color: #a9c1e8;
  box-shadow:
    0 18px 30px rgba(16, 33, 60, .14),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

.label-product-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid #d7e3f5;
  background: linear-gradient(140deg, #edf3ff 0%, #dee8fa 100%);
}

.label-product-media img,
.label-product-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.label-product-fallback {
  background: linear-gradient(140deg, #e6efff 0%, #dce7fb 100%);
}

.label-product-body {
  display: grid;
  gap: .44rem;
  padding: .78rem .82rem .86rem;
}

.label-product-body h3 {
  margin: 0;
  font-size: .98rem;
  line-height: 1.35;
  color: #1a355a;
}

.label-product-body p {
  margin: 0;
  color: #53647f;
  line-height: 1.52;
  min-height: 4.4em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.label-product-btn {
  margin-top: .1rem;
  width: fit-content;
  border-radius: 999px;
  border-color: #c6d7f4;
  background: #f4f8ff;
  color: #1d4373;
  font-weight: 700;
}

.label-product-btn:hover {
  border-color: #9ebae8;
  background: #eaf2ff;
}

.product-detail-layout {
  gap: 1rem;
  align-items: start;
}

.product-detail-gallery-panel,
.product-detail-info-panel {
  border: 1px solid #d2ddf1;
  border-radius: 16px;
  background: linear-gradient(155deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 14px 28px rgba(15, 30, 54, .09);
}

.product-detail-gallery-panel {
  padding: .75rem;
}

.product-detail-main-image {
  border-radius: 14px;
  border-color: #c8d8f4;
  box-shadow: 0 10px 22px rgba(18, 38, 68, .14);
  min-height: 320px;
  object-fit: cover;
}

.product-detail-main-fallback {
  display: block;
  width: 100%;
  min-height: 320px;
  border-radius: 14px;
  border: 1px dashed #c6d6f2;
  background: linear-gradient(145deg, #ecf3ff 0%, #dfe9fb 100%);
}

.product-detail-thumb-grid {
  margin-top: .68rem;
  grid-template-columns: repeat(4, 1fr);
}

.product-detail-thumb-grid img {
  height: 96px;
  border: 1px solid #d4e0f4;
}

.product-detail-info-panel {
  padding: .86rem .92rem 1rem;
}

.product-detail-info-panel h1 {
  margin: 0 0 .42rem;
  color: #1a365d;
}

.product-detail-summary {
  margin: .48rem 0 0;
  color: #52637d;
  line-height: 1.64;
}

.product-detail-description {
  margin-top: .2rem;
  color: #2d3f5f;
}

.order-modal-root {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: grid;
  place-items: center;
}

.order-modal-root[hidden] {
  display: none;
}

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 33, .56);
}

.order-modal-card {
  position: relative;
  width: min(560px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 16px;
  border: 1px solid #d8e2f4;
  background: #fff;
  box-shadow: 0 24px 60px rgba(8, 16, 29, .3);
}

.order-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
  padding: .8rem 1rem;
  border-bottom: 1px solid #e1e8f5;
  background: #f7faff;
}

.order-modal-head h3 {
  margin: 0;
  font-size: 1.08rem;
}

.order-modal-close {
  border: 1px solid #d5e0f3;
  border-radius: 9px;
  width: 34px;
  height: 34px;
  background: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.order-form {
  padding: .9rem 1rem 1rem;
  display: grid;
  gap: .7rem;
}

.order-form label {
  display: grid;
  gap: .32rem;
  font-size: .9rem;
  font-weight: 600;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid #d3ddee;
  border-radius: 10px;
  padding: .58rem .66rem;
  font: inherit;
}

.order-form textarea {
  resize: vertical;
}

.order-form-feedback {
  margin: 0;
  min-height: 1.15rem;
  font-size: .87rem;
  font-weight: 600;
}

.order-form-feedback.is-error {
  color: #9b1d1d;
}

.order-form-feedback.is-success {
  color: #1f7a42;
}

.order-form-actions {
  display: flex;
  gap: .55rem;
}

.category-submenu-section {
  margin-top: 1.15rem;
}

.category-submenu-section h2 {
  margin: 0 0 .78rem;
  font-size: 1.2rem;
}

.category-submenu-carousel {
  margin-top: .6rem;
}

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

.category-submenu-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.category-submenu-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.category-submenu-link img,
.category-submenu-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-submenu-fallback {
  background: linear-gradient(135deg, #edf3fe 0%, #dbe7fb 100%);
}

.category-submenu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0) 20%, rgba(8, 17, 31, .82) 100%);
}

.category-submenu-content {
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .72rem;
  z-index: 2;
  color: #fff;
  display: grid;
  gap: .2rem;
}

.category-submenu-content strong {
  font-size: .96rem;
  line-height: 1.28;
}

.category-submenu-content small {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: .79rem;
  color: rgba(255, 255, 255, .92);
}

.page-content { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem; }
.card-404-shortcut {
  border-style: dashed;
  border-color: #c9d5ef;
  background: linear-gradient(145deg, #ffffff 0%, #f5f8ff 100%);
}

.card-404-shortcut h3 {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.card-404-shortcut h3::before {
  content: "404";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 22px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .08em;
  color: #fff;
  background: linear-gradient(135deg, #1b273b 0%, #304f7f 100%);
}

.not-found-section {
  padding: clamp(2rem, 4vw, 3.3rem) 0;
}

.not-found-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid #cad6ed;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% -20%, rgba(64, 124, 214, .2), transparent 44%),
    radial-gradient(circle at 86% 108%, rgba(193, 47, 47, .2), transparent 40%),
    linear-gradient(145deg, #ffffff 0%, #f4f7fd 100%);
  box-shadow: 0 22px 40px rgba(14, 32, 59, .14);
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
  text-align: center;
}

.not-found-hero::before {
  content: "";
  position: absolute;
  inset: -42% auto auto -24%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 47, 47, .2) 0%, rgba(193, 47, 47, 0) 70%);
  pointer-events: none;
}

.not-found-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .22rem .65rem;
  border-radius: 999px;
  border: 1px solid #bfd1f0;
  background: rgba(255, 255, 255, .86);
  font-size: .72rem;
  letter-spacing: .12em;
  font-weight: 700;
}

.not-found-hero h1 {
  margin: .55rem 0 .4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.not-found-hero h1 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 58px;
  border-radius: 14px;
  color: #fff;
  letter-spacing: .08em;
  background: linear-gradient(135deg, #0f1f39 0%, #264671 100%);
  box-shadow: 0 14px 24px rgba(13, 29, 52, .3);
}

.not-found-subtitle {
  margin: 0 auto;
  max-width: 820px;
  color: #394d6d;
  font-size: 1rem;
  line-height: 1.55;
}

.barcode-ribbon-machine {
  width: min(940px, 100%);
  margin: clamp(1.05rem, 3vw, 1.7rem) auto .95rem;
  padding: .3rem;
  position: relative;
  display: grid;
  grid-template-columns: clamp(74px, 10.8vw, 108px) 1fr clamp(74px, 10.8vw, 108px);
  align-items: center;
  gap: clamp(.35rem, 1.5vw, .95rem);
}

.barcode-ribbon-shadow {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -12px;
  height: 18px;
  border-radius: 999px;
  background: rgba(17, 33, 60, .18);
  filter: blur(11px);
}

.barcode-spool {
  position: relative;
  z-index: 2;
  width: clamp(74px, 10.8vw, 108px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 28%, #f4f8ff 0%, #b8c8e4 28%, #60779f 70%, #334763 100%);
  box-shadow:
    inset -10px -10px 14px rgba(17, 33, 57, .28),
    inset 8px 8px 14px rgba(255, 255, 255, .48),
    0 8px 16px rgba(17, 36, 64, .3);
}

.barcode-spool::before {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 4px solid rgba(13, 26, 47, .32);
}

.barcode-spool .spool-core {
  position: absolute;
  inset: 38%;
  border-radius: 50%;
  background: linear-gradient(145deg, #11203a 0%, #314f7b 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .2);
}

.barcode-spool-left {
  animation: spool-spin-left 1.45s linear infinite;
}

.barcode-spool-right {
  animation: spool-spin-right 1.45s linear infinite;
}

.barcode-track {
  position: relative;
  height: clamp(88px, 13vw, 126px);
  border-radius: 16px;
  border: 1px solid #182235;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f7ff 0%, #d5deef 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, .5),
    0 8px 15px rgba(15, 30, 54, .22);
}

.barcode-film {
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(250, 250, 250, .95) 0%, rgba(248, 248, 248, .9) 100%),
    repeating-linear-gradient(
      90deg,
      #fff 0 6px,
      #131b28 6px 9px,
      #fff 9px 13px,
      #1a2434 13px 17px,
      #fff 17px 22px,
      #101723 22px 24px,
      #fff 24px 30px,
      #1c2738 30px 34px,
      #fff 34px 39px
    );
  background-size: 100% 100%, 230px 100%;
  transform-origin: left center;
  box-shadow:
    inset 0 0 0 1px rgba(10, 16, 26, .2),
    inset 0 12px 14px rgba(255, 255, 255, .48);
  animation: barcode-shift 1.25s linear infinite, ribbon-unroll 4.2s ease-in-out infinite;
}

.barcode-gloss {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  height: 16px;
  border-radius: 10px 10px 6px 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .62) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.not-found-helper {
  margin: .35rem auto 1rem;
  color: #475f83;
  max-width: 660px;
}

.not-found-home-btn {
  min-width: 210px;
  padding: .72rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(193, 47, 47, .28);
}

@keyframes spool-spin-left {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spool-spin-right {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes barcode-shift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 0, 230px 0; }
}

@keyframes ribbon-unroll {
  0% {
    clip-path: inset(0 78% 0 0 round 10px);
    transform: translateX(-1.6%);
  }
  40% {
    clip-path: inset(0 11% 0 0 round 10px);
    transform: translateX(0);
  }
  58% {
    clip-path: inset(0 0% 0 0 round 10px);
    transform: translateX(0);
  }
  100% {
    clip-path: inset(0 78% 0 0 round 10px);
    transform: translateX(-1.6%);
  }
}

.wysiwyg { line-height: 1.65; }
.wysiwyg p { margin-top: 0; }

.contact-box {
  margin-top: 1.45rem;
  position: relative;
}

.contact-box-shell {
  border: 1px solid #d6e2f5;
  border-radius: 22px;
  padding: 1rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(199, 221, 255, .38) 0%, rgba(199, 221, 255, 0) 44%),
    radial-gradient(circle at 0% 100%, rgba(255, 223, 223, .38) 0%, rgba(255, 223, 223, 0) 42%),
    linear-gradient(150deg, #ffffff 0%, #f5f8ff 58%, #eef4ff 100%);
  box-shadow:
    0 20px 34px rgba(17, 38, 70, .11),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  display: grid;
  gap: .94rem;
}

.contact-box-header-row {
  display: grid;
  grid-template-columns: 1.3fr minmax(250px, .7fr);
  gap: .76rem;
  align-items: stretch;
}

.contact-box-header {
  display: grid;
  gap: .38rem;
}

.contact-box-kicker {
  width: fit-content;
  border: 1px solid #c9d9f5;
  border-radius: 999px;
  background: #f0f6ff;
  color: #20487b;
  padding: .25rem .62rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.contact-box-header h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  color: #17355f;
}

.contact-box-header p {
  margin: 0;
  color: #435a7f;
  font-size: .94rem;
  line-height: 1.6;
}

.contact-box-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .36rem;
}

.contact-box-chip-row span {
  border-radius: 999px;
  border: 1px solid #c8d8f4;
  background: #f7faff;
  color: #355886;
  font-size: .74rem;
  font-weight: 600;
  padding: .22rem .58rem;
}

.contact-box-meta-card {
  border: 1px solid #c8d9f6;
  border-radius: 16px;
  background: linear-gradient(155deg, #2a5796 0%, #16345f 100%);
  color: #f3f8ff;
  padding: .78rem .84rem;
  box-shadow: 0 14px 22px rgba(16, 36, 64, .24);
  display: grid;
  align-content: center;
  gap: .28rem;
}

.contact-box-meta-card small {
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(232, 242, 255, .82);
  font-weight: 700;
}

.contact-box-meta-card strong {
  font-size: 1.2rem;
  line-height: 1.25;
}

.contact-box-meta-card p {
  margin: 0;
  color: rgba(233, 242, 255, .9);
  font-size: .84rem;
  line-height: 1.45;
}

.contact-box-meta-card p span {
  color: rgba(224, 238, 255, .78);
}

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

.contact-box-card {
  border: 1px solid #d2dff4;
  border-radius: 14px;
  background: linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
  padding: .74rem .78rem;
  display: flex;
  align-items: flex-start;
  gap: .58rem;
  box-shadow: 0 10px 18px rgba(18, 36, 66, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-box-card:hover {
  transform: translateY(-2px);
  border-color: #a9c1e8;
  box-shadow: 0 14px 22px rgba(18, 36, 66, .12);
}

.contact-box-icon {
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #c9daf6;
  background: linear-gradient(145deg, #f4f8ff, #e7f0ff);
  color: #154b9a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.contact-box-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-box-text {
  display: grid;
  gap: .16rem;
  min-width: 0;
}

.contact-box-text small {
  font-size: .73rem;
  font-weight: 700;
  color: #55709a;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.contact-box-text a,
.contact-box-text span {
  font-size: .9rem;
  color: #1f3150;
  line-height: 1.5;
  word-break: break-word;
}

.contact-box-text a:hover {
  color: #154998;
  text-decoration: underline;
}

.contact-box-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}

.contact-box-actions .btn {
  border-radius: 999px;
  padding: .48rem .96rem;
  font-weight: 700;
}

.contact-box-bottom {
  border-top: 1px dashed #c8d8f2;
  padding-top: .75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  flex-wrap: wrap;
}

.contact-box-note {
  margin: 0;
  color: #4f6282;
  font-size: .88rem;
  line-height: 1.52;
  max-width: 68ch;
}

.contact-request-panel {
  margin-top: 1rem;
}

.contact-request-shell {
  position: relative;
  border: 1px solid #cfdcf2;
  border-radius: 24px;
  padding: .95rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(205, 223, 255, .35) 0%, rgba(205, 223, 255, 0) 45%),
    radial-gradient(circle at 0% 100%, rgba(255, 223, 223, .35) 0%, rgba(255, 223, 223, 0) 42%),
    linear-gradient(156deg, #ffffff 0%, #f4f8ff 56%, #edf4ff 100%);
  box-shadow:
    0 20px 36px rgba(17, 37, 68, .12),
    inset 0 1px 0 rgba(255, 255, 255, .92);
}

.contact-request-shell::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c12f2f, #f08a36, #1f4f86);
}

.contact-request-head {
  display: grid;
  gap: .34rem;
  margin-bottom: .72rem;
}

.contact-request-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  border: 1px solid #c8d9f5;
  border-radius: 999px;
  padding: .3rem .68rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #2a4c78;
  background: linear-gradient(145deg, #f7fbff, #edf4ff);
}

.contact-request-head h2 {
  margin: 0;
  color: #173a61;
  font-size: clamp(1.12rem, 1.9vw, 1.44rem);
  line-height: 1.24;
}

.contact-request-head p {
  margin: 0;
  color: #526987;
  line-height: 1.62;
}

.contact-request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .68rem .72rem;
}

.contact-request-grid label {
  display: grid;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 700;
  color: #294768;
}

.contact-request-grid-full {
  grid-column: 1 / -1;
}

.contact-request-grid select,
.contact-request-grid input,
.contact-request-grid textarea {
  width: 100%;
  border: 1px solid #cddbf1;
  border-radius: 12px;
  background: #fff;
  padding: .62rem .68rem;
  font: inherit;
  color: #1f3354;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-request-grid textarea {
  resize: vertical;
  min-height: 132px;
}

.contact-request-grid select:focus,
.contact-request-grid input:focus,
.contact-request-grid textarea:focus {
  border-color: #8caee0;
  box-shadow: 0 0 0 4px rgba(62, 127, 211, .18);
  outline: none;
}

.contact-request-feedback {
  margin: .64rem 0 0;
  min-height: 1.12rem;
  font-size: .87rem;
  font-weight: 700;
}

.contact-request-feedback.is-success {
  color: #1f7a42;
}

.contact-request-feedback.is-error {
  color: #932020;
}

.contact-request-actions {
  margin-top: .18rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact-request-actions .btn {
  min-width: 150px;
}

.page-contact .wysiwyg {
  display: grid;
  gap: 1rem;
}

.page-contact .wysiwyg .elementor-widget-form {
  display: none !important;
}

.page-contact .wysiwyg > * {
  margin: 0 !important;
}

.page-contact .wysiwyg .elementor-invisible {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
}

.page-contact .wysiwyg .elementor-widget-heading .elementor-heading-title {
  margin: 0;
  font-size: clamp(1.18rem, 1.8vw, 1.44rem);
  line-height: 1.22;
  color: #15385f;
  position: relative;
  width: fit-content;
  padding: .2rem .68rem .2rem .56rem;
  border-radius: 999px;
  border: 1px solid #c6d7f3;
  background: linear-gradient(140deg, #f6faff 0%, #edf4ff 100%);
  box-shadow: 0 10px 20px rgba(16, 34, 61, .08);
}

.page-contact .wysiwyg .elementor-widget-form {
  position: relative;
  border: 1px solid #cfdbef;
  border-radius: 24px;
  padding: 1rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 221, 255, .35) 0%, rgba(201, 221, 255, 0) 47%),
    radial-gradient(circle at 0% 100%, rgba(255, 218, 218, .38) 0%, rgba(255, 218, 218, 0) 44%),
    linear-gradient(154deg, #ffffff 0%, #f4f8ff 60%, #ecf3ff 100%);
  box-shadow:
    0 18px 32px rgba(17, 38, 70, .12),
    inset 0 1px 0 rgba(255, 255, 255, .95);
}

.page-contact .wysiwyg .elementor-widget-form::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c12f2f, #f38b35, #1f4f86);
  opacity: .9;
}

.page-contact .wysiwyg .elementor-widget-form .elementor-form {
  margin: 0;
  position: relative;
  z-index: 1;
}

.page-contact .wysiwyg .elementor-widget-form .elementor-form-fields-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .72rem;
}

.page-contact .wysiwyg .elementor-widget-form .elementor-field-group {
  margin: 0 !important;
  min-width: 0;
}

.page-contact .wysiwyg .elementor-widget-form .elementor-col-100,
.page-contact .wysiwyg .elementor-widget-form .e-form__buttons {
  grid-column: 1 / -1;
}

.page-contact .wysiwyg .elementor-widget-form .elementor-field-label {
  margin-bottom: .32rem;
  color: #2d4668;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.page-contact .wysiwyg .elementor-widget-form .elementor-field {
  width: 100%;
  border: 1px solid #cdd9ed;
  border-radius: 12px;
  background: #fff;
  color: #1c3150;
  padding: .66rem .74rem;
  font-size: .9rem;
  line-height: 1.4;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.page-contact .wysiwyg .elementor-widget-form textarea.elementor-field {
  min-height: 140px;
  resize: vertical;
}

.page-contact .wysiwyg .elementor-widget-form .elementor-field::placeholder {
  color: #7991b1;
}

.page-contact .wysiwyg .elementor-widget-form .elementor-field:focus {
  outline: none;
  border-color: #8caee0;
  box-shadow:
    0 0 0 4px rgba(74, 124, 204, .14),
    0 8px 14px rgba(17, 40, 73, .08);
  background: #fff;
}

.page-contact .wysiwyg .elementor-widget-form .elementor-field-type-submit {
  display: flex;
  justify-content: flex-end;
}

.page-contact .wysiwyg .elementor-widget-form .elementor-button {
  min-width: 180px;
  border: 0;
  border-radius: 999px;
  padding: .68rem 1rem;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: #fff;
  background: linear-gradient(115deg, #1f4f86 0%, #224a7a 52%, #c12f2f 130%);
  box-shadow:
    0 16px 26px rgba(19, 44, 78, .22),
    inset 0 1px 0 rgba(255, 255, 255, .32);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.page-contact .wysiwyg .elementor-widget-form .elementor-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 20px 30px rgba(19, 44, 78, .28),
    inset 0 1px 0 rgba(255, 255, 255, .34);
  filter: saturate(1.05);
}

.page-contact .wysiwyg .elementor-widget-form .elementor-button:active {
  transform: translateY(0);
}

.page-contact .wysiwyg .elementor-widget-form .elementor-button-icon {
  margin-inline-end: .42rem;
}

.page-contact .wysiwyg .elementor-widget-form .elementor-message {
  margin-top: .66rem;
  border-radius: 10px;
  padding: .55rem .68rem;
  font-size: .84rem;
  border: 1px solid #d3e0f3;
  background: #f5f9ff;
  color: #1f3659;
}

.page-contact .wysiwyg .elementor-widget-icon-box {
  margin: 0 !important;
}

.page-contact .wysiwyg .elementor-icon-box-wrapper {
  display: flex;
  align-items: flex-start;
  gap: .64rem;
  border: 1px solid #d9e3f5;
  border-radius: 13px;
  background: #fff;
  padding: .7rem .78rem;
  box-shadow: 0 8px 18px rgba(18, 36, 66, .06);
}

.page-contact .wysiwyg .elementor-icon-box-icon {
  margin: 0 !important;
  line-height: 1;
}

.page-contact .wysiwyg .elementor-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px;
  border: 1px solid #d4e0f6;
  background: #eff4ff;
  color: #1d4c95;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.page-contact .wysiwyg .elementor-icon i,
.page-contact .wysiwyg .elementor-icon svg {
  width: 16px !important;
  height: 16px !important;
  font-size: 16px !important;
  line-height: 16px !important;
}

.page-contact .wysiwyg .elementor-icon-box-content {
  min-width: 0;
}

.page-contact .wysiwyg .elementor-icon-box-title {
  margin: 0;
  font-size: 1rem;
}

.page-contact .wysiwyg .elementor-icon-box-description {
  margin-top: .3rem;
  color: #4d5f7a;
  font-size: .92rem;
  line-height: 1.55;
}

.page-contact .wysiwyg iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(16, 32, 57, .12);
}

.page-about .wysiwyg .elementor-invisible {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
}

.page-about .wysiwyg .e-con-boxed > .e-con-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-about .wysiwyg .e-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-about .wysiwyg .e-con-full {
  flex: 1 1 320px;
  min-width: 0;
}

.page-about .wysiwyg .e-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.page-about .wysiwyg img,
.page-about .wysiwyg .elementor-widget-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.page-about .wysiwyg .elementor-widget-video {
  width: 100%;
  margin: .5rem 0 1rem;
}

/* Imported Elementor content can inject video-play overlays on image blocks. */
.wysiwyg .elementor-custom-embed-image-overlay,
.wysiwyg .elementor-custom-embed-play,
.wysiwyg .elementor-custom-embed-button,
.wysiwyg .elementor-custom-embed-button-wrapper,
.wysiwyg .elementor-widget-video .elementor-image-overlay,
.wysiwyg .elementor-widget-video .elementor-custom-embed-play i,
.wysiwyg .elementor-widget-video .eicon-play {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.wysiwyg .elementor-widget-image a::before,
.wysiwyg .elementor-widget-image a::after,
.wysiwyg .elementor-image a::before,
.wysiwyg .elementor-image a::after {
  content: none !important;
  display: none !important;
}

.page-about .wysiwyg .e-hosted-video {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f1728;
}

.page-about .wysiwyg .e-hosted-video .elementor-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.page-about .wysiwyg video,
.page-about .wysiwyg video.elementor-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #0f1728;
}

.page-about .wysiwyg iframe {
  width: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  display: block;
}

.about-news-section {
  margin-top: 1.2rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--line);
}

.about-news-section h2 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
}

.about-news-grid {
  margin-top: .8rem;
}

.about-news-grid .news-card-media {
  aspect-ratio: 16 / 7;
}

.about-news-empty {
  margin-top: .75rem;
  color: #586073;
}

.site-footer {
  position: relative;
  margin-top: 2.4rem;
  border-top: 1px solid #d6dfef;
  background: linear-gradient(180deg, #f9fbff 0%, #eff4fd 100%);
  overflow: hidden;
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #1b4476 0%, #2d5f99 52%, #1b4476 100%);
  opacity: .9;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 180px at -8% 16%, rgba(52, 86, 132, .09), transparent 64%),
    radial-gradient(600px 240px at 104% 88%, rgba(29, 66, 113, .12), transparent 65%);
  z-index: -1;
}

.footer-top-grid {
  padding: 2.15rem 0 1.35rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  position: relative;
  align-items: stretch;
}

.footer-top-grid > .footer-col {
  position: relative;
  border: 1px solid #d5deec;
  border-radius: 12px;
  padding: 1rem .95rem .9rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 12px 24px rgba(15, 33, 61, .08);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.footer-top-grid > .footer-col::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: #2c5d96;
}

.footer-top-grid > .footer-col:hover {
  border-color: #b8cbe6;
  box-shadow: 0 16px 30px rgba(15, 33, 61, .12);
}

.footer-col h4 {
  margin: 0 0 .72rem;
  font-size: .84rem;
  font-weight: 700;
  color: #16345c;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  padding: .26rem 0 .4rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1f4f86, #7fa2cf);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .48rem;
}

.footer-col li + li {
  margin-top: 0;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: #304765;
  font-size: .92rem;
  line-height: 1.45;
  font-weight: 500;
  transition: color .2s ease;
}

.footer-col a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #9db1ce;
  flex-shrink: 0;
  transition: background-color .2s ease;
}

.footer-col a:hover {
  color: #163f71;
}

.footer-col a:hover::before {
  background: #1f4f86;
}

.footer-newsletter {
  background: linear-gradient(155deg, #112a4b 0%, #1a3e6b 66%, #28578f 100%);
  border-color: #274d7d;
  box-shadow: 0 16px 32px rgba(9, 24, 45, .24);
}

.footer-newsletter::before {
  background: rgba(255, 255, 255, .32);
}

.footer-newsletter h4 {
  color: #f7fbff;
}

.footer-newsletter h4::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, .9), rgba(217, 230, 249, .4));
}

.footer-newsletter p {
  margin: 0 0 .8rem;
  color: #f0f5ff;
  line-height: 1.5;
  font-size: .9rem;
  font-weight: 500;
}

.newsletter-form {
  display: flex;
  align-items: stretch;
  border: 1px solid #ccd9ee;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 18px rgba(9, 23, 44, .18);
}

.newsletter-form input {
  flex: 1;
  border: 0;
  padding: .6rem .74rem;
  font: inherit;
  min-width: 0;
  background: #fff;
  color: #1a3356;
}

.newsletter-form input::placeholder {
  color: #607b9f;
  opacity: 1;
}

.newsletter-form button {
  border: 0;
  border-left: 1px solid #ccd9ee;
  padding: .6rem .92rem;
  background: linear-gradient(145deg, #1f4f86 0%, #173d68 100%);
  color: #fff;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .2s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(145deg, #255a96 0%, #1a4679 100%);
}

.footer-newsletter .newsletter-form {
  border-color: #ccd9ee;
}

.footer-newsletter .newsletter-form button:hover {
  background: linear-gradient(145deg, #255a96 0%, #1a4679 100%);
}

.footer-bottom {
  border-top: 1px solid #d6dfef;
  padding: .22rem 0 1.08rem;
}

.footer-bottom-wrap {
  width: min(1660px, calc(100% - 1.4rem));
  max-width: none;
  margin-top: .36rem;
  padding: .95rem clamp(1rem, 2vw, 1.75rem);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  align-items: center;
  gap: .9rem 1.3rem;
  border: 1px solid #1f436f;
  border-radius: 14px;
  background: linear-gradient(140deg, #12345d 0%, #0f2e53 100%);
  box-shadow: 0 16px 34px rgba(10, 24, 44, .26);
}

.footer-branding {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: clamp(.72rem, 1.3vw, 1.15rem);
}

.footer-branding img {
  width: clamp(156px, 15.6vw, 220px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .26));
}

.footer-brand-meta {
  display: grid;
  gap: .52rem;
}

.copyright {
  color: #e6f0ff;
  font-size: clamp(.86rem, .9vw, .98rem);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: .005em;
}

.footer-contact-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem .95rem;
}

.footer-contact-inline a {
  color: #d8e8ff;
  font-size: .83rem;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  transition: color .2s ease;
}

.footer-contact-inline a strong {
  color: #f3f8ff;
  font-weight: 700;
}

.footer-contact-inline a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .62rem;
  min-width: 0;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(223, 236, 255, .34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  color: #f3f8ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.footer-socials a:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #11335b;
}

.footer-socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.footer-socials img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  background: #1ea655;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 10px 28px rgba(20, 115, 59, .35);
}

.whatsapp-float:hover {
  background: #178143;
}

.whatsapp-float-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.flash {
  margin: .75rem 0;
  border-radius: 10px;
  padding: .7rem .85rem;
  font-weight: 600;
}
.flash-success { background: #e9fff1; color: #1f7a42; border: 1px solid #8fd3aa; }
.flash-error { background: #ffecec; color: #932020; border: 1px solid #f2a4a4; }
.flash-info { background: #ecf6ff; color: #19466c; border: 1px solid #9ec9ea; }

@media (max-width: 1180px) {
  .category-banner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-catalog-grid { grid-template-columns: 1fr; }
  .home-steel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-rfid-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards.cards-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-submenu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-latest-blogs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-latest-news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .applications-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .application-detail-hero { grid-template-columns: 1.05fr .95fr; }
}

@media (max-width: 900px) {
  .site-header .container {
    width: min(1200px, 94%);
  }
  body.mobile-nav-open {
    overflow: hidden;
  }
  .site-header {
    z-index: 140;
  }
  .nav-wrap {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: .45rem;
  }
  .nav-primary-row {
    width: auto;
    justify-content: flex-start;
    gap: .5rem;
  }
  .logo {
    min-width: clamp(190px, 54vw, 246px);
    padding: .35rem .7rem;
  }
  .logo img {
    width: clamp(150px, 48vw, 205px);
    height: clamp(40px, 10.8vw, 54px);
  }
  .mobile-nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 151;
  }
  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    margin: 0;
    background: rgba(11, 22, 39, .48);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
    z-index: 145;
  }
  .nav-wrap.is-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border: 1px solid rgba(214, 226, 245, .92);
    border-right: 0;
    border-radius: 18px 0 0 18px;
    background:
      linear-gradient(168deg, rgba(255, 255, 255, .98) 0%, rgba(244, 248, 255, .98) 100%);
    box-shadow: -14px 0 28px rgba(10, 25, 47, .2);
    padding: .82rem .72rem 1.1rem;
    flex-direction: column;
    align-items: stretch;
    gap: .3rem;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(104%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .28s cubic-bezier(.2, .75, .2, 1), opacity .2s ease, visibility .2s ease;
    z-index: 150;
  }
  .nav-wrap.is-open .nav-panel {
    display: flex;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }
  .main-nav-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .34rem;
  }
  .menu-node {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #dbe6f7;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .94);
    overflow: hidden;
  }
  .menu-link {
    flex: 1 1 auto;
    width: auto;
    padding: .7rem .76rem;
    border-radius: 10px;
    white-space: normal;
    font-weight: 700;
    color: #1f3458;
  }
  .menu-link-parent-only {
    cursor: pointer;
  }
  .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    margin-right: .2rem;
    border: 1px solid #d6e1f3;
    border-radius: 9px;
    background: #fff;
    color: #223c64;
    box-shadow: 0 5px 14px rgba(23, 44, 72, .1);
    cursor: pointer;
  }
  .submenu-toggle span {
    transition: transform .2s ease;
  }
  .menu-node.is-open > .submenu-toggle span {
    transform: rotate(180deg);
  }
  .sub-menu,
  .sub-menu .menu-node .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: .2rem 0 .4rem .62rem;
    min-width: 0;
    margin: 0 .5rem .35rem;
    width: 100%;
    background: transparent;
    border-left: 1px solid #d9e3f5;
  }
  .sub-menu .menu-node {
    background: transparent;
    border: 0;
    box-shadow: none;
    margin: 0;
  }
  .menu-node.has-children:hover > .sub-menu,
  .menu-node.has-children:focus-within > .sub-menu {
    display: none;
  }
  .menu-node.is-open > .sub-menu {
    display: block;
  }
  .sub-menu .menu-link {
    border-radius: 9px;
    padding-block: .52rem;
  }
  .nav-actions {
    grid-column: auto;
    width: 100%;
    padding: .72rem .2rem 0;
    border-top: 1px solid #e5ebf6;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .header-search {
    width: 100%;
    order: -1;
  }
  .search-pill {
    min-width: 38px;
  }
  .header-search-panel {
    position: static;
    width: 100%;
    margin-top: .46rem;
    box-shadow: none;
  }
  .lang-pill,
  .admin-link {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .kosmat-slide-content { max-width: 100%; padding-bottom: 2.2rem; }
  .kosmat-slide-content p { font-size: .95rem; }
  .kosmat-controls { bottom: .75rem; }
  .kosmat-arrow { width: 34px; height: 34px; font-size: 1.25rem; }
  .partner-pill {
    width: 156px;
    height: 68px;
    border-radius: 14px;
    padding: .42rem .58rem;
  }
  .partner-pill img {
    max-height: 38px;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: .85rem;
    bottom: .85rem;
  }
  .whatsapp-float-icon {
    width: 28px;
    height: 28px;
  }
  .category-banner-grid { grid-template-columns: 1fr; }
  .home-catalog-card img { min-height: 180px; max-height: 220px; }
  .home-steel-section {
    padding: .95rem 0 1.05rem;
  }
  .home-steel-inner {
    width: min(1240px, 96%);
  }
  .home-steel-content {
    padding: .78rem .82rem .86rem;
    border-radius: 14px;
  }
  .home-steel-grid { grid-template-columns: 1fr; }
  .home-steel-image-wrap { aspect-ratio: 16 / 10; }
  .home-rfid-section { padding: .92rem .88rem .98rem; }
  .home-rfid-grid { grid-template-columns: 1fr; }
  .cards.cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-featured-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .what-grid { grid-template-columns: 1fr; }
  .what-card img { height: 210px; }
  .product-detail-gallery-panel,
  .product-detail-info-panel {
    border-radius: 14px;
  }
  .product-detail-main-image,
  .product-detail-main-fallback {
    min-height: 260px;
  }
  .product-detail-thumb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-box-shell { padding: .82rem; border-radius: 18px; }
  .contact-box-header-row { grid-template-columns: 1fr; }
  .contact-box-meta-card { padding: .68rem .72rem; }
  .contact-box-grid { grid-template-columns: 1fr; }
  .contact-box-card { padding: .66rem .68rem; }
  .contact-box-bottom { flex-direction: column; align-items: flex-start; }
  .contact-box-note { max-width: 100%; }
  .contact-request-shell { padding: .82rem; border-radius: 20px; }
  .contact-request-grid { grid-template-columns: 1fr; }
  .contact-request-actions .btn { width: 100%; justify-content: center; }
  .page-contact .wysiwyg .elementor-widget-form {
    padding: .84rem;
    border-radius: 20px;
  }
  .page-contact .wysiwyg .elementor-widget-form .elementor-form-fields-wrapper {
    grid-template-columns: 1fr;
  }
  .page-contact .wysiwyg .elementor-widget-form .elementor-col-100,
  .page-contact .wysiwyg .elementor-widget-form .e-form__buttons {
    grid-column: auto;
  }
  .page-contact .wysiwyg .elementor-widget-form .elementor-field-type-submit {
    justify-content: stretch;
  }
  .page-contact .wysiwyg .elementor-widget-form .elementor-button {
    width: 100%;
  }
  .page-contact .wysiwyg .elementor-icon-box-wrapper { padding: .64rem .68rem; }
  .page-about .wysiwyg .e-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .application-detail-hero { grid-template-columns: 1fr; }
  .application-detail-hero-media { min-height: 220px; }
  .application-detail-cta { flex-direction: column; align-items: flex-start; }
  .application-detail-cta .btn { width: 100%; justify-content: center; }
  .order-modal-card {
    width: min(560px, calc(100vw - 1.2rem));
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: .72rem;
  }
  .footer-top-grid > .footer-col {
    padding: .88rem .9rem .84rem;
  }
  .footer-bottom-wrap {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: .72rem;
    padding: .86rem .82rem;
    width: min(1660px, calc(100% - 1rem));
  }
  .footer-branding { flex-direction: column; align-items: flex-start; gap: .55rem; }
  .footer-brand-meta { width: 100%; }
  .footer-contact-inline { gap: .42rem .72rem; }
  .footer-branding img { width: clamp(146px, 48vw, 200px); }
  .footer-socials { justify-content: flex-start; width: 100%; }
  .barcode-ribbon-machine {
    grid-template-columns: 62px 1fr 62px;
  }
  .not-found-hero h1 span {
    min-width: 95px;
    height: 52px;
  }
}

@media (max-width: 640px) {
  .logo {
    min-width: clamp(170px, 62vw, 220px);
    padding: .32rem .62rem;
  }
  .logo img {
    width: clamp(138px, 54vw, 186px);
    height: clamp(36px, 10vw, 48px);
  }
  .cards.cards-4 { grid-template-columns: 1fr; }
  .home-featured-product-grid { grid-template-columns: 1fr; }
  .label-product-card {
    border-radius: 14px;
  }
  .product-detail-gallery-panel,
  .product-detail-info-panel {
    padding: .72rem;
    border-radius: 13px;
  }
  .product-detail-main-image,
  .product-detail-main-fallback {
    min-height: 220px;
    border-radius: 12px;
  }
  .product-detail-thumb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .42rem;
  }
  .product-detail-thumb-grid img {
    height: 82px;
  }
  .category-submenu-grid { grid-template-columns: 1fr; }
  .home-latest-blogs-grid { grid-template-columns: 1fr; }
  .home-latest-blog-media { aspect-ratio: 16 / 9; }
  .home-latest-news-grid { grid-template-columns: 1fr; }
  .home-latest-news-card { min-height: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-media { aspect-ratio: 16 / 9; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-media { aspect-ratio: 16 / 9; }
  .applications-grid { grid-template-columns: 1fr; }
  .application-detail-hero {
    padding: .82rem;
    border-radius: 16px;
  }
  .application-detail-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .application-detail-content,
  .application-detail-highlights,
  .application-detail-cta {
    padding: .8rem;
    border-radius: 13px;
  }
  .contact-request-shell {
    padding: .78rem;
    border-radius: 16px;
  }
  .contact-box-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .order-form-actions {
    flex-direction: column;
  }
  .order-form-actions .btn {
    width: 100%;
  }
  .barcode-ribbon-machine {
    grid-template-columns: 52px 1fr 52px;
    gap: .45rem;
  }
  .barcode-track {
    height: 80px;
  }
  .not-found-hero {
    border-radius: 18px;
  }
  .not-found-hero h1 {
    gap: .45rem;
  }
  .not-found-home-btn {
    width: 100%;
    min-width: 0;
  }
  .newsletter-form {
    flex-direction: column;
    border-radius: 12px;
  }
  .newsletter-form button {
    width: 100%;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
  }
  .footer-socials {
    width: 100%;
    flex-wrap: wrap;
  }
  .footer-contact-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
  }
  .footer-socials a {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .barcode-spool-left,
  .barcode-spool-right,
  .barcode-film {
    animation: none !important;
  }
}
