:root {
  --ink: #172235;
  --muted: #657286;
  --line: #dbe3ee;
  --paper: #ffffff;
  --soft: #f3f6fa;
  --nav: #f0f0f0;
  --blue: #0878d8;
  --blue-dark: #0958a8;
  --teal: #189c9a;
  --deep: #101f35;
  --shadow: 0 18px 45px rgba(22, 34, 53, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: stretch;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: var(--nav);
  border-bottom: 1px solid #d5d5d5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding-right: 26px;
  background: white;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-size: 25px;
  font-weight: 800;
}

.brand-mini-logo {
  width: 76px;
  max-height: 42px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.15;
}

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

.main-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  height: 72px;
  padding: 0 18px;
  color: #1c2738;
  font-size: 16px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus,
.has-dropdown:hover > .nav-link,
.has-dropdown:focus-within > .nav-link {
  color: white;
  background: var(--blue);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 72px;
  left: 0;
  width: 190px;
  display: none;
  background: #eeeeee;
  border: 1px solid #dadada;
  border-top: 0;
  box-shadow: 0 14px 30px rgba(16, 31, 53, 0.12);
  overflow: hidden;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
  display: block;
}

.dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 16px;
  color: #151d2a;
  border-bottom: 1px solid #d8d8d8;
  font-size: 15px;
  text-align: center;
  background: linear-gradient(90deg, var(--blue), var(--blue)) left / 0 100% no-repeat;
  transition: color 180ms ease, background-size 220ms ease, padding-left 180ms ease;
}

.dropdown a:last-child {
  border-bottom: 0;
}

.dropdown a:hover,
.dropdown a:focus {
  color: white;
  background-size: 100% 100%;
  padding-left: 24px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 94px;
  justify-content: flex-end;
  color: var(--muted);
  font-weight: 700;
}

.language-switch a:hover,
.language-switch .active {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  align-self: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}

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

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 6vw, 84px) 70px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media.dark {
  justify-items: end;
  align-content: center;
  padding-right: clamp(28px, 9vw, 140px);
  background:
    linear-gradient(135deg, rgba(8, 120, 216, 0.2), rgba(16, 31, 53, 0.76)),
    repeating-linear-gradient(45deg, #13243d 0 12px, #182d4d 12px 24px);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(8, 21, 39, 0.82) 0%, rgba(8, 21, 39, 0.56) 44%, rgba(8, 21, 39, 0.08) 80%);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ff1eb;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  white-space: nowrap;
}

.btn.primary {
  color: white;
  background: var(--blue);
}

.btn.primary:hover {
  background: var(--blue-dark);
}

.btn.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin: 44px 0 0;
}

.hero-stats div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats dt {
  font-size: 26px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.section,
.band,
.contact {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 64px);
}

.page-hero {
  position: relative;
  min-height: 310px;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 84px) 48px;
  color: white;
  overflow: hidden;
}

.page-hero .image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  color: rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(135deg, rgba(8, 120, 216, 0.16), rgba(16, 31, 53, 0.8)),
    repeating-linear-gradient(45deg, #14243d 0 12px, #1a3152 12px 24px);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 21, 39, 0.82), rgba(8, 21, 39, 0.26));
}

.graphic-hero {
  min-height: 0;
  height: clamp(260px, 31.25vw, 460px);
  padding: 0;
  align-items: stretch;
  background: #eef6ff;
}

.graphic-hero::after {
  display: none;
}

.graphic-hero .page-hero-content {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.graphic-hero .page-banner-image {
  display: block;
  border: 0;
  background-color: #eef6ff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-graphic-hero .page-banner-image {
  background-image: url("./assets/page-banners/about-banner.png");
}

.honor-graphic-hero .page-banner-image {
  background-image: url("./assets/page-banners/honor-banner.png");
}

.video-graphic-hero .page-banner-image {
  background-image: url("./assets/page-banners/video-banner.png");
}

.contact-graphic-hero .page-banner-image {
  background-image: url("./assets/page-banners/contact-banner.png");
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.breadcrumb {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.page-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
}

.page-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  box-sizing: border-box;
  width: min(1440px, 100%);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 82px) clamp(20px, 5vw, 64px);
}

.side-menu {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.side-menu-title {
  padding: 18px 20px;
  color: white;
  background: var(--blue);
  font-size: 20px;
  font-weight: 800;
}

.side-menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  color: #26354a;
  transition: color 180ms ease, background-color 180ms ease, padding-left 180ms ease;
}

.side-menu a::after {
  content: ">";
  color: currentColor;
  font-weight: 900;
  opacity: 0.62;
  transition: transform 180ms ease, opacity 180ms ease;
}

.side-menu a:last-child {
  border-bottom: 0;
}

.side-menu a:hover,
.side-menu a.active {
  color: white;
  background: var(--blue);
  padding-left: 28px;
}

.side-menu a:hover::after,
.side-menu a.active::after {
  transform: translateX(4px);
  opacity: 1;
}

.content-panel {
  min-width: 0;
}

.content-panel > h2 {
  margin-bottom: 16px;
}

.content-panel > p {
  color: var(--muted);
}

.feature-list,
.parameter-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.feature-list article,
.parameter-list div,
.article-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.feature-list article,
.parameter-list div {
  padding: 22px;
}

.feature-list p,
.parameter-list p {
  color: var(--muted);
}

.detail-visual {
  min-height: 340px;
  margin: 26px 0;
  border-radius: 8px;
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-list a {
  display: grid;
  position: relative;
  grid-template-columns: 130px 1fr 38px;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.article-list a::after {
  content: "›";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #0878d9;
  border: 1px solid rgba(8, 120, 216, 0.24);
  border-radius: 50%;
  background: #f4faff;
  font-size: 24px;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.article-list a:hover {
  transform: translateX(6px);
  border-color: rgba(8, 120, 216, 0.46);
  box-shadow: 0 16px 34px rgba(20, 43, 74, 0.08);
}

.article-list a:hover::after {
  color: white;
  background: #0878d9;
  transform: translateX(3px);
}

.article-list time {
  color: var(--muted);
}

.lead-copy {
  margin: 0 0 8px;
  color: var(--blue) !important;
  font-size: 20px;
  font-weight: 800;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.catalog-card {
  overflow: hidden;
  border: 1px solid rgba(184, 196, 211, 0.78);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 44px rgba(22, 34, 53, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

.catalog-main-link {
  display: block;
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 120, 216, 0.48);
  box-shadow: 0 26px 58px rgba(22, 34, 53, 0.14);
}

.catalog-card:focus-visible {
  outline: 3px solid rgba(8, 120, 216, 0.32);
  outline-offset: 3px;
}

.product-article .btn {
  margin-top: 10px;
}

.detail-banner {
  height: 96px;
  overflow: hidden;
  background: #10213a;
}

.detail-banner .image-slot {
  width: 100%;
  height: 100%;
  border: 0;
  color: rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(90deg, rgba(9, 20, 36, 0.72), rgba(9, 20, 36, 0.24)),
    repeating-linear-gradient(45deg, #10213a 0 12px, #183960 12px 24px);
}

.detail-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.detail-location {
  margin: 0 0 22px;
  padding: 18px 0;
  color: #39465a;
  border-bottom: 1px dashed #cfd8e4;
  font-size: 14px;
}

.detail-location::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 18px;
  margin-right: 8px;
  vertical-align: -3px;
  background: #3b3b3b;
}

.detail-location a:hover {
  color: var(--blue);
}

.detail-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.detail-side {
  background: white;
}

.detail-side-title {
  display: grid;
  place-items: center;
  min-height: 76px;
  color: white;
  background: #0878d8;
  font-size: 28px;
  font-weight: 800;
}

.detail-side a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 24px;
  color: white;
  background: #0878d8;
  border-top: 1px solid rgba(255, 255, 255, 0.64);
  font-size: 17px;
  transition: background-color 180ms ease, padding-left 180ms ease;
}

.detail-side a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg);
  transition: transform 180ms ease, opacity 180ms ease;
}

.detail-side a:hover {
  background: #075fb5;
  padding-left: 30px;
}

.detail-side a:hover::after {
  transform: translateX(4px) rotate(45deg);
  opacity: 1;
}

.detail-hotline {
  display: grid;
  gap: 4px;
  min-height: 120px;
  margin-top: 22px;
  padding: 28px 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.35)),
    repeating-linear-gradient(45deg, #eef3f8 0 10px, #e5edf6 10px 20px);
}

.detail-hotline strong {
  font-size: 18px;
}

.detail-hotline span {
  color: #111827;
  font-size: 24px;
  font-weight: 900;
}

.detail-main {
  min-width: 0;
}

.product-summary-box {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
  gap: 30px;
  padding: 12px 18px 25px;
  border: 1px solid #e1e5ec;
  background: white;
}

.product-gallery {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.product-gallery-main,
.product-photo-large {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 366px;
  overflow: hidden;
  border: 1px dashed #bad3ea;
  background: #ffffff;
  color: #172235;
  font-size: 20px;
  font-weight: 900;
}

.product-gallery-main img,
.product-photo-large img {
  display: block;
  width: 100%;
  height: 356px;
  object-fit: contain;
  object-position: center;
  padding: 12px 12px 18px;
  background: transparent;
}

.product-gallery-main small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
}

.product-gallery-caption {
  display: none;
}

.gallery-arrow {
  display: none;
}

.gallery-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

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

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

.gallery-arrow:hover {
  border-color: rgba(8, 120, 216, 0.76);
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(8, 120, 216, 0.2);
  transform: translateY(-50%) scale(1.04);
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.product-gallery-thumbs {
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  padding-top: 2px;
}

.gallery-thumb {
  display: grid;
  place-items: center;
  height: 70px;
  padding: 5px;
  border: 1px solid #d6e3ef;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.98));
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: rgba(8, 120, 216, 0.75);
  box-shadow: 0 10px 20px rgba(8, 120, 216, 0.14);
  transform: translateY(-2px);
}

.product-gallery .is-hidden {
  display: none;
}

.product-summary-text {
  padding: 12px 0 0;
}

.product-summary-text h1 {
  margin: 0 0 22px;
  color: #27364c;
  font-size: 30px;
  line-height: 1.2;
  text-shadow: none;
}

.product-summary-text p {
  color: #445168;
  line-height: 1.9;
}

.detail-consult {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #dfe5ee;
}

.detail-consult span {
  color: #243246;
}

.detail-consult strong {
  display: block;
  color: #0878d8;
  font-size: 28px;
  line-height: 1.1;
}

.detail-intro {
  margin-top: 40px;
}

.detail-intro h2 {
  margin: 0 0 28px;
  padding: 14px 16px;
  border-left: 4px solid #0878d8;
  background: #f0f0f0;
  color: #111827;
  font-size: 27px;
  font-weight: 500;
}

.detail-intro h2 span {
  color: #c5ccd6;
  font-size: 18px;
}

.intro-lines {
  display: grid;
  gap: 8px;
  color: #445168;
  font-size: 16px;
  line-height: 1.7;
}

.intro-lines p {
  margin: 0;
}

.detail-rich-content {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px dashed #cfd8e4;
}

.detail-rich-content p {
  margin: 0;
  color: #334258;
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}

.detail-rich-content figure {
  margin: 28px 0 0;
  padding: 18px;
  border: 1px solid #dbe5f0;
  border-radius: 8px;
  background: #fff;
}

.detail-rich-content img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: #fff;
}

.detail-rich-content figcaption {
  margin-top: 12px;
  color: #65758a;
  font-size: 14px;
  text-align: center;
}

.news-article {
  padding: clamp(30px, 4vw, 52px) clamp(24px, 4.6vw, 56px) clamp(34px, 4.6vw, 56px);
  border: 1px solid rgba(184, 196, 211, 0.78);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.98)),
    white;
  box-shadow: 0 20px 52px rgba(22, 34, 53, 0.09);
}

.news-article h2 {
  margin: 0;
  color: #10213a;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin: 18px 0 0;
  padding-bottom: 20px;
  color: var(--muted);
  border-bottom: 1px dashed #cfd8e4;
}

.news-meta em {
  color: var(--muted);
  font-style: normal;
}

.news-body {
  max-width: 960px;
  margin-top: 28px;
  color: #344156;
  font-size: 17px;
  line-height: 2.05;
}

.news-body p {
  margin: 0 0 22px;
  text-align: justify;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #e1e7ef;
}

.news-article .article-actions .btn {
  min-width: 150px;
}

.news-article .article-actions .btn.primary {
  color: #fff;
  border-color: #0878d8;
  background: linear-gradient(135deg, #1598ef, #0878d8);
  box-shadow: 0 14px 28px rgba(8, 120, 216, 0.18);
}

.news-article .article-actions .btn.primary:hover {
  border-color: #075fb5;
  background: linear-gradient(135deg, #0878d8, #075fb5);
}

.article-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #e1e7ef;
}

.pager-link {
  display: grid;
  gap: 8px;
  min-height: 94px;
  padding: 18px 20px;
  border: 1px solid #d8e2ee;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 120, 216, 0.08), rgba(24, 156, 154, 0.04)),
    white;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pager-link.next {
  text-align: right;
}

.pager-link span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.pager-link strong {
  color: #172235;
  font-size: 16px;
  line-height: 1.45;
}

.pager-link:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 120, 216, 0.55);
  box-shadow: 0 18px 36px rgba(22, 34, 53, 0.1);
}

.pager-link.disabled {
  opacity: 0.56;
  pointer-events: none;
}

.btn.light {
  color: var(--blue);
  border-color: rgba(8, 120, 216, 0.35);
  background: white;
}

.catalog-image {
  min-height: 188px;
  border-width: 0 0 1px;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  padding: 12px;
  object-fit: contain;
  background: #fff;
}

.catalog-card h3 {
  margin: 0;
  padding: 18px 20px 8px;
  color: #10213a;
  font-size: 20px;
  line-height: 1.3;
}

.catalog-card p {
  margin: 0;
  padding: 0 20px 14px;
  color: var(--muted);
}

.read-more-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  min-height: 34px;
  margin: 0 auto 22px;
  color: #0878d9;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  border: 1px solid rgba(8, 120, 217, 0.62);
  border-radius: 4px;
  background: #fff;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.read-more-link:hover,
.read-more-link:focus {
  color: #fff;
  background: #0878d9;
  box-shadow: 0 10px 22px rgba(8, 120, 217, 0.22);
  transform: translateY(-2px);
}

.home-product-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  width: min(1440px, calc(100% - 40px));
  max-width: 1440px;
  margin: 0 auto;
  align-items: start;
}

.home-catalog {
  margin-top: 0;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.advantage-grid article {
  min-height: 250px;
  padding: 28px 24px;
  border: 1px solid rgba(184, 196, 211, 0.78);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 44px rgba(22, 34, 53, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.advantage-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 58px rgba(22, 34, 53, 0.14);
}

.advantage-grid span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 36px;
  margin-bottom: 22px;
  color: white;
  border-radius: 4px;
  background: linear-gradient(135deg, #0b8df0, #075fb5);
  font-weight: 900;
}

.advantage-grid h3 {
  font-size: 20px;
  line-height: 1.35;
}

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

.home-advantages {
  padding-top: 58px;
  padding-bottom: 58px;
}

.advantages-image {
  max-width: 1440px;
  margin: 0 auto;
}

.advantages-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(20, 43, 74, 0.08);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto;
}

.process-flow div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 120px;
  padding: 24px 12px;
  border: 1px solid rgba(184, 196, 211, 0.78);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 44px rgba(22, 34, 53, 0.08);
}

.process-flow span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-weight: 900;
}

.process-flow strong {
  font-size: 17px;
  text-align: center;
}

.client-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 18px;
  max-width: 1440px;
  margin: 0 auto;
}

.client-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 80px) / 6);
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px;
}

.client-track::-webkit-scrollbar {
  display: none;
}

.client-logo {
  min-height: 92px;
  border-radius: 8px;
  scroll-snap-align: start;
}

.client-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(8, 120, 216, 0.24);
  border-radius: 50%;
  color: #0878d9;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(20, 43, 74, 0.1);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.client-arrow:hover,
.client-arrow:focus {
  color: white;
  background: #0878d9;
  transform: translateY(-2px);
}

.band {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head p:last-child,
.about-layout p,
.split p,
.contact-copy p {
  color: var(--muted);
}

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

.product-card,
.video-card,
.news-list a,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.product-card {
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(22, 34, 53, 0.06);
}

.product-card h3,
.product-card p,
.product-card ul {
  padding-inline: 22px;
}

.product-card p {
  min-height: 78px;
  color: var(--muted);
}

.product-card ul {
  margin: 0 0 24px;
  color: #344156;
}

.product-card li {
  margin: 5px 0;
}

.image-slot {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  border: 1px dashed #c5d2e2;
  background:
    linear-gradient(135deg, rgba(8, 120, 216, 0.08), rgba(24, 156, 154, 0.08)),
    repeating-linear-gradient(45deg, #f5f8fc 0 10px, #ecf2f8 10px 20px);
}

.image-slot.dark {
  color: rgba(255, 255, 255, 0.74);
  border: 0;
}

.image-slot span {
  padding: 10px 18px;
  border: 1px dashed currentColor;
  border-radius: 8px;
}

.image-slot small {
  font-size: 13px;
  font-weight: 700;
}

.product-visual {
  height: 172px;
  border-width: 0 0 1px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 6vw, 78px);
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
}

.about-visual {
  min-height: 300px;
}

.about-copy p {
  max-width: 680px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 28px 0 26px;
}

.about-stats span {
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 14px 12px;
  border: 1px solid rgba(8, 120, 216, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 32px rgba(22, 34, 53, 0.06);
}

.about-stats strong {
  color: var(--blue);
  font-size: 24px;
  line-height: 1.1;
}

.about-stats small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.certificate-carousel {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 58px;
}

.certificate-viewport {
  overflow: hidden;
  padding: 8px 2px 22px;
}

.certificate-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  align-items: stretch;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.certificate-track::-webkit-scrollbar {
  display: none;
}

.certificate {
  box-sizing: border-box;
  aspect-ratio: 0.74;
  min-height: 0;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(176, 195, 218, 0.95);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(22, 34, 53, 0.1);
  scroll-snap-align: start;
}

.certificate img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

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

.video-card {
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(22, 34, 53, 0.06);
}

.video-cover {
  min-height: 230px;
  border-width: 0 0 1px;
}

.video-card strong {
  display: block;
  padding: 18px 22px 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  max-width: 1440px;
  margin: 0 auto;
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-panel-link {
  display: block;
  padding: 8px 0;
  border-radius: 8px;
  transition: transform 180ms ease, color 180ms ease;
}

.news-panel-link:hover {
  transform: translateX(6px);
  color: var(--blue);
}

.news-list a {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
}

.news-list time {
  color: var(--muted);
  font-size: 14px;
}

.news-list a:hover {
  border-color: rgba(8, 120, 216, 0.62);
  color: var(--blue);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 34px;
  max-width: 1440px;
  margin: 0 auto 40px;
  border-radius: 8px;
  background: var(--deep);
  color: white;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label,
.contact-form span {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  background: var(--soft);
}

.site-footer a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 18px;
  }

  .nav-link {
    min-width: auto;
    padding: 0 13px;
    font-size: 15px;
  }

  .brand {
    min-width: 190px;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    background: white;
  }

  .brand {
    min-width: 0;
    padding-right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .language-switch {
    min-width: auto;
  }

  .main-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .nav-link {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 48px;
    padding: 0 22px;
    border-top: 1px solid var(--line);
  }

  .nav-link:hover,
  .nav-link:focus,
  .has-dropdown:hover > .nav-link,
  .has-dropdown:focus-within > .nav-link {
    color: var(--blue);
    background: #f7fafd;
  }

  .dropdown {
    position: static;
    display: grid;
    width: 100%;
    border: 0;
    box-shadow: none;
    background: #f1f3f6;
  }

  .dropdown a {
    justify-content: flex-start;
    min-height: 44px;
    padding-left: 42px;
  }

  .hero {
    min-height: 84vh;
    padding-top: 96px;
  }

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

  .about-layout,
  .split,
  .contact,
  .page-layout,
  .home-product-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .client-track {
    grid-auto-columns: calc((100% - 32px) / 3);
  }

  .certificate-carousel {
    padding: 0 50px;
  }

  .certificate-track {
    grid-auto-columns: calc((100% - 18px) / 2);
    gap: 18px;
  }

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

  .detail-layout,
  .product-summary-box {
    grid-template-columns: 1fr;
  }

  .product-gallery-main,
  .product-photo-large {
    min-height: 300px;
  }

  .product-gallery-main img,
  .product-photo-large img {
    height: 300px;
  }

  .gallery-arrow {
    top: 150px;
  }

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

/* Original szzeda-inspired homepage layer */
.company-strip {
  display: grid;
  grid-template-columns: 150px minmax(360px, 1fr) 230px 230px;
  gap: 22px;
  align-items: center;
  min-height: 126px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #fff;
  border-bottom: 1px solid #edf0f4;
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-oval {
  display: grid;
  place-items: center;
  width: 112px;
  height: 58px;
  border: 3px solid #1678c9;
  border-radius: 50%;
  color: #1678c9;
  font-size: 27px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0;
}

.logo-image {
  width: 132px;
  max-height: 76px;
  object-fit: contain;
}

.company-intro h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 26px;
  line-height: 1.2;
}

.company-intro p {
  max-width: 660px;
  margin: 0;
  color: #4d5a6c;
  font-size: 14px;
  line-height: 1.7;
}

.trust-badge {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: #a64b00;
}

.trust-badge strong {
  color: #c66200;
  font-size: 25px;
}

.trust-badge span {
  font-weight: 800;
}

.hotline-block {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 48px;
}

.hotline-block::before {
  content: "☎";
  position: absolute;
  left: 0;
  top: 8px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #111827;
  background: #eef2f7;
  font-size: 18px;
}

.hotline-block span {
  color: #566273;
  font-size: 14px;
}

.hotline-block strong {
  color: #202a3a;
  font-size: 27px;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: #eeeeee;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header .brand {
  display: none;
}

.nav-link {
  height: 72px;
  min-width: 150px;
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus,
.has-dropdown:hover > .nav-link,
.has-dropdown:focus-within > .nav-link,
.has-dropdown.open > .nav-link,
.nav-link.active {
  color: white;
  background: #0878d8;
  box-shadow: none;
}

.dropdown {
  top: 72px;
  width: 210px;
  background: #eeeeee;
  border-color: #d7d7d7;
  box-shadow: 0 18px 32px rgba(16, 31, 53, 0.14);
}

.dropdown a {
  min-height: 58px;
  font-weight: 700;
  background:
    linear-gradient(90deg, var(--blue), #0b91ef) left / 0 100% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 242, 247, 0.92));
}

.dropdown a:hover,
.dropdown a:focus {
  background-size: 100% 100%, 100% 100%;
}

.hero {
  min-height: 620px;
  padding-top: 86px;
}

.hero-content {
  width: min(650px, 100%);
}

.hero .eyebrow {
  color: #c7d6e7;
}

.hero-line {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.hero-line::after {
  content: "";
  width: 110px;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
}

h1 {
  font-size: clamp(38px, 4.5vw, 58px);
}

.hero-media.dark {
  justify-items: center;
  align-content: center;
  padding-left: 46%;
  padding-right: clamp(24px, 7vw, 110px);
  background:
    radial-gradient(circle at 48% 72%, rgba(6, 94, 180, 0.42), transparent 27%),
    linear-gradient(90deg, #101d33 0%, #101d33 45%, #0d203d 100%),
    repeating-linear-gradient(45deg, #101d33 0 12px, #142747 12px 24px);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 23, 41, 0.64), rgba(12, 23, 41, 0.22) 44%, rgba(12, 23, 41, 0.18)),
    linear-gradient(0deg, rgba(0, 52, 127, 0.42), transparent 38%);
}

.hero-stats {
  max-width: 680px;
}

.hero-stats dt {
  font-size: 22px;
}

.float-tools {
  pointer-events: none;
}

.float-tools a {
  pointer-events: auto;
}

main {
  overflow: visible;
}

/* Footer in original-site style */
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 132px;
  margin: 0;
  padding: 42px clamp(32px, 5vw, 72px);
  color: #516783;
  background:
    linear-gradient(#173652, #173652) top / 100% 30px no-repeat,
    #f3f7fb;
  border-top: 1px solid rgba(190, 205, 222, 0.72);
  box-shadow: none;
}

.site-footer p {
  margin: 0;
  color: #516783;
  font-size: 16px;
}

.site-footer a {
  color: #0878d9;
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #075fb5;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 150px;
    padding: 42px 22px 28px;
  }
}
  position: fixed;
  right: 16px;
  top: 42%;
  z-index: 35;
  display: grid;
  width: 88px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(8, 57, 112, 0.24);
}

.float-tools a {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 8px;
  color: white;
  background: #0878d8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.float-tools a:hover {
  background: #075fb5;
}

@media (max-width: 1180px) {
  .company-strip {
    grid-template-columns: 130px 1fr 210px;
  }

  .secondary-hotline {
    display: none;
  }

  .nav-link {
    min-width: 118px;
  }
}

@media (max-width: 980px) {
  .company-strip {
    grid-template-columns: 92px 1fr;
    min-height: auto;
    padding: 16px 20px;
  }

  .trust-badge,
  .hotline-block {
    display: none;
  }

  .company-intro h2 {
    font-size: 20px;
  }

  .company-intro p {
    font-size: 13px;
  }

  .site-header {
    min-height: 68px;
    background: white;
  }

  .site-header .brand {
    display: none;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    min-height: 620px;
    padding-top: 86px;
  }

  .hero-media.dark {
    padding: 0;
  }

  .float-tools {
    display: none;
  }
}

@media (max-width: 640px) {
  .company-strip {
    grid-template-columns: 1fr;
  }

  .company-logo {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 17px;
  }

  .language-switch {
    font-size: 13px;
  }

  .hero-shade {
    background: rgba(8, 21, 39, 0.72);
  }

  .hero-stats,
  .product-grid,
  .certificate-grid,
  .video-grid,
  .catalog-grid,
  .advantage-grid,
  .process-flow,
  .feature-list,
  .parameter-list {
    grid-template-columns: 1fr;
  }

  .client-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 10px;
  }

  .client-track {
    grid-auto-columns: 100%;
  }

  .client-arrow {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .certificate-carousel {
    padding: 0 46px;
  }

  .certificate-track {
    grid-auto-columns: 100%;
  }

  .honor-certificate-grid {
    grid-template-columns: 1fr;
  }

  .certificate-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .article-list a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .pager-link.next {
    text-align: left;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact {
    border-radius: 0;
    margin-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}

/* Premium industrial visual layer */
body {
  background:
    radial-gradient(circle at 12% 0%, rgba(8, 120, 216, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.site-header {
  min-height: 80px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(245, 247, 250, 0.96);
  border-bottom: 1px solid rgba(158, 171, 190, 0.28);
  box-shadow: 0 16px 40px rgba(15, 31, 53, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  min-width: 245px;
  background: rgba(255, 255, 255, 0.82);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0b8df0, #064b9c);
  box-shadow: 0 10px 24px rgba(8, 120, 216, 0.28);
}

.brand strong {
  font-size: 19px;
}

.nav-link {
  height: 80px;
  min-width: 126px;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.nav-link:hover,
.nav-link:focus,
.has-dropdown:hover > .nav-link,
.has-dropdown:focus-within > .nav-link,
.has-dropdown.open > .nav-link,
.nav-link.active {
  color: white;
  background: linear-gradient(180deg, #0b86e7, #0872cf);
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.28);
}

.dropdown {
  top: 80px;
  width: 210px;
  background: rgba(245, 247, 250, 0.98);
  border-color: rgba(180, 190, 204, 0.5);
  box-shadow: 0 22px 48px rgba(16, 31, 53, 0.18);
}

.dropdown a {
  min-height: 58px;
  font-weight: 700;
  background:
    linear-gradient(90deg, var(--blue), #0b91ef) left / 0 100% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 242, 247, 0.92));
}

.dropdown a:hover,
.dropdown a:focus {
  background-size: 100% 100%, 100% 100%;
}

.language-switch {
  min-width: 106px;
}

.hero {
  min-height: 92vh;
  padding-top: 136px;
}

.hero-media.dark,
.page-hero .image-slot {
  background:
    linear-gradient(125deg, rgba(4, 16, 33, 0.86), rgba(7, 42, 84, 0.78) 46%, rgba(7, 120, 216, 0.32)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    repeating-linear-gradient(45deg, #0b1b31 0 12px, #0e2744 12px 24px);
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 34%, rgba(8, 120, 216, 0.22), transparent 24%),
    linear-gradient(90deg, rgba(5, 16, 31, 0.92) 0%, rgba(5, 16, 31, 0.72) 44%, rgba(5, 16, 31, 0.16) 84%);
}

.hero-content {
  width: min(820px, 100%);
}

.eyebrow {
  color: #0b8de9;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #71f3ec;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.5vw, 72px);
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.hero-copy {
  max-width: 720px;
  font-size: 19px;
}

.btn {
  min-height: 48px;
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(8, 120, 216, 0.18);
}

.btn.primary {
  background: linear-gradient(135deg, #0b8df0, #075fb5);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-stats div {
  border-color: rgba(255, 255, 255, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.section,
.band {
  position: relative;
}

.section-head {
  margin-bottom: 46px;
}

.section-head h2,
.content-panel > h2 {
  position: relative;
}

.section-head h2::after,
.content-panel > h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.content-panel > h2::after {
  margin-left: 0;
}

.product-card,
.video-card,
.feature-list article,
.parameter-list div,
.article-list a,
.contact-form,
.side-menu {
  border-color: rgba(184, 196, 211, 0.78);
  box-shadow: 0 18px 44px rgba(22, 34, 53, 0.08);
}

.product-card,
.video-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover,
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 120, 216, 0.48);
  box-shadow: 0 26px 58px rgba(22, 34, 53, 0.14);
}

.image-slot {
  border-color: rgba(130, 154, 184, 0.46);
  background:
    linear-gradient(135deg, rgba(8, 120, 216, 0.12), rgba(24, 156, 154, 0.08)),
    linear-gradient(90deg, rgba(8, 120, 216, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 120, 216, 0.1) 1px, transparent 1px),
    #f4f7fb;
  background-size: auto, 26px 26px, 26px 26px, auto;
}

.product-visual,
.video-cover,
.certificate,
.about-visual,
.detail-visual {
  color: #53627a;
}

.product-card h3 {
  font-size: 22px;
}

.product-card h3,
.video-card strong,
.feature-list h3 {
  color: #10213a;
}

.page-hero {
  min-height: 360px;
  padding-top: 145px;
}

.page-hero::after {
  background:
    radial-gradient(circle at 82% 34%, rgba(8, 120, 216, 0.22), transparent 24%),
    linear-gradient(90deg, rgba(5, 16, 31, 0.88), rgba(5, 16, 31, 0.34));
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.82);
}

.page-layout {
  align-items: start;
}

.side-menu-title {
  background: linear-gradient(135deg, #0b8df0, #075fb5);
}

.side-menu a:hover,
.side-menu a.active {
  background: linear-gradient(90deg, #0878d8, #0b91ef);
}

.contact {
  background:
    radial-gradient(circle at 10% 12%, rgba(8, 120, 216, 0.24), transparent 30%),
    linear-gradient(135deg, #0b182b, #102a4b);
}

.site-footer {
  border-top: 1px solid rgba(184, 196, 211, 0.55);
}

@media (max-width: 1180px) {
  .brand {
    min-width: 210px;
  }

  .nav-link {
    min-width: auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
  }

  .main-nav {
    top: 68px;
  }

  .nav-link {
    height: auto;
    box-shadow: none;
  }

  .dropdown {
    top: auto;
    width: 100%;
  }

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

/* Design trial: cleaner industrial homepage */
:root {
  --ink-deep: #08172b;
  --ink-soft: #5b6b82;
  --line-soft: #d8e1ec;
  --surface: #ffffff;
  --surface-blue: #edf5fc;
}

body {
  color: var(--ink-deep);
  background:
    linear-gradient(180deg, #ffffff 0, #f4f8fc 460px, #eef4f9 100%);
}

html,
body {
  overflow-x: hidden;
}

html {
  overflow-y: scroll;
}

body {
  overflow-y: visible;
}

.site-header {
  height: 78px;
  min-height: 78px;
  padding: 0 clamp(28px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(214, 224, 236, 0.82);
  box-shadow: 0 16px 44px rgba(16, 36, 65, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  min-width: 250px;
  gap: 14px;
}

.site-header .brand {
  display: flex;
}

.brand-mini-logo {
  width: 82px;
  height: 48px;
  object-fit: contain;
  background: white;
  border-radius: 4px;
}

.brand strong {
  color: #0b1b31;
  font-size: 20px;
  letter-spacing: 0;
}

.brand small {
  color: #68788f;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-nav {
  gap: 4px;
  height: 100%;
}

.nav-link {
  height: 78px;
  min-width: 112px;
  padding: 0 18px;
  color: #0e1d31;
  font-size: 16px;
  border-radius: 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 14px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus,
.has-dropdown:hover > .nav-link,
.has-dropdown:focus-within > .nav-link,
.has-dropdown.open > .nav-link,
.nav-link.active {
  color: #fff;
  background: linear-gradient(180deg, #1195ee 0%, #0878d9 100%);
  box-shadow: none;
}

.nav-link:hover::after,
.nav-link:focus::after,
.has-dropdown:hover > .nav-link::after,
.has-dropdown:focus-within > .nav-link::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.dropdown {
  top: 78px;
  width: 212px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(194, 207, 224, 0.82);
  border-top: 0;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 24px 58px rgba(16, 31, 53, 0.2);
}

.dropdown a {
  min-height: 58px;
  color: #17263d;
  font-weight: 700;
  background:
    linear-gradient(90deg, #0d87df, #109af0) left / 0 100% no-repeat,
    #f4f6f9;
  border-bottom: 1px solid rgba(210, 219, 230, 0.92);
  transition: color 180ms ease, background-size 220ms ease, padding-left 220ms ease;
}

.dropdown a:hover,
.dropdown a:focus {
  color: #fff;
  padding-left: 32px;
  background-size: 100% 100%;
}

.header-contact {
  padding-left: 20px;
  border-left: 1px solid #dbe4ee;
}

.header-contact span {
  color: #65758a;
}

.header-contact strong {
  color: #0878d9;
}

.language-switch {
  color: #7a8799;
}

.language-switch .active,
.language-switch a:hover {
  color: #0878d9;
}

.hero {
  min-height: 760px;
  padding: 150px clamp(32px, 7vw, 110px) 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 22%, rgba(23, 154, 240, 0.28), transparent 30%),
    linear-gradient(135deg, #06101f 0%, #081c35 48%, #0a3560 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 78px 0 0 auto;
  width: min(46vw, 640px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.55;
  transform: skewX(-8deg);
}

.hero-media.dark {
  top: 150px;
  right: clamp(32px, 6vw, 96px);
  bottom: auto;
  left: auto;
  width: min(43vw, 620px);
  height: 440px;
  padding: 0;
  place-items: center;
  justify-items: center;
  align-content: center;
  border: 1px solid rgba(124, 178, 224, 0.36);
  border-radius: 10px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    #0b223d;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.hero-media.dark span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 26px;
}

.hero-media.dark small {
  color: rgba(221, 234, 247, 0.72);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(6, 16, 31, 0.94) 0%, rgba(6, 16, 31, 0.78) 45%, rgba(6, 16, 31, 0.08) 80%);
}

.hero-content {
  width: min(680px, 100%);
  z-index: 2;
}

.hero-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #83f4ef;
  font-size: 15px;
}

.hero-line::after {
  content: "";
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, #83f4ef, transparent);
}

h1 {
  font-size: clamp(44px, 5.6vw, 70px);
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: none;
}

.hero-copy {
  max-width: 650px;
  color: rgba(232, 240, 249, 0.86);
  font-size: 18px;
  line-height: 2;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 30px;
}

.hero-badges span {
  padding: 8px 15px;
  color: #dff8ff;
  font-weight: 700;
  border: 1px solid rgba(121, 205, 242, 0.4);
  border-radius: 99px;
  background: rgba(16, 151, 232, 0.16);
}

.hero-actions {
  margin-top: 0;
}

.btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 800;
}

.btn.primary {
  background: linear-gradient(135deg, #1198f0, #0567bf);
  box-shadow: 0 18px 36px rgba(9, 122, 220, 0.32);
}

.btn.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  max-width: 640px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.hero-stats div {
  border-radius: 8px;
  border: 1px solid rgba(151, 191, 228, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats dt {
  color: #75eff0;
}

.hero-stats dd {
  color: rgba(244, 248, 253, 0.9);
}

.section,
.band {
  padding-top: 92px;
  padding-bottom: 92px;
}

.section-head {
  max-width: 850px;
}

.section-head h2 {
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: 0;
}

.section-head p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 17px;
}

.section-head h2::after,
.content-panel > h2::after {
  height: 5px;
  width: 78px;
  margin-top: 18px;
  background: linear-gradient(90deg, #0878d9, #22bbb5);
}

.home-product-layout {
  grid-template-columns: 260px 1fr;
  gap: 34px;
  width: min(1440px, calc(100% - 40px));
  max-width: 1440px;
  align-items: start;
}

.side-menu {
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid rgba(190, 205, 222, 0.88);
  box-shadow: 0 22px 56px rgba(20, 43, 74, 0.1);
}

.side-menu-title {
  padding: 27px 22px;
  font-size: 24px;
  background: linear-gradient(135deg, #0b8ce7, #076cc5);
}

.side-menu a {
  min-height: 58px;
  padding: 0 46px 0 22px;
  color: #182942;
  font-size: 16px;
}

.side-menu a::after {
  right: 22px;
  color: #7c8da2;
}

.side-menu a:hover,
.side-menu a.active {
  color: #fff;
  background: linear-gradient(90deg, #0a83df, #12a0f2);
}

.side-menu a:hover::after,
.side-menu a.active::after {
  color: #fff;
}

.catalog-grid {
  gap: 24px;
}

.catalog-card {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(190, 205, 222, 0.9);
  border-radius: 8px;
  background: white;
  box-shadow: 0 20px 52px rgba(20, 43, 74, 0.09);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.catalog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8, 120, 216, 0.48);
  box-shadow: 0 30px 70px rgba(20, 43, 74, 0.15);
}

.catalog-card h3 {
  margin-top: 20px;
  font-size: 23px;
  line-height: 1.35;
  color: #0d1e35;
}

.catalog-card p {
  color: #5d6d82;
  line-height: 1.85;
}

.catalog-image {
  height: 190px;
  border-width: 0 0 1px;
  border-radius: 0;
}

.home-about {
  background:
    linear-gradient(90deg, rgba(238, 246, 252, 0.94), rgba(248, 251, 254, 0.94));
}

.about-layout {
  align-items: center;
}

.about-layout h2,
.split h2,
.contact h2 {
  letter-spacing: 0;
}

.about-visual {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(176, 195, 218, 0.9);
  background: #fff;
  box-shadow: 0 24px 64px rgba(20, 43, 74, 0.12);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.advantage-grid article {
  border: 1px solid rgba(190, 205, 222, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f9fbfd);
  box-shadow: 0 18px 48px rgba(20, 43, 74, 0.08);
}

.advantage-grid article span {
  color: #0878d9;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(360px, 0.8fr);
  gap: 70px;
  align-items: center;
}

.news-panel-link {
  padding: 34px 0;
  color: inherit;
  text-decoration: none;
}

.news-panel-link h2 {
  font-size: clamp(40px, 5vw, 62px);
}

.news-list {
  gap: 14px;
}

.news-list a {
  min-height: 82px;
  border: 1px solid rgba(190, 205, 222, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(90deg, #0b8ce7, #0b8ce7) left / 4px 0 no-repeat,
    white;
  box-shadow: 0 16px 44px rgba(20, 43, 74, 0.07);
  transition: transform 190ms ease, background-size 190ms ease, border-color 190ms ease;
}

.news-list a:hover {
  transform: translateX(8px);
  background-size: 4px 100%;
  border-color: rgba(8, 120, 216, 0.5);
}

.home-news {
  background: linear-gradient(180deg, #f5f9fd, #edf4fa);
}

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

.news-category-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(190, 205, 222, 0.92);
  border-radius: 10px;
  background: white;
  box-shadow: 0 20px 52px rgba(20, 43, 74, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.news-category-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #0878d9, #22bbb5);
}

.news-category-card:hover {
  transform: translateY(-7px);
  border-color: rgba(8, 120, 216, 0.5);
  box-shadow: 0 30px 70px rgba(20, 43, 74, 0.14);
}

.news-category-title {
  display: grid;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.news-category-title span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: white;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b8ce7, #076cc5);
  font-weight: 900;
}

.news-category-title h3 {
  margin: 0 0 10px;
  color: #0d1e35;
  font-size: 30px;
  letter-spacing: 0;
}

.news-mini-link {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  color: #10213a;
  text-decoration: none;
  border-top: 1px solid rgba(210, 220, 232, 0.9);
}

.news-mini-link time {
  color: #62748c;
  font-size: 14px;
}

.news-mini-link strong {
  line-height: 1.55;
}

.news-mini-link:hover strong,
.news-category-title:hover h3 {
  color: #0878d9;
}

.news-sections {
  display: grid;
  gap: 42px;
}

.news-section {
  scroll-margin-top: 110px;
}

.news-section.is-hidden {
  display: none;
}

.news-section h2 {
  margin: 0 0 20px;
  color: #10213a;
  font-size: 34px;
  letter-spacing: 0;
}

.list-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(202, 216, 232, 0.88);
}

.list-pagination a {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  color: #51657e;
  text-decoration: none;
  border: 1px solid rgba(185, 204, 225, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(20, 43, 74, 0.06);
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.list-pagination a:hover,
.list-pagination a.active {
  color: white;
  border-color: #0878d9;
  background: linear-gradient(135deg, #0b8ce7, #076cc5);
  transform: translateY(-2px);
}

.list-pagination .home-page-link {
  min-width: 68px;
}

/* Real client logo display */
.client-logo {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 14px 18px;
  border: 1px solid rgba(179, 202, 226, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 14px 32px rgba(20, 43, 74, 0.06);
  text-shadow: none;
}

.client-logo img {
  display: block;
  width: 100%;
  max-width: 168px;
  height: 58px;
  object-fit: contain;
  object-position: center;
}

.client-logo-wide img {
  max-width: 190px;
}

.client-logo-dark {
  background: #0b0f18 !important;
}

.client-logo-dark img {
  max-width: 154px;
}

/* Temporary local images for previewing real image layout */
.hero-media.dark {
  background:
    linear-gradient(90deg, rgba(8, 18, 34, 0.16), rgba(8, 18, 34, 0.02)),
    url("./assets/temp-hero.svg") center / cover no-repeat;
}

.page-hero .image-slot,
.detail-banner .image-slot {
  background:
    linear-gradient(90deg, rgba(5, 16, 31, 0.72), rgba(5, 16, 31, 0.18)),
    url("./assets/temp-page-banner.svg") center / cover no-repeat;
}

.catalog-card:nth-child(3n + 1) .catalog-image,
.product-card:nth-child(3n + 1) .product-visual,
.detail-visual {
  background: url("./assets/temp-product-blue.svg") center / cover no-repeat;
}

.catalog-card:nth-child(3n + 2) .catalog-image,
.product-card:nth-child(3n + 2) .product-visual {
  background: url("./assets/temp-product-teal.svg") center / cover no-repeat;
}

.catalog-card:nth-child(3n) .catalog-image,
.product-card:nth-child(3n) .product-visual,
.news-cover {
  background: url("./assets/temp-product-dark.svg") center / cover no-repeat;
}

.client-logo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    url("./assets/temp-client.svg") center / cover no-repeat;
}

.catalog-image,
.product-visual,
.about-visual,
.certificate,
.client-logo,
.news-cover,
.detail-visual {
  color: #10213a;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.82);
}

.certificate {
  height: auto;
  background: #fff;
  text-shadow: none;
}

.certificate img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.honor-certificate-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1080px;
  margin: 28px 0 0;
}

.honor-certificate-grid .certificate {
  aspect-ratio: 0.72;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(19, 46, 82, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
  will-change: transform;
}

.honor-certificate-grid .certificate img {
  transition: transform 260ms ease, filter 260ms ease;
}

.honor-certificate-grid .certificate:hover,
.honor-certificate-grid .certificate:focus-within {
  border-color: rgba(0, 132, 255, 0.58);
  background-color: #fff;
  box-shadow: 0 28px 54px rgba(11, 48, 89, 0.18);
  transform: translateY(-10px);
}

.honor-certificate-grid .certificate:hover img,
.honor-certificate-grid .certificate:focus-within img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.025);
}

.certificate-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 120, 216, 0.28);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(20, 43, 74, 0.1);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.certificate-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.certificate-arrow[data-certificate-prev] {
  left: 0;
}

.certificate-arrow[data-certificate-prev]::before {
  transform: translate(-42%, -50%) rotate(-45deg);
}

.certificate-arrow[data-certificate-next] {
  right: 0;
}

.certificate-arrow[data-certificate-next]::before {
  transform: translate(-58%, -50%) rotate(135deg);
}

.certificate-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  color: #fff;
  border-color: var(--blue);
  background: linear-gradient(135deg, #0b8df0, #0878d8);
  box-shadow: 0 20px 44px rgba(8, 120, 216, 0.22);
}

.hero-media.dark span,
.hero-media.dark small {
  padding: 8px 14px;
  color: white;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(5, 18, 34, 0.46);
  backdrop-filter: blur(8px);
}

.contact {
  margin: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(7, 20, 37, 0.94), rgba(8, 53, 92, 0.94)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 40px 40px;
}

.contact-form {
  border-radius: 10px;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 24px;
  }

  .brand {
    min-width: 210px;
  }

  .nav-link {
    min-width: auto;
    padding: 0 13px;
  }

  .hero-media.dark {
    width: 40vw;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 68px;
    min-height: 68px;
  }

  .brand-mini-logo {
    width: 66px;
    height: 42px;
  }

  .main-nav {
    top: 68px;
  }

  .nav-link {
    height: auto;
  }

  .hero {
    min-height: auto;
    padding: 112px 22px 58px;
  }

  .hero::before {
    display: none;
  }

  .hero-media.dark {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 260px;
    margin-bottom: 32px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(6, 16, 31, 0.92), rgba(6, 16, 31, 0.72));
  }

  .hero-stats,
  .home-product-layout,
  .split,
  .news-category-grid {
    grid-template-columns: 1fr;
  }

  .certificate-carousel {
    padding: 0 50px;
  }

  .certificate-track {
    grid-auto-columns: calc((100% - 18px) / 2);
    gap: 18px;
  }

  .section,
  .band {
    padding: 64px 22px;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-visual,
  .about-visual img {
    min-height: 260px;
  }

  .certificate-carousel {
    padding: 0 46px;
  }

  .certificate-track {
    grid-auto-columns: 100%;
    gap: 16px;
  }

  .certificate-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
}

/* Final footer override: original-site style */
.site-footer {
  margin: 0;
  padding: 0;
  color: white;
  background: #142238;
  border: 0;
  box-shadow: none;
}

.footer-inner {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-links-bar {
  background: linear-gradient(90deg, #1d669d, #0f82cb);
}

.footer-links-bar .footer-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 68px;
}

.footer-links-bar strong {
  font-size: 20px;
  letter-spacing: 0;
}

.footer-links-bar a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  text-decoration: none;
}

.footer-main {
  padding: 82px 0 42px;
  background:
    radial-gradient(circle at 80% 28%, rgba(8, 120, 216, 0.16), transparent 28%),
    linear-gradient(135deg, #121f35 0%, #142238 56%, #0d1729 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 0.85fr;
  gap: clamp(38px, 6vw, 88px);
  align-items: start;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(86px, 1fr));
  gap: 18px 34px;
  margin-bottom: 48px;
}

.site-footer .footer-nav a,
.site-footer .footer-links-bar a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  text-decoration: none;
}

.footer-phone::before {
  content: "☎";
  color: #0b8de9;
  font-size: 23px;
}

.footer-contact-block {
  display: grid;
  gap: 24px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
}

.footer-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #0b8de9;
  font-weight: 900;
}

.footer-contact-item strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
}

.site-footer p,
.footer-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.85;
}

.footer-record {
  padding-top: 4px;
}

.footer-qr-block {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-qr-block div {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.footer-qr-block img {
  width: 104px;
  height: 104px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.footer-qr-block span {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #6ee8ef;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-qr-block {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .footer-links-bar .footer-inner,
  .footer-qr-block {
    flex-wrap: wrap;
  }

  .footer-main {
    padding: 56px 0 34px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .footer-phone {
    font-size: 24px;
  }
}

/* Final responsive fixes */
.float-tools {
  position: fixed;
  right: 24px;
  top: 50%;
  z-index: 60;
  display: grid;
  width: 88px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(8, 57, 112, 0.24);
  transform: translateY(-50%);
  pointer-events: none;
}

.float-tools a {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 8px;
  color: white;
  background: #0878d8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  pointer-events: auto;
}

.float-tools a:hover,
.float-tools a:focus {
  background: #075fb5;
}

@media (max-width: 1280px) {
  .float-tools {
    right: 10px;
    width: 76px;
  }

  .float-tools a {
    min-height: 56px;
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .float-tools {
    display: none;
  }
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: 1fr 1.15fr;
  }

  .footer-qr-block {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .footer-links-bar .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
  }

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

  .footer-main {
    padding: 46px 0 32px;
  }

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

  .footer-contact-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-qr-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 112px));
  }
}

/* Final footer layout polish: keep the reference style on desktop/tablet */
.site-footer {
  display: block;
  width: 100%;
  color: #fff;
  background: #142238;
}

.site-footer .footer-inner {
  width: min(1240px, calc(100% - 72px));
  margin: 0 auto;
}

.site-footer .footer-links-bar {
  display: block;
  width: 100%;
  background: #1e6499;
}

.site-footer .footer-links-bar .footer-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  min-height: 68px;
  padding: 0;
}

.site-footer .footer-main {
  display: block;
  padding: 76px 0 50px;
  background: #142238;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(370px, 1.25fr) minmax(230px, 0.8fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.site-footer .footer-nav {
  grid-template-columns: repeat(3, minmax(74px, 1fr));
  gap: 18px 30px;
  margin: 0 0 46px;
}

.site-footer .footer-contact-block {
  gap: 22px;
}

.site-footer .footer-contact-item {
  grid-template-columns: 28px 1fr;
  align-items: start;
}

.site-footer .footer-qr-block {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 18px;
}

.site-footer .footer-qr-block > div {
  min-width: 112px;
}

.site-footer .qr-placeholder,
.site-footer .footer-qr-block img {
  width: 104px;
  height: 104px;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  object-fit: cover;
}

.site-footer .footer-qr-block img {
  display: block;
}

.site-footer .footer-links-bar strong {
  white-space: nowrap;
}

.site-footer .footer-links-bar a,
.site-footer .footer-nav a {
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .site-footer .footer-inner {
    width: min(100% - 48px, 1240px);
  }

  .site-footer .footer-grid {
    grid-template-columns: minmax(240px, 0.85fr) minmax(330px, 1.15fr) minmax(210px, 0.75fr);
    gap: 28px;
  }

  .site-footer .footer-nav {
    gap: 16px 18px;
  }

  .site-footer .footer-phone {
    font-size: 26px;
  }

  .site-footer .qr-placeholder {
    width: 92px;
    height: 92px;
  }
}

@media (max-width: 860px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer .footer-qr-block {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-inner {
    width: min(100% - 28px, 1240px);
  }

  .site-footer .footer-links-bar .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
  }

  .site-footer .footer-main {
    padding: 44px 0 34px;
  }

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

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

  .site-footer .footer-qr-block {
    flex-wrap: wrap;
  }
}

/* Refined top dropdown */
.site-header .nav-item {
  position: relative;
}

.site-header .dropdown {
  top: 78px;
  left: 50%;
  width: clamp(124px, 9.5vw, 148px);
  padding: 6px 0;
  overflow: hidden;
  border: 1px solid rgba(207, 217, 230, 0.92);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(13, 31, 55, 0.14);
  transform: translateX(-50%);
}

.site-header .dropdown a {
  position: relative;
  justify-content: center;
  min-height: 39px;
  padding: 0 12px;
  color: #10213a;
  border-bottom: 0;
  background: transparent;
  font-size: clamp(13px, 0.9vw, 14px);
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, padding-left 180ms ease;
}

.site-header .dropdown a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 4px;
  height: 0;
  border-radius: 99px;
  background: #0b8de9;
  transform: translateY(-50%);
  transition: height 180ms ease;
}

.site-header .dropdown a + a {
  border-top: 1px solid rgba(222, 229, 238, 0.88);
}

.site-header .dropdown a:hover,
.site-header .dropdown a:focus {
  color: #0878d9;
  padding-left: 12px;
  background: #f2f8fd;
}

.site-header .dropdown a:hover::before,
.site-header .dropdown a:focus::before {
  height: 20px;
}

/* Product image presentation polish */
.catalog-grid {
  gap: clamp(24px, 2.2vw, 34px);
}

.catalog-card {
  border-color: rgba(177, 199, 222, 0.92);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.98));
  box-shadow: 0 22px 58px rgba(17, 43, 77, 0.11);
}

.catalog-card:hover {
  border-color: rgba(8, 120, 216, 0.62);
  box-shadow: 0 34px 78px rgba(17, 43, 77, 0.17);
}

.catalog-image {
  display: grid;
  place-items: center;
  height: clamp(250px, 20vw, 310px);
  min-height: 250px;
  overflow: hidden;
  color: #10213a;
  border-bottom: 1px dashed rgba(174, 199, 224, 0.95);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.95) 0 34%, rgba(241, 248, 254, 0.92) 64%, rgba(229, 241, 252, 0.86) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 254, 0.96));
}

.catalog-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(10px, 1.1vw, 18px);
  object-fit: contain;
  object-position: center;
  background: transparent;
  transform: scale(1.18);
  transform-origin: center;
  transition: transform 260ms ease;
}

.catalog-card:hover .catalog-image img {
  transform: scale(1.24);
}

.catalog-card:first-child .catalog-image {
  height: clamp(285px, 23vw, 350px);
  min-height: 285px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 30%, rgba(235, 247, 255, 0.92) 62%, rgba(220, 237, 252, 0.88) 100%),
    linear-gradient(145deg, #ffffff, #edf7ff);
}

.catalog-card:first-child .catalog-image img {
  padding: clamp(4px, 0.5vw, 10px);
  transform: scale(1.44);
}

.catalog-card:first-child:hover .catalog-image img {
  transform: scale(1.5);
}

.catalog-card h3 {
  padding: 22px 24px 8px;
}

.catalog-card p {
  padding: 0 24px 18px;
}

@media (max-width: 980px) {
  .catalog-image,
  .catalog-card:first-child .catalog-image {
    height: clamp(230px, 44vw, 320px);
    min-height: 230px;
  }
}

@media (max-width: 560px) {
  .catalog-image,
  .catalog-card:first-child .catalog-image {
    height: 230px;
    min-height: 230px;
  }

  .catalog-image img {
    transform: scale(1.12);
  }

  .catalog-card:first-child .catalog-image img {
    transform: scale(1.3);
  }
}

/* Product image complete-view adjustment */
.catalog-image {
  height: clamp(240px, 18vw, 290px);
  min-height: 240px;
  padding: clamp(10px, 1.2vw, 18px);
}

.catalog-image img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  transform: none;
}

.catalog-card:hover .catalog-image img {
  transform: scale(1.035);
}

.catalog-card:first-child .catalog-image {
  height: clamp(270px, 20vw, 320px);
  min-height: 270px;
  padding: clamp(8px, 1vw, 14px);
}

.catalog-card:first-child .catalog-image img {
  padding: 0;
  object-fit: contain;
  transform: none;
}

.catalog-card:first-child:hover .catalog-image img {
  transform: scale(1.035);
}

@media (max-width: 560px) {
  .catalog-image,
  .catalog-card:first-child .catalog-image {
    height: 230px;
    min-height: 230px;
  }

  .catalog-image img,
  .catalog-card:first-child .catalog-image img {
    transform: none;
  }
}

/* Product images should visually fill the preview frame */
.catalog-image:has(img) {
  padding: 0;
  background: #fff;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.catalog-card:first-child .catalog-image img {
  object-fit: cover;
  object-position: center;
}

.catalog-card .catalog-image:has(> img),
.catalog-card:first-child .catalog-image:has(> img) {
  padding: 0 !important;
  background: #fff;
}

.catalog-image.has-article-cover {
  padding: 10px 12px 18px !important;
  border-color: rgba(8, 120, 216, 0.28);
  background: #fff;
}

.catalog-image.has-article-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.catalog-card:first-child .catalog-image.has-article-cover {
  height: clamp(300px, 21vw, 340px);
  min-height: 300px;
  padding: 8px 12px 22px !important;
}

.catalog-card .catalog-image.has-article-cover > img,
.catalog-card:first-child .catalog-image.has-article-cover > img {
  object-fit: contain !important;
  object-position: center bottom;
}

/* Unified product list image frames */
.catalog-card .catalog-image,
.catalog-card:first-child .catalog-image {
  height: clamp(300px, 21vw, 340px);
  min-height: 300px;
  padding: 8px 12px 22px !important;
  border-bottom: 1px dashed rgba(174, 199, 224, 0.95);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.98) 0 42%, rgba(242, 249, 255, 0.96) 76%, rgba(232, 243, 253, 0.92) 100%),
    linear-gradient(145deg, #ffffff, #eef8ff);
}

.catalog-card .catalog-image:has(> img),
.catalog-card:first-child .catalog-image:has(> img),
.catalog-card .catalog-image.has-article-cover,
.catalog-card:first-child .catalog-image.has-article-cover {
  padding: 8px 12px 22px !important;
  background: #fff;
}

.catalog-card .catalog-image > img,
.catalog-card:first-child .catalog-image > img,
.catalog-card .catalog-image.has-article-cover > img,
.catalog-card:first-child .catalog-image.has-article-cover > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center bottom;
  transform: none;
}

.catalog-card:hover .catalog-image > img,
.catalog-card:first-child:hover .catalog-image > img {
  transform: scale(1.025);
}

@media (max-width: 560px) {
  .catalog-card .catalog-image,
  .catalog-card:first-child .catalog-image {
    height: 240px;
    min-height: 240px;
    padding: 8px 10px 18px !important;
  }
}

/* Match category product list width with homepage product display */
.page-layout:has(.catalog-grid) {
  width: min(1440px, calc(100% - 40px));
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 980px) {
  .site-header .dropdown {
    left: auto;
    width: 100%;
    padding: 0;
    transform: none;
    border-radius: 0;
    box-shadow: none;
  }
}

/* Final contact section centering */
main > .contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(46px, 7vw, 92px);
  width: min(1440px, calc(100% - 72px));
  max-width: 1440px;
  min-height: 640px;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 112px) clamp(56px, 6vw, 82px);
  border-radius: 0;
  background:
    radial-gradient(circle at 72% 38%, rgba(8, 120, 216, 0.14), transparent 28%),
    linear-gradient(135deg, #142238 0%, #173652 100%);
  box-shadow: none;
}

main > .contact .contact-copy {
  max-width: 560px;
}

main > .contact .contact-copy h2 {
  font-size: clamp(42px, 4vw, 58px);
}

main > .contact .contact-form {
  width: min(100%, 460px);
  justify-self: end;
  padding: 28px;
}

@media (max-width: 980px) {
  main > .contact {
    grid-template-columns: 1fr;
    width: min(100% - 44px, 1180px);
    min-height: auto;
    padding: 58px 34px;
  }

  main > .contact .contact-form {
    justify-self: start;
    width: 100%;
  }
}

@media (max-width: 560px) {
  main > .contact {
    width: 100%;
    padding: 48px 22px;
  }
}

.about-sections {
  display: grid;
  gap: 54px;
}

.about-section {
  scroll-margin-top: 110px;
}

.about-section + .about-section {
  padding-top: 42px;
  border-top: 1px solid rgba(202, 216, 232, 0.9);
}

.about-lead {
  display: grid;
  gap: 12px;
  max-width: 980px;
  color: #526981;
  font-size: 17px;
  line-height: 1.95;
}

.about-lead p {
  margin: 0;
}

.about-number-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 34px;
}

.about-number-wall article {
  position: relative;
  min-height: 132px;
  padding: 24px 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(149, 185, 221, 0.72);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 192, 189, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff, #f6fbff);
  box-shadow: 0 20px 48px rgba(13, 32, 56, 0.08);
}

.about-number-wall article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 86px;
  height: 86px;
  border: 18px solid rgba(8, 120, 216, 0.08);
  border-radius: 50%;
}

.about-number-wall strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #0878d8;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.about-number-wall strong span {
  color: #18aaa8;
  font-size: 18px;
  font-weight: 900;
}

.about-number-wall p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #53677e;
  font-weight: 800;
  line-height: 1.5;
}

.about-capability-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-capability-list article {
  position: relative;
  min-height: 188px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.98)),
    #fff;
  box-shadow: 0 22px 56px rgba(13, 32, 56, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-capability-list article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #0878d8, #18c0bd);
  opacity: 0;
  transition: opacity 180ms ease;
}

.about-capability-list article:hover {
  border-color: rgba(8, 120, 216, 0.72);
  box-shadow: 0 30px 70px rgba(8, 120, 216, 0.13);
  transform: translateY(-5px);
}

.about-capability-list article:hover::before {
  opacity: 1;
}

.about-capability-list article > span {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0878d8, #19a7f2);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 10px 22px rgba(8, 120, 216, 0.22);
}

.about-capability-list h3 {
  margin-top: 18px;
}

.about-capability-list p {
  line-height: 1.75;
}

.culture-list.about-capability-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-factory-carousel {
  position: relative;
  margin: 28px 0 30px;
}

.about-carousel-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(143, 171, 205, 0.76);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(8, 120, 216, 0.08), rgba(24, 156, 154, 0.06)),
    #fff;
  box-shadow: 0 26px 70px rgba(13, 32, 56, 0.12);
}

.about-carousel-track {
  position: relative;
  min-height: clamp(360px, 38vw, 520px);
}

.about-carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 420ms ease, transform 520ms ease;
  pointer-events: none;
}

.about-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.about-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-carousel-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(5, 16, 31, 0.76), rgba(5, 16, 31, 0));
  pointer-events: none;
}

.about-carousel-slide figcaption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 13px 18px;
  border: 1px solid rgba(127, 221, 255, 0.38);
  border-radius: 6px;
  background: rgba(5, 21, 39, 0.74);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.about-carousel-slide figcaption span {
  color: #6ff5ff;
  font-size: 22px;
  letter-spacing: 0;
}

.about-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(159, 202, 244, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0878d8;
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(13, 32, 56, 0.18);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.about-factory-carousel .about-carousel-btn {
  display: none;
}

.about-carousel-btn:hover {
  background: #0878d8;
  color: #fff;
  transform: translateY(-50%) scale(1.04);
}

.about-carousel-btn.prev {
  left: 20px;
}

.about-carousel-btn.next {
  right: 20px;
}

.about-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
}

.about-carousel-dots button {
  width: 24px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(124, 153, 188, 0.45);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.about-carousel-dots button.is-active {
  width: 42px;
  background: linear-gradient(90deg, #0878d8, #18c0bd);
}

@media (max-width: 900px) {
  .about-carousel-track {
    min-height: 330px;
  }

  .about-carousel-slide figcaption {
    left: 18px;
    bottom: 18px;
    min-width: 0;
    max-width: calc(100% - 36px);
    font-size: 16px;
  }

  .about-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .about-carousel-btn.prev {
    left: 12px;
  }

  .about-carousel-btn.next {
    right: 12px;
  }
}

@media (max-width: 560px) {
  .about-carousel-track {
    min-height: 260px;
  }

  .about-carousel-slide figcaption {
    padding: 10px 13px;
    font-size: 14px;
  }

  .about-carousel-slide figcaption span {
    font-size: 18px;
  }

  .about-carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
}

.culture-list article {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

@media (max-width: 1180px) {
  .about-number-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .about-lead {
    font-size: 15px;
    line-height: 1.8;
  }

  .about-number-wall,
  .about-capability-list,
  .culture-list.about-capability-list {
    grid-template-columns: 1fr;
  }

  .about-number-wall article,
  .about-capability-list article {
    min-height: 0;
  }
}

.video-sections {
  display: grid;
  gap: 42px;
}

.video-section {
  scroll-margin-top: 110px;
}

.video-section.is-hidden {
  display: none;
}

.video-side a::after {
  color: #a7b8cc;
  font-weight: 900;
}

.video-side a.active::after,
.video-side a:hover::after {
  color: #fff;
}

.video-section > p {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 270px));
  justify-content: space-between;
  gap: 26px;
}

.video-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.video-card video,
.video-thumb,
.video-cover {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid rgba(176, 198, 224, 0.78);
  background-color: #f4f8fd;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  object-fit: contain;
}

.video-card video {
  background: #07192e;
}

.video-thumb {
  position: relative;
  padding: 0;
  cursor: pointer;
  background-color: #eef4fb;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  text-decoration: none;
}

.video-thumb.has-video-preview {
  overflow: hidden;
  background: #f4f8fd;
}

.video-thumb.has-video-preview video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #f4f8fd;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

.video-thumb::before,
.video-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 19, 34, 0.02), rgba(4, 19, 34, 0.18));
}

.video-thumb span,
.video-cover::after {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  color: transparent;
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.video-cover {
  position: relative;
  overflow: hidden;
  color: transparent;
}

.video-cover::after {
  content: "▶";
  color: #fff;
  font-size: 42px;
  line-height: 1;
  text-indent: 3px;
  text-shadow: 0 10px 24px rgba(4, 19, 34, 0.4);
}

.video-thumb span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  filter: drop-shadow(0 10px 18px rgba(4, 19, 34, 0.4));
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 30px solid #fff;
}

.video-card:hover .video-thumb span,
.video-card:hover .video-cover::after {
  transform: translate(-50%, -50%) scale(1.05);
  opacity: 0.92;
}

.video-card-copy {
  padding: 18px 18px 20px;
}

.video-card-copy strong,
.video-card strong {
  padding: 0;
  line-height: 1.45;
}

.video-card-copy strong a {
  color: inherit;
  text-decoration: none;
}

.video-card-copy strong a:hover,
.video-card-copy strong a:focus {
  color: var(--blue);
}

.video-card-copy p {
  display: none;
}

.video-card strong {
  display: block;
  padding: 18px 18px 20px;
  text-align: center;
}

.video-card-copy strong {
  padding: 0;
  text-align: center;
}

.video-article {
  overflow: hidden;
}

.video-article-player {
  width: min(100%, 641px);
  margin: 24px 0 28px;
  overflow: hidden;
  border: 1px solid rgba(176, 198, 224, 0.82);
  border-radius: 10px;
  background: #f4f8fd;
  box-shadow: 0 24px 58px rgba(22, 34, 53, 0.12);
}

.video-article-player video {
  display: block;
  width: 100%;
  height: 658px;
  max-height: 76vh;
  background: #f4f8fd;
  object-fit: contain;
}

.video-player-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  gap: 12px;
  padding: 44px 24px;
  color: #5b6c84;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(190, 216, 240, 0.38) 1px, transparent 1px),
    linear-gradient(rgba(190, 216, 240, 0.38) 1px, transparent 1px),
    linear-gradient(180deg, #eef6ff, #f9fcff);
  background-size: 32px 32px, 32px 32px, auto;
}

.video-player-placeholder strong {
  color: var(--ink);
  font-size: 24px;
}

.video-player-placeholder span {
  display: block;
  max-width: 420px;
  line-height: 1.8;
}

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

  .video-card video,
  .video-thumb,
  .video-cover {
    height: auto;
  }
}

@media (max-width: 720px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card video,
  .video-thumb,
  .video-cover {
    height: auto;
  }

  .video-article-player video {
    height: min(620px, 118vw);
  }
}

.side-phone-box {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 18px 16px 18px;
  padding: 26px 22px 24px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(110, 232, 239, 0.26), transparent 34%),
    linear-gradient(135deg, #0b8de9, #075fb5 62%, #10213a);
  border-top: 0;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(8, 82, 155, 0.22);
}

.side-phone-box::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border: 18px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.side-phone-box > * {
  position: relative;
  z-index: 1;
}

.side-phone-box span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.side-phone-box strong {
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.side-phone-box strong::before {
  content: "☎ ";
  color: #78f2ef;
}

.side-phone-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 14px;
}

.side-phone-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  margin-top: 4px;
  padding: 0 16px;
  color: #0878d9;
  background: #fff;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(5, 18, 34, 0.2);
}

.side-phone-box a::after {
  content: "";
}

.side-phone-box a:hover {
  color: #075fb5;
  background: #eaf7ff;
}

/* Homepage banner carousel */
.hero .hero-carousel {
  position: absolute;
  top: clamp(116px, 15vh, 154px);
  right: clamp(52px, 7vw, 118px);
  left: auto;
  bottom: auto;
  display: block;
  width: min(43vw, 650px);
  min-width: 430px;
  height: clamp(360px, 45vw, 500px);
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(76, 153, 211, 0.42);
  border-radius: 10px;
  background: rgba(5, 22, 38, 0.65);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  z-index: 3;
}

.hero .hero-shade {
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.7s ease;
  transform: scale(1.025);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(2, 12, 24, 0.72)),
    linear-gradient(90deg, rgba(2, 12, 24, 0.1), transparent 48%);
}

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

.hero-slide span,
.hero-slide small {
  position: absolute;
  z-index: 2;
  left: 28px;
  color: #fff;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.hero-slide span {
  bottom: 58px;
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 900;
}

.hero-slide small {
  bottom: 32px;
  color: rgba(218, 236, 250, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(185, 224, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(4, 24, 42, 0.55);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(9, 142, 233, 0.86);
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow-prev {
  left: 18px;
}

.hero-arrow-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.hero-dots button.active {
  width: 26px;
  background: #64f2ef;
}

@media (max-width: 1120px) {
  .hero .hero-carousel {
    right: 32px;
    width: 42vw;
    min-width: 360px;
    height: 390px;
  }
}

@media (max-width: 900px) {
  .hero .hero-carousel {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 620px);
    min-width: 0;
    height: 360px;
    margin: 34px auto 0;
  }
}

@media (max-width: 560px) {
  .hero .hero-carousel {
    height: 290px;
  }

  .hero-slide span {
    bottom: 50px;
    left: 20px;
    font-size: 22px;
  }

  .hero-slide small {
    left: 20px;
    bottom: 26px;
  }

  .hero-arrow {
    width: 34px;
    height: 34px;
    font-size: 26px;
  }
}

/* Full-width premium homepage banner */
.hero {
  min-height: 0;
  height: min(650px, calc(100vw * 650 / 1920));
  padding: 0;
  overflow: hidden;
  background: #101c31;
}

.hero::before,
.hero .hero-shade,
.hero .hero-content {
  display: none;
}

.hero .hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #101c31;
}

.hero-slide::after {
  display: none;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #101c31;
}

.hero-slide span,
.hero-slide small {
  display: none;
}

.hero-dots {
  top: 50%;
  left: clamp(34px, 4.8vw, 76px);
  right: auto;
  bottom: auto;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-50%);
}

.hero-dots button {
  width: 13px;
  height: 13px;
  border: 2px solid transparent;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.hero-dots button.active {
  width: 18px;
  height: 18px;
  background: transparent;
  border-color: #fff;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.95);
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(6, 22, 42, 0.34);
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

@media (max-width: 1180px) {
  .hero {
    height: calc(100vw * 650 / 1920);
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    height: max(300px, calc(100vw * 650 / 1920));
    min-height: 0;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    left: 20px;
    gap: 14px;
  }
}

.float-tools {
  top: 62%;
}

@media (max-width: 1500px) {
  .float-tools {
    display: none;
  }
}

/* Three-bar banner controls */
.hero .hero-bars {
  position: absolute;
  z-index: 6;
  left: 50%;
  right: auto;
  top: auto;
  bottom: clamp(12px, 2.1vw, 28px);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
}

.hero .hero-bars button {
  width: 40px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: none;
  cursor: pointer;
  transition: width 0.24s ease, background 0.24s ease, opacity 0.24s ease;
}

.hero .hero-bars button.active {
  width: 58px;
  height: 4px;
  border: 0;
  background: #66f2f0;
  box-shadow: 0 0 16px rgba(102, 242, 240, 0.36);
}

.hero .hero-bars button:hover {
  background: rgba(102, 242, 240, 0.86);
}

@media (max-width: 760px) {
  .hero .hero-bars {
    bottom: 18px;
    gap: 12px;
  }

  .hero .hero-bars button {
    width: 30px;
  }

  .hero .hero-bars button.active {
    width: 44px;
  }
}

/* Final column page image banners */
.page-hero.graphic-hero {
  min-height: 0;
  height: clamp(230px, 19.01vw, 365px);
  padding: 0;
  align-items: stretch;
  background: #07182e;
}

.page-hero.graphic-hero::after {
  display: none;
}

.page-hero.graphic-hero .page-hero-content {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.page-hero.graphic-hero .image-slot.page-banner-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background-color: #07182e;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero.product-graphic-hero .image-slot.page-banner-image {
  background-image: url("./assets/page-banners/products-banner.png");
}

.page-hero.about-graphic-hero .image-slot.page-banner-image {
  background-image: url("./assets/page-banners/about-banner.png");
}

.page-hero.honor-graphic-hero .image-slot.page-banner-image {
  background-image: url("./assets/page-banners/honor-banner.png");
}

.page-hero.video-graphic-hero .image-slot.page-banner-image {
  background-image: url("./assets/page-banners/video-banner.png");
}

.page-hero.news-graphic-hero .image-slot.page-banner-image {
  background-image: url("./assets/page-banners/news-banner.png");
}

.page-hero.contact-graphic-hero .image-slot.page-banner-image {
  background-image: url("./assets/page-banners/contact-banner.png");
}

.page-hero.article-graphic-hero .image-slot.page-banner-image {
  background-image: url("./assets/page-banners/news-detail-banner.png");
}

.page-hero.video-detail-graphic-hero .image-slot.page-banner-image {
  background-image: url("./assets/page-banners/video-detail-banner.png");
}

.detail-banner.graphic-detail-banner {
  height: clamp(230px, 19.01vw, 365px);
  padding: 0;
  background: #07182e;
}

.detail-banner.graphic-detail-banner .image-slot.page-banner-image {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background-color: #07182e;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.detail-banner.product-detail-graphic .image-slot.page-banner-image {
  background-image: url("./assets/page-banners/product-detail-banner.png");
}

@media (max-width: 760px) {
  .page-hero.graphic-hero {
    height: clamp(170px, 30vw, 230px);
  }

  .detail-banner.graphic-detail-banner {
    height: clamp(170px, 30vw, 230px);
  }
}

/* Header logo emphasis */
.site-header .brand {
  min-width: 520px;
}

.site-header .brand-mini-logo {
  width: 288px;
  height: 122px;
  max-height: 122px;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .site-header .brand {
    min-width: 380px;
  }

  .site-header .brand-mini-logo {
    width: 210px;
    height: 94px;
    max-height: 94px;
  }
}

@media (max-width: 720px) {
  .site-header .brand {
    min-width: auto;
  }

  .site-header .brand-mini-logo {
    width: 150px;
    height: 68px;
    max-height: 68px;
  }
}

/* Site search */
.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;
}

.header-search {
  display: flex;
  align-items: center;
  align-self: center;
  flex: 0 0 clamp(168px, 13vw, 220px);
  height: 42px;
  margin-left: clamp(8px, 1vw, 16px);
  overflow: hidden;
  border: 1px solid rgba(178, 199, 223, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 10px 26px rgba(17, 43, 77, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.header-search:focus-within {
  border-color: rgba(8, 120, 216, 0.88);
  box-shadow: 0 0 0 4px rgba(8, 120, 216, 0.1), 0 14px 30px rgba(17, 43, 77, 0.12);
}

.header-search input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  padding: 0 8px 0 16px;
  color: #10213a;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.header-search input::placeholder {
  color: #8292a8;
  font-weight: 600;
}

.header-search button {
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  height: 100%;
  color: #fff;
  border: 0;
  background: linear-gradient(180deg, #159cf1 0%, #0878d9 100%);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.header-search button:hover,
.header-search button:focus {
  background: linear-gradient(180deg, #078ce4 0%, #056ec8 100%);
}

.search-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  padding: 76px 24px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 32%, rgba(24, 149, 237, 0.42), transparent 34%),
    linear-gradient(120deg, #071426 0%, #123e68 54%, #0a2340 100%);
}

.search-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.07) 34% 34.4%, transparent 34.4% 100%),
    repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 72px);
  opacity: 0.48;
}

.search-hero-inner {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  text-align: center;
}

.search-hero h1 {
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.05;
}

.search-hero p {
  margin: 0 auto 30px;
  max-width: 620px;
  color: rgba(232, 244, 255, 0.88);
  font-size: 17px;
}

.search-page-form {
  display: flex;
  width: min(720px, 100%);
  height: 62px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(124, 192, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.search-page-form input {
  flex: 1;
  min-width: 0;
  padding: 0 24px;
  border: 0;
  outline: 0;
  color: #10213a;
  font-size: 17px;
  font-weight: 700;
}

.search-page-form button {
  width: 128px;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, #159cf1 0%, #0878d9 100%);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.search-results-section {
  padding: clamp(60px, 6vw, 92px) clamp(24px, 5vw, 76px);
  background: #eef5fb;
}

.search-results-inner {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.search-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(180, 200, 222, 0.72);
}

.search-results-head h2 {
  margin: 0;
  color: #0b1b31;
  font-size: clamp(34px, 4vw, 50px);
}

.search-results-head p {
  margin: 0;
  color: #60718a;
  font-weight: 700;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.search-tags a {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  color: #0a72c9;
  border: 1px solid rgba(8, 120, 216, 0.36);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.search-tags a:hover,
.search-tags a:focus {
  color: #fff;
  background: #0878d9;
}

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

.search-result-card {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 28px;
  color: #10213a;
  border: 1px solid rgba(177, 199, 222, 0.9);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 20px 54px rgba(17, 43, 77, 0.1);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.search-result-card:hover,
.search-result-card:focus {
  transform: translateY(-4px);
  border-color: rgba(8, 120, 216, 0.72);
  box-shadow: 0 30px 72px rgba(17, 43, 77, 0.16);
}

.search-type {
  width: max-content;
  margin-bottom: 18px;
  padding: 5px 12px;
  color: #0878d9;
  border-radius: 999px;
  background: rgba(8, 120, 216, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.search-result-card h3 {
  margin: 0 0 12px;
  color: #0b1b31;
  font-size: 22px;
  line-height: 1.35;
}

.search-result-card p {
  margin: 0;
  color: #586b84;
  line-height: 1.85;
}

.search-result-card em {
  margin-top: auto;
  padding-top: 22px;
  color: #0878d9;
  font-style: normal;
  font-weight: 900;
}

.search-empty {
  padding: 54px 24px;
  border: 1px dashed rgba(8, 120, 216, 0.36);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: #60718a;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 1380px) {
  .header-search {
    flex-basis: 178px;
  }

  .header-search input {
    padding-left: 12px;
    font-size: 13px;
  }

  .header-search button {
    flex-basis: 48px;
  }
}

@media (max-width: 1240px) {
  .header-search {
    display: none;
  }
}

@media (max-width: 980px) {
  .search-results-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .search-page-form {
    height: auto;
    flex-direction: column;
  }

  .search-page-form input {
    height: 58px;
  }

  .search-page-form button {
    width: 100%;
    height: 52px;
  }

  .search-result-grid {
    grid-template-columns: 1fr;
  }
}

/* Bottom-align the navigation row with the banner edge while keeping it fixed on scroll. */
.site-header {
  align-items: stretch;
}

.site-header .main-nav {
  align-items: flex-end;
}

.site-header .nav-item {
  display: flex;
  align-items: flex-end;
}

.site-header .nav-link {
  height: 86px;
}

.site-header .dropdown {
  top: 86px;
}

.site-header .header-search,
.site-header .header-contact,
.site-header .language-switch {
  align-self: flex-end;
  margin-bottom: 21px;
}

.site-header .header-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 44px;
}

@media (max-width: 1180px) {
  .site-header .nav-link {
    height: 74px;
  }

  .site-header .dropdown {
    top: 74px;
  }

  .site-header .header-search,
  .site-header .header-contact,
  .site-header .language-switch {
    margin-bottom: 12px;
  }
}

/* Keep the enlarged logo inside the fixed header instead of overlapping page banners. */
.site-header {
  min-height: 122px;
}

.site-header .brand {
  align-self: stretch;
}

.site-header .brand-mini-logo {
  max-height: 108px;
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 96px;
  }

  .site-header .brand-mini-logo {
    max-height: 86px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 74px;
  }

  .site-header .brand-mini-logo {
    max-height: 64px;
  }
}

/* Final header behavior: keep the navigation visible while scrolling. */
body {
  padding-top: 122px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  min-height: 122px;
}

.site-header .header-contact {
  align-self: flex-end;
  height: 86px;
  min-height: 0;
  margin-bottom: 0;
  justify-content: center;
}

@media (max-width: 1180px) {
  body {
    padding-top: 96px;
  }

  .site-header {
    min-height: 96px;
  }
}

@media (max-width: 720px) {
  body {
    padding-top: 74px;
  }

  .site-header {
    min-height: 74px;
  }
}

/* Header logo: use the new trimmed transparent PNG at a stronger visual size. */
.site-header .brand {
  min-width: 390px;
  gap: 18px;
  padding-right: 34px;
}

.site-header .brand-mini-logo {
  width: 188px;
  height: 96px;
  max-height: 96px;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .site-header .brand {
    min-width: 310px;
    gap: 14px;
    padding-right: 20px;
  }

  .site-header .brand-mini-logo {
    width: 150px;
    height: 82px;
    max-height: 82px;
  }
}

@media (max-width: 720px) {
  .site-header .brand-mini-logo {
    width: 124px;
    height: 58px;
    max-height: 58px;
  }
}

/* Final clean header: logo only, white navigation bar. */
.site-header,
.site-header .brand,
.site-header .main-nav,
.site-header .header-search,
.site-header .language-switch {
  background: #ffffff;
}

.site-header .brand {
  min-width: 280px;
  justify-content: center;
  padding-right: 18px;
}

.site-header .brand-mini-logo {
  width: 210px;
  height: 104px;
  max-height: 104px;
}

@media (max-width: 1180px) {
  .site-header .brand {
    min-width: 220px;
  }

  .site-header .brand-mini-logo {
    width: 170px;
    height: 84px;
    max-height: 84px;
  }
}

@media (max-width: 720px) {
  .site-header .brand {
    min-width: 150px;
    justify-content: flex-start;
  }

  .site-header .brand-mini-logo {
    width: 132px;
    height: 60px;
    max-height: 60px;
  }
}

/* ============================================================================
   ENGLISH LOCALIZATION OVERRIDES (appended 2026-06-25)
   Replaces baked-in Chinese hero / advantages / page-banner graphics with
   clean, code-built English equivalents. Original PNGs remain in /assets,
   unused. New scoped class names avoid the legacy .hero cascade.
   ============================================================================ */

/* ---------- Home hero ---------- */
.en-hero{ position:relative; overflow:hidden; color:#fff; background:#07182e; isolation:isolate; }
.en-hero-bg{ position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(40,150,240,.40), rgba(40,150,240,0) 60%),
    radial-gradient(700px 600px at 12% 110%, rgba(20,90,170,.35), rgba(20,90,170,0) 60%),
    linear-gradient(120deg,#06152a 0%,#0d2a50 50%,#08203d 100%); }
.en-hero-bg::after{ content:""; position:absolute; inset:0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 72px);
  -webkit-mask-image:radial-gradient(120% 120% at 80% 0%, #000 35%, transparent 75%);
          mask-image:radial-gradient(120% 120% at 80% 0%, #000 35%, transparent 75%); }
.en-hero-inner{ position:relative; z-index:1; width:min(1440px,100%); margin:0 auto; box-sizing:border-box;
  padding:clamp(48px,6vw,96px) clamp(20px,5vw,64px);
  display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(28px,4vw,64px); align-items:center; }
.en-hero-eyebrow{ margin:0 0 14px; font-size:14px; letter-spacing:.18em; text-transform:uppercase; color:#7cc0ff; }
.en-hero-copy h1{ margin:0 0 18px; font-size:clamp(30px,3.7vw,52px); line-height:1.1; font-weight:800; letter-spacing:-.01em; }
.en-hero-lead{ margin:0 0 24px; max-width:560px; font-size:clamp(15px,1.15vw,18px); line-height:1.7; color:rgba(226,238,255,.86); }
.en-hero-badges{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:28px; }
.en-hero-badges span{ padding:8px 16px; border:1px solid rgba(124,192,255,.45); border-radius:999px; font-size:13.5px; color:#dbecff; background:rgba(124,192,255,.08); }
.en-hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:34px; }
.en-hero-stats{ display:flex; flex-wrap:wrap; gap:clamp(20px,3vw,46px); margin:0; }
.en-hero-stats div{ display:flex; flex-direction:column; }
.en-hero-stats dt{ font-size:clamp(26px,2.6vw,38px); font-weight:800; color:#fff; line-height:1; }
.en-hero-stats dd{ margin:6px 0 0; font-size:13px; color:rgba(200,220,245,.78); max-width:160px; }
.en-hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; min-height:280px; }
.en-hero-glow{ position:absolute; width:78%; aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle, rgba(60,160,255,.40), rgba(60,160,255,0) 68%); filter:blur(6px); z-index:0; }
.en-hero-visual img{ position:relative; z-index:1; width:min(100%,520px); height:auto; border-radius:18px;
  background:linear-gradient(180deg,#ffffff,#eef4fb); padding:14px; box-shadow:0 30px 70px -28px rgba(0,0,0,.65); }
.en-hero-tag{ position:absolute; right:5%; top:7%; z-index:2; font-size:clamp(15px,1.5vw,22px); font-weight:800; letter-spacing:.14em; color:rgba(255,255,255,.16); }
@media (max-width:900px){
  .en-hero-inner{ grid-template-columns:1fr; gap:30px; }
  .en-hero-visual{ order:-1; min-height:0; }
  .en-hero-visual img{ width:min(86%,420px); }
  .en-hero-tag{ display:none; } }

/* ---------- Home "Why Choose Jushi" advantages ---------- */
.en-advantages .en-adv-grid{ width:min(1440px,100%); margin:30px auto 0; box-sizing:border-box; padding:0 clamp(20px,5vw,64px);
  display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(16px,1.6vw,24px); }
.en-adv-card{ background:#fff; border:1px solid #e7eef7; border-radius:16px; overflow:hidden; display:flex; flex-direction:column;
  box-shadow:0 18px 40px -30px rgba(15,44,82,.5); transition:transform .25s ease, box-shadow .25s ease; }
.en-adv-card:hover{ transform:translateY(-6px); box-shadow:0 26px 50px -28px rgba(15,44,82,.55); }
.en-adv-card figure{ margin:0; aspect-ratio:37/26; overflow:hidden; background:#eef4fb; }
.en-adv-card figure img{ width:100%; height:100%; object-fit:cover; display:block; }
.en-adv-body{ padding:20px 22px 24px; position:relative; flex:1; }
.en-adv-num{ display:inline-block; font-size:13px; font-weight:800; letter-spacing:.08em; color:#1a6fd4; background:#eaf3ff; border-radius:8px; padding:4px 10px; margin-bottom:12px; }
.en-adv-body h3{ margin:0 0 10px; font-size:18px; line-height:1.3; color:#0f2c52; }
.en-adv-body p{ margin:0; font-size:14px; line-height:1.65; color:#5a6b80; }
@media (max-width:1000px){ .en-advantages .en-adv-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .en-advantages .en-adv-grid{ grid-template-columns:1fr; } }

/* ---------- Interior page banners: drop baked-CN PNG, show EN HTML title ---------- */
.page-hero.graphic-hero .image-slot.page-banner-image,
.detail-banner.graphic-detail-banner .image-slot.page-banner-image{
  background-image:
    radial-gradient(1100px 420px at 84% -30%, rgba(40,150,240,.55), rgba(40,150,240,0) 62%),
    linear-gradient(118deg,#07182e 0%,#10305a 52%,#0a1f3c 100%) !important; }
.page-hero.graphic-hero .image-slot.page-banner-image::after,
.detail-banner.graphic-detail-banner .image-slot.page-banner-image::after{
  content:""; position:absolute; inset:0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 64px);
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 62%);
          mask-image:linear-gradient(90deg, transparent, #000 62%); }
.page-hero.graphic-hero{ align-items:end !important; }
.page-hero.graphic-hero .page-hero-content{
  position:relative !important; z-index:2; width:min(1440px,100%) !important; max-width:none !important; height:auto !important;
  margin:0 auto !important; box-sizing:border-box !important; padding:0 clamp(20px,5vw,64px) clamp(24px,4vw,46px) !important;
  overflow:visible !important; clip:auto !important; white-space:normal !important; align-self:end !important; }
.page-hero.graphic-hero .page-hero-content .breadcrumb{ color:rgba(220,234,255,.82); margin:0 0 10px; }
.page-hero.graphic-hero .page-hero-content h1{ color:#fff; margin:0; font-size:clamp(28px,3.4vw,46px); line-height:1.12; text-shadow:0 2px 18px rgba(0,0,0,.35); }
.detail-banner.graphic-detail-banner{ position:relative; display:flex; align-items:flex-end; }
.detail-banner-caption{ position:relative; z-index:2; width:min(1440px,100%); margin:0 auto; box-sizing:border-box; padding:0 clamp(20px,5vw,64px) clamp(22px,3.5vw,40px); color:#fff; }
.detail-banner-caption .eyebrow{ margin:0 0 8px; font-size:14px; letter-spacing:.16em; text-transform:uppercase; color:#7cc0ff; }
.detail-banner-caption h1{ margin:0; font-size:clamp(26px,3vw,42px); line-height:1.14; color:#fff; }

/* ---------- Home hero banner carousel (English banner images) ---------- */
.hero-banner{ position:relative; width:100%; overflow:hidden; background:#00091f; }
.hero-banner-track{ display:flex; transition:transform .6s ease; }
.hero-banner-slide{ flex:0 0 100%; min-width:100%; line-height:0; }
.hero-banner-slide img{ width:100%; max-width:2134px; height:auto; display:block; margin:0 auto; }
.hero-banner-dots{ position:absolute; left:0; right:0; bottom:16px; display:flex; gap:10px; justify-content:center; z-index:2; }
.hero-banner-dots:empty{ display:none; }
.hero-banner-dots button{ width:36px; height:5px; padding:0; border:0; border-radius:3px; background:rgba(255,255,255,.45); cursor:pointer; transition:background .2s ease; }
.hero-banner-dots button.is-active{ background:#fff; }
/* When logged into WordPress, the admin bar shifts the page down but the fixed
   header stays at top:0 — leaving a gap above the banner. Push the header below
   the admin bar so it sits flush. (Visitors have no admin bar and are unaffected.) */
body.admin-bar .site-header{ top:32px; }
@media screen and (max-width:782px){ body.admin-bar .site-header{ top:46px; } }

/* ===== Uniform product cards: same image size, white bg, images fill (overrides
   the legacy per-position backgrounds + oversized first card + contain letterboxing) ===== */
.catalog-grid .catalog-card .catalog-image,
.catalog-grid .catalog-card:first-child .catalog-image{
  height:clamp(240px,18vw,290px)!important;
  min-height:240px!important;
  padding:0!important;
  background:#fff!important;
}
.catalog-grid .catalog-card .catalog-image img,
.catalog-grid .catalog-card:first-child .catalog-image img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;   /* show the FULL machine, never crop */
  object-position:center!important;
  background:#fff!important;
  padding:12px!important;
}

/* Why-Choose-Jushi advantages — user-supplied designed image (portrait-ish) */
.advantages-image-en{ max-width:1000px; }
.advantages-image-en img{ box-shadow:none; border-radius:14px; }

/* ---------- Home brand-slogan strip ---------- */
.brand-strip{ background:linear-gradient(120deg,#06152a 0%,#0d2a50 55%,#08203d 100%); color:#fff; text-align:center;
  padding:clamp(48px,6vw,86px) clamp(20px,5vw,64px); position:relative; overflow:hidden; }
.brand-strip::after{ content:""; position:absolute; inset:0;
  background:radial-gradient(900px 360px at 80% -20%, rgba(40,150,240,.30), transparent 60%); pointer-events:none; }
.brand-strip-inner{ position:relative; z-index:1; max-width:1000px; margin:0 auto; }
.brand-strip-eyebrow{ margin:0 0 14px; color:#7cc0ff; letter-spacing:.18em; text-transform:uppercase; font-size:14px; }
.brand-strip h2{ margin:0 0 18px; font-size:clamp(26px,3.4vw,44px); line-height:1.16; font-weight:800; letter-spacing:-.01em; }
.brand-strip-tagline{ margin:0 auto; max-width:800px; color:rgba(220,234,255,.88); font-size:clamp(15px,1.3vw,19px); line-height:1.7; }

/* ---------- Why Choose Jushi — 4-point one-stop-solution section ---------- */
.why-jushi{ background:linear-gradient(120deg,#06152a 0%,#0d2a50 55%,#08203d 100%); padding:clamp(54px,6vw,92px) clamp(20px,5vw,64px); position:relative; overflow:hidden; }
.why-jushi::after{ content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(1000px 380px at 82% -15%, rgba(40,150,240,.28), transparent 60%); }
.why-jushi-head{ position:relative; z-index:1; text-align:center; margin-bottom:clamp(30px,4vw,52px); }
.why-jushi-head h2{ margin:0 0 10px; color:#fff; font-size:clamp(28px,3.6vw,46px); font-weight:800; letter-spacing:-.01em; }
.why-jushi-sub{ margin:0; color:#7cc0ff; letter-spacing:.22em; text-transform:uppercase; font-size:14px; }
.why-jushi-grid{ position:relative; z-index:1; max-width:1120px; margin:0 auto; display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(18px,2vw,28px); }
.why-card{ position:relative; background:rgba(255,255,255,.97); border-radius:16px; padding:28px 30px 30px; overflow:hidden;
  box-shadow:0 26px 60px -34px rgba(0,0,0,.65); }
.why-num{ position:absolute; right:20px; bottom:2px; font-size:88px; font-weight:800; line-height:1; color:rgba(26,111,212,.10); }
.why-card h3{ position:relative; margin:0 0 16px; padding-bottom:12px; font-size:19px; line-height:1.32; color:#0f2c52; }
.why-card h3::after{ content:""; position:absolute; left:0; bottom:0; width:42px; height:3px; border-radius:2px; background:#1a6fd4; }
.why-card ul{ position:relative; z-index:1; margin:0; padding:0; list-style:none; }
.why-card li{ position:relative; padding-left:18px; margin-bottom:10px; color:#5a6b80; font-size:14.5px; line-height:1.62; }
.why-card li::before{ content:""; position:absolute; left:0; top:8px; width:7px; height:7px; border-radius:50%; background:#1a6fd4; }
.why-card li:last-child{ margin-bottom:0; }
@media (max-width:820px){ .why-jushi-grid{ grid-template-columns:1fr; } }

/* ===== Homepage scroll-reveal: sections gently fade + slide up as they enter view.
   Enabled only when the head-script adds .jushi-anim (home page, IntersectionObserver
   supported, and the visitor hasn't asked to reduce motion). No flicker: the hidden
   state applies before first paint. If JS is off/unsupported, nothing is hidden. ===== */
html.jushi-anim main > section:not(.hero-banner){
  opacity:0;
  transform:translateY(40px);
  transition:opacity .85s cubic-bezier(.22,.61,.36,1), transform .85s cubic-bezier(.22,.61,.36,1);
  will-change:opacity, transform;
}
html.jushi-anim main > section.is-visible{
  opacity:1;
  transform:none;
}

/* ===== Industrial-catalog product cards (model / navy title / gray-blue desc /
   View Details). Keeps the original 3-up grid; overrides the legacy card styles.
   Titles clamp to 2 lines, descriptions to 3 lines, so rows stay aligned. ===== */
.catalog-grid .catalog-card{
  position:relative; display:flex; flex-direction:column;
  background:#fff !important; border:1px solid #e3eaf3 !important; border-radius:16px !important;
  overflow:hidden; box-shadow:0 1px 2px rgba(15,40,82,.05);
  transition:transform .3s ease, box-shadow .3s ease; padding:0 !important;
}
.catalog-grid .catalog-card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:3px; background:#1a6fd4;
  transform:scaleX(0); transform-origin:left; transition:transform .35s ease; z-index:3;
}
.catalog-grid .catalog-card:hover{ transform:translateY(-7px); box-shadow:0 30px 60px -30px rgba(15,40,82,.42); }
.catalog-grid .catalog-card:hover::before{ transform:scaleX(1); }
.catalog-grid .catalog-card .catalog-main-link{ display:flex; flex-direction:column; flex:1; text-decoration:none; }
.catalog-grid .catalog-card .catalog-info{ padding:22px 24px 6px; display:flex; flex-direction:column; flex:1; }
.catalog-grid .catalog-card .catalog-tags{ display:flex; align-items:center; gap:8px; margin-bottom:13px; }
.catalog-grid .catalog-card .catalog-model{ font-size:12.5px; font-weight:500; letter-spacing:.05em; color:#fff; background:#1a6fd4; padding:4px 11px; border-radius:6px; }
.catalog-grid .catalog-card .catalog-cat{ font-size:12px; font-weight:500; letter-spacing:.05em; color:#5f7590; text-transform:uppercase; }
.catalog-grid .catalog-card .catalog-title{
  font-size:19px !important; font-weight:500 !important; color:#0f2c52 !important; line-height:1.32 !important;
  margin:0 0 11px !important; padding:0 !important; text-align:left !important;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; min-height:calc(1.32em * 2);
}
.catalog-grid .catalog-card .catalog-desc{
  font-size:14px !important; color:#5f7590 !important; line-height:1.6 !important; margin:0 !important; padding:0 !important; text-align:left !important;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; min-height:calc(1.6em * 3);
}
.catalog-grid .catalog-card .catalog-foot{ padding:14px 24px 22px; margin-top:auto; }
.catalog-grid .catalog-card .catalog-foot .read-more-link{
  display:inline-flex; align-items:center; gap:7px; background:#1a6fd4; color:#fff; font-size:14px; font-weight:500;
  padding:9px 18px; border-radius:9px; text-decoration:none; border:0; white-space:nowrap; transition:gap .25s ease, background .2s ease;
}
.catalog-grid .catalog-card .catalog-foot .read-more-link:hover{ background:#1560bd; gap:11px; }
.catalog-grid .catalog-card .catalog-ph{ display:flex; align-items:center; justify-content:center; width:100%; height:100%; color:#9db3cc; font-size:13px; }
