*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Roboto, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1e2b3c;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
}

a:hover {
  color: #0078d7;
}

.container {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.container-home {
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
}

.site-main {
  min-height: 60vh;
}

section {
  padding: 84px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e7edf4;
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.site-branding {
  flex: 0 0 auto;
}

.logo-placeholder {
  width: 160px;
  height: 60px;
  background: #e9edf2;
  color: #55657c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 4px;
}

.logo-placeholder.small {
  width: 160px;
  height: 60px;
}

.custom-logo {
  max-width: 160px;
  max-height: 60px;
  width: auto;
  height: auto;
}

.main-navigation {
  margin-left: auto;
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-menu > li {
  position: relative;
}

.menu-link-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 15px;
  font-weight: 600;
  color: #1a3a6a;
}

.menu-link:hover,
.menu-link:focus {
  color: #0078d7;
}

.submenu-toggle {
  width: 30px;
  height: 30px;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: #1a3a6a;
  padding: 0;
  cursor: pointer;
}

.submenu-toggle-icon {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.menu-item-has-children.open > .menu-link-wrap .submenu-toggle-icon {
  transform: rotate(225deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  list-style: none;
  margin: 0;
  padding: 14px 0 12px;
  background: #ffffff;
  border: 1px solid #dde6f0;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(13, 35, 64, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  pointer-events: none;
}

.sub-menu li {
  margin: 0;
}

.sub-menu a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: #243549;
  font-weight: 500;
}

.sub-menu a:hover,
.sub-menu a:focus {
  background: #f4f8fc;
  color: #0078d7;
}

.menu-item-has-children.open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 46px;
  height: 46px;
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  transition: border-color 0.25s ease;
}

.menu-toggle:hover {
  border-color: #0078d7;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #1a3a6a;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  transform-origin: center center;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden !important;
}

body.menu-open::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 998;
  pointer-events: auto;
  animation: yousanOverlayIn 0.3s ease forwards;
}

@keyframes yousanOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: #e4e9ef;
  border: 1px solid #d5dde7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

.hero-placeholder {
  min-height: 620px;
  background: #d8dee6;
  color: #506176;
}

.banner-placeholder {
  min-height: 300px;
}

.solution-main-placeholder,
.product-main-placeholder,
.handshake-placeholder,
.feature-image-placeholder,
.intro-image-placeholder,
.application-placeholder,
.scene-placeholder,
.news-thumb-placeholder,
.archive-card-placeholder,
.market-card-placeholder,
.application-card-placeholder,
.industry-slide-placeholder {
  min-height: 100%;
}

.btn,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: #0078d7;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
  background: #0567b6;
  color: #ffffff;
}

.btn-outline-dark {
  background: transparent;
  border-color: #1a3a6a;
  color: #1a3a6a;
}

.btn-outline-dark:hover {
  background: #1a3a6a;
  color: #ffffff;
}

.text-link {
  color: #0078d7;
  font-weight: 700;
}

.text-link:hover {
  color: #1a3a6a;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.section-heading.center {
  text-align: center;
  display: block;
}

.section-heading-tight h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  color: #1a3a6a;
}

.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0078d7;
}

.hero-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #102946;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 25, 46, 0.82) 0%, rgba(9, 25, 46, 0.58) 45%, rgba(9, 25, 46, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 760px;
}

.hero-content h1 {
  margin: 0 0 20px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}

.hero-content p {
  margin: 0 0 28px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.home-about-section {
  background: #ffffff;
}

.home-about-intro {
  max-width: 980px;
  margin-bottom: 34px;
}

.home-about-intro h2 {
  margin: 10px 0 18px;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.14;
  color: #1a3a6a;
}

.home-about-copy {
  max-width: 980px;
}

.home-about-copy p {
  margin: 0 0 14px;
  font-size: 17px;
  color: #58697d;
}

.home-about-copy p:last-child {
  margin-bottom: 0;
}

.home-about-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.home-about-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid #dbe5ef;
  box-shadow: 0 18px 40px rgba(15, 35, 64, 0.1);
}

.home-about-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 46, 0.16) 0%, rgba(10, 26, 46, 0.76) 100%);
}

.home-about-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-about-card__content h3 {
  margin: 0 0 14px;
  font-size: clamp(34px, 2.8vw, 48px);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.home-about-card__content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.94);
}

.home-about-action {
  margin-top: 30px;
}

.home-solutions-section,
.home-products-section,
.home-search-section,
.why-us-section,
.latest-news-clean,
.search-box-section,
.products-archive-grid-section,
.products-search-clean,
.product-contact-clean-section,
.product-feature-clean-section,
.product-applications-clean-section,
.product-introduction-clean-section,
.industry-applications-section,
.industry-products-section,
.simple-contact-cta-section,
.solutions-archive-cards,
.solutions-overview-section,
.solutions-market-section,
.solutions-help-section,
.solutions-page-nav,
.solutions-page-anchor-nav,
.solutions-page-intro,
.solutions-applications-block,
.solutions-industries-block,
.solutions-products-block,
.solutions-contact-block,
.news-page-section,
.about-company-section,
.timeline-section,
.certificate-section,
.contact-page-section,
.search-results-section,
.archive-listing-section,
.default-listing-section,
.error-404-section {
  background: #ffffff;
}

.solutions-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 36px;
  align-items: stretch;
}

.solutions-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.solution-tag {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #d9e3ee;
  background: #ffffff;
  color: #1a3a6a;
  border-radius: 999px;
  font-weight: 600;
}

.solution-tag.active,
.solution-tag:hover {
  background: #1a3a6a;
  border-color: #1a3a6a;
  color: #ffffff;
}

.solution-text-panel {
  padding: 32px;
  background: #f7f9fc;
  border: 1px solid #e3eaf2;
}

.solution-text-panel h3 {
  margin: 0 0 14px;
  font-size: 28px;
  color: #1a3a6a;
}

.solution-text-panel p {
  margin: 0 0 22px;
  color: #5e6d7e;
}

.solutions-right {
  min-height: 460px;
}

.products-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
}

.products-list-panel {
  border: 1px solid #e3eaf2;
  background: #f8fafc;
  padding: 20px;
}

.products-list-panel--scroll {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dfe8f1;
  background: #f8fafc;
  box-shadow: 0 12px 30px rgba(15, 35, 64, 0.05);
}

.products-list-panel__header {
  padding: 28px 24px 18px;
  border-bottom: 1px solid #e3eaf2;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.products-list-panel__header h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #1a3a6a;
}

.products-list-panel__header p {
  margin: 0;
  color: #607185;
  font-size: 14px;
  line-height: 1.75;
}

.products-list-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px 10px;
  border-bottom: 1px solid #e3eaf2;
  background: #f8fafc;
}

.products-scroll-btn {
  min-height: 40px;
  width: 40px;
  padding: 0;
  border: 1px solid #d7e2ee;
  background: #ffffff;
  color: #1a3a6a;
  font-size: 14px;
  line-height: 1;
}

.products-scroll-btn:hover {
  background: #1a3a6a;
  border-color: #1a3a6a;
  color: #ffffff;
}

.products-list-scroll {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 360px;
  overflow-y: auto;
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: #b8c7d9 #eef3f8;
}

.products-list-scroll--limited {
  max-height: 540px;
  scroll-behavior: smooth;
}

.products-list-scroll::-webkit-scrollbar {
  width: 8px;
}

.products-list-scroll::-webkit-scrollbar-track {
  background: #eef3f8;
}

.products-list-scroll::-webkit-scrollbar-thumb {
  background: #b8c7d9;
  border-radius: 999px;
}

.product-accordion {
  padding: 0 0 8px;
}

.product-accordion-item {
  border-bottom: 1px solid #e5edf4;
}

.product-accordion-trigger {
  width: 100%;
  min-height: 0;
  padding: 16px 24px;
  border: 0;
  border-radius: 0;
  background: #f8fafc;
  color: #1a3a6a;
  font-weight: 700;
  justify-content: space-between;
  text-align: left;
}

.product-accordion-trigger:hover,
.product-accordion-trigger.active {
  background: #eef4fb;
  color: #0078d7;
}

.product-accordion-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}

.product-accordion-trigger.active .product-accordion-icon {
  transform: rotate(225deg);
}

.product-accordion-panel {
  display: none;
  background: #ffffff;
}

.product-accordion-panel.active {
  display: block;
}

.product-name-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-name-list li {
  border-bottom: 1px solid #e5edf4;
}

.product-name-list li:last-child {
  border-bottom: 0;
}

.product-name-list--interactive li {
  border-bottom: 1px solid #e5edf4;
}

.product-name-trigger {
  width: 100%;
  min-height: 0;
  padding: 14px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #26415e;
  font-weight: 600;
  justify-content: flex-start;
  text-align: left;
  position: relative;
}

.product-name-trigger::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 0;
  height: 2px;
  background: #0078d7;
  transform: translateY(-50%);
  transition: width 0.25s ease;
}

.product-name-trigger:hover,
.product-name-trigger.active {
  background: #ffffff;
  color: #0078d7;
  padding-left: 32px;
}

.product-name-trigger:hover::before,
.product-name-trigger.active::before {
  width: 8px;
}

.products-visual-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #f5f7fa;
  border: 1px solid #e2e8f0;
}

.products-visual-panel--interactive {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.products-visual-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.products-visual-content {
  position: absolute;
  left: 36px;
  bottom: 36px;
  max-width: 540px;
  background: rgba(255, 255, 255, 0.92);
  padding: 28px;
}

.products-visual-content h3 {
  margin: 0 0 12px;
  font-size: 30px;
  color: #1a3a6a;
}

.products-visual-content p {
  margin: 0 0 18px;
  color: #516274;
}

.home-search-section {
  padding-top: 0;
}

.home-search-box {
  width: 100%;
}

.home-search-box__inner {
  border: 1px solid #dfe8f1;
  background: linear-gradient(135deg, #15345b 0%, #1a3a6a 100%);
  box-shadow: 0 12px 30px rgba(15, 35, 64, 0.06);
  padding: 34px;
}

.home-search-box__content {
  margin-bottom: 20px;
}

.home-search-box__content h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
  color: #ffffff;
}

.home-search-box .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.home-search-form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 0;
}

.home-search-form input[type="search"] {
  width: 100%;
  min-height: 54px;
  border: 0;
  padding: 0 16px;
  font-size: 16px;
  color: #1e2b3c;
  background: #ffffff;
  border-radius: 4px 0 0 4px;
}

.home-search-form button {
  min-height: 54px;
  border: 0;
  border-radius: 0 4px 4px 0;
  background: #0078d7;
  color: #ffffff;
  font-weight: 700;
}

.home-search-form button:hover {
  background: #0567b6;
}

.home-news {
  background: #f8fafc;
}

.news-tabs {
  width: 100%;
}

.news-tab-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.news-tab-button {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid #d9e3ee;
  background: #ffffff;
  color: #1a3a6a;
  font-weight: 600;
}

.news-tab-button.active {
  background: #1a3a6a;
  border-color: #1a3a6a;
  color: #ffffff;
}

.news-panel {
  display: none;
}

.news-panel.active {
  display: block;
}

.news-grid,
.clean-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.clean-news-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-card,
.clean-news-card {
  background: #ffffff;
  border: 1px solid #e4ebf2;
}

.news-thumb,
.clean-news-media {
  aspect-ratio: 16 / 10;
}

.news-card__body,
.clean-news-body {
  padding: 22px;
}

.news-date {
  margin: 0 0 10px;
  font-size: 14px;
  color: #6a7a8d;
}

.news-card h3,
.clean-news-body h3,
.clean-product-body h3,
.archive-card-body h3,
.industry-application-body h3,
.product-scene-body h3,
.solution-text-panel h3,
.solutions-market-card__content h3,
.solutions-application-card__body h3,
.solution-industry-slide__body h3 {
  margin: 0 0 12px;
  color: #1a3a6a;
}

.news-card p,
.clean-news-body p,
.clean-product-body p,
.archive-card-body p,
.industry-application-body p,
.solutions-market-card__content p,
.solutions-application-card__body p {
  color: #5f6f81;
}

.inner-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #122d4e;
}

.inner-hero--small {
  min-height: 300px;
}

.inner-hero__media {
  position: absolute;
  inset: 0;
}

.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 32, 56, 0.8) 0%, rgba(12, 32, 56, 0.55) 50%, rgba(12, 32, 56, 0.35) 100%);
}

.inner-hero__content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.inner-hero__content h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.1;
  color: #ffffff;
}

.inner-hero__content p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.solutions-page-anchor-nav {
  padding: 0;
  border-bottom: 1px solid #e8edf4;
}

.solutions-page-anchor-nav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding: 18px 0;
}

.solutions-page-anchor-nav__inner a {
  font-size: 15px;
  font-weight: 600;
  color: #1a3a6a;
}

.solutions-page-anchor-nav__inner a:hover {
  color: #0078d7;
}

.solutions-page-intro {
  padding-top: 34px;
  padding-bottom: 34px;
}

.solutions-page-intro__text {
  max-width: 980px;
}

.solutions-page-intro__text p {
  margin: 0;
  color: #526477;
  font-size: 17px;
}

.solutions-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.solutions-application-card {
  border: 1px solid #e2e9f1;
  background: #ffffff;
}

.solutions-application-card.is-hidden {
  display: none;
}

.solutions-application-card__media {
  min-height: 220px;
}

.solutions-application-card__body {
  padding: 24px;
}

.solutions-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0078d7;
  font-weight: 700;
}

.solutions-inline-link::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
}

.solution-industry-slide {
  border: 1px solid #e2e9f1;
  background: #ffffff;
}

.solution-industry-slide__media {
  min-height: 280px;
}

.solution-industry-slide__body {
  padding: 22px;
}

.solutions-products-block__intro {
  max-width: 980px;
  margin-bottom: 26px;
}

.solutions-products-block__intro p {
  margin: 0;
  color: #5c6d7f;
}

.solutions-products-searchbar {
  margin-bottom: 28px;
}

.solutions-products-searchbar__inner {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 0;
  background: #1a3a6a;
  padding: 18px;
}

.solutions-products-searchbar__inner input {
  min-height: 52px;
  border: 0;
  padding: 0 16px;
  font-size: 16px;
}

.solutions-products-searchbar__inner button {
  min-height: 52px;
  border: 0;
  background: #0078d7;
  color: #ffffff;
  font-weight: 700;
}

.solutions-filter-layout,
.filter-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

.solutions-filter-card,
.filter-card {
  padding: 24px;
  border: 1px solid #e2e9f1;
  background: #f8fafc;
  position: sticky;
  top: 110px;
}

.solutions-filter-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.solutions-filter-card h3,
.filter-card h3 {
  margin: 0;
  color: #1a3a6a;
}

.filter-reset-button {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0078d7;
  font-size: 14px;
  font-weight: 700;
}

.filter-reset-button:hover {
  background: transparent;
  color: #1a3a6a;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group label,
.filter-group span {
  display: block;
  margin-bottom: 8px;
  color: #33485f;
  font-weight: 600;
}

.filter-group input[type="text"],
.filter-group input[type="search"],
.filter-group input[type="number"],
.filter-group input[type="email"],
.filter-group select,
.filter-group textarea,
.form-field input,
.form-field textarea,
.global-search-form input[type="search"],
.solutions-products-searchbar__inner input,
.center-search-panel input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d7e2ee;
  background: #ffffff;
  color: #1e2b3c;
  font-size: 15px;
  border-radius: 4px;
}

.filter-group textarea,
.form-field textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

.filter-group input[type="checkbox"] {
  margin-right: 8px;
}

.range-value {
  margin-top: 8px;
  font-size: 14px;
  color: #607185;
}

.table-toolbar,
.solutions-results-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.table-toolbar h3,
.solutions-results-toolbar h3 {
  margin: 0;
  color: #1a3a6a;
}

.table-toolbar p,
.solutions-results-toolbar p {
  margin: 0;
  color: #627285;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e2e9f1;
  background: #ffffff;
}

.product-data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.product-data-table--wide {
  min-width: 1200px;
}

.product-data-table th,
.product-data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e8edf4;
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}

.product-data-table th {
  background: #f8fafc;
  color: #1a3a6a;
  font-weight: 700;
}

.product-data-table td {
  color: #506174;
}

.product-data-table tbody tr:hover {
  background: #f9fbfd;
}

.center-action {
  margin-top: 24px;
  text-align: center;
}

.solutions-contact-banner,
.contact-banner-clean {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  border: 1px solid #e1e8f0;
  background: #f8fafc;
}

.solutions-contact-banner__media,
.contact-banner-clean-media {
  min-height: 340px;
}

.solutions-contact-banner__content,
.contact-banner-clean-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solutions-contact-banner__content h2,
.contact-banner-clean-content h2 {
  margin: 8px 0 14px;
  font-size: 36px;
  color: #1a3a6a;
}

.solutions-contact-banner__content p,
.contact-banner-clean-content p {
  margin: 0 0 20px;
  color: #5d6d80;
}

.anchor-nav {
  position: sticky;
  top: 84px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e7edf4;
}

.anchor-nav ul {
  list-style: none;
  margin: 0;
  padding: 14px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.anchor-nav a {
  font-weight: 700;
  color: #1a3a6a;
}

.industry-application-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.industry-application-card {
  background: #ffffff;
  border: 1px solid #e3eaf2;
}

.industry-application-media {
  min-height: 220px;
}

.industry-application-body {
  padding: 22px;
}

.industry-text-intro {
  margin-bottom: 28px;
  max-width: 980px;
}

.industry-text-intro p {
  margin: 0;
  color: #5d6d80;
}

.simple-contact-cta {
  padding: 56px 40px;
  background: #f7f9fc;
  border: 1px solid #e2e9f1;
  text-align: center;
  border-radius: 6px;
}

.simple-contact-cta .section-kicker {
  margin-bottom: 8px;
}

.simple-contact-cta h2 {
  margin: 8px 0 14px;
  color: #1a3a6a;
  font-size: 34px;
}

.simple-contact-cta p {
  margin: 0 auto 24px;
  max-width: 640px;
  color: #5d6d80;
}

.clean-two-column {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.clean-text-column h2 {
  margin: 8px 0 16px;
  font-size: clamp(30px, 3.5vw, 44px);
  color: #1a3a6a;
}

.clean-text-column p {
  margin: 0;
  color: #5c6d7f;
}

.clean-media-column {
  min-height: 420px;
}

.product-scene-slide {
  border: 1px solid #e3eaf2;
  background: #ffffff;
}

.product-scene-media {
  min-height: 220px;
}

.product-scene-body {
  padding: 16px;
  text-align: center;
}

.product-scene-body h3 {
  margin: 0;
  font-size: 17px;
  color: #1a3a6a;
}

.intro-layout {
  align-items: start;
}

.spec-list-box {
  margin-top: 24px;
  border: 1px solid #e1e8f0;
  background: #f8fafc;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid #e7edf4;
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row span {
  color: #526375;
}

.spec-row strong {
  color: #1a3a6a;
}

.contact-faq-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-form-clean-card,
.faq-clean-card,
.contact-map-card,
.contact-form-card,
.sidebar-card,
.info-card {
  border: 1px solid #e2e9f1;
  background: #ffffff;
  padding: 28px;
}

.contact-form-clean-card h2,
.faq-clean-card h2,
.contact-map-card h2,
.contact-form-card h2 {
  margin: 8px 0 20px;
  color: #1a3a6a;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #33485f;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid #e3eaf2;
  background: #f8fafc;
}

.faq-question {
  width: 100%;
  min-height: 0;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  justify-content: flex-start;
  color: #1a3a6a;
  font-weight: 700;
}

.faq-question:hover {
  background: transparent;
  color: #0078d7;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: #5c6d7f;
}

.faq-item.active .faq-answer {
  display: block;
}

.map-placeholder {
  min-height: 360px;
  background: #eef3f8;
  border: 1px solid #dbe5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 600;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.news-list-vertical {
  display: grid;
  gap: 24px;
}

.news-list-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  border: 1px solid #e3eaf2;
  background: #ffffff;
  overflow: hidden;
}

.news-list-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list-item__body {
  padding: 24px;
}

.news-list-item__body h2 {
  margin: 0 0 12px;
  font-size: 28px;
  color: #1a3a6a;
}

.news-list-item__body p {
  color: #5d6d80;
}

.sidebar-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-link-list li {
  margin-bottom: 10px;
}

.global-search-form {
  display: flex;
  gap: 12px;
}

.global-search-form--stack,
.global-search-form--center {
  max-width: 100%;
}

.global-search-form--center {
  justify-content: center;
}

.global-search-form input[type="search"] {
  flex: 1;
}

.global-search-form button {
  flex: 0 0 auto;
}

.search-form-wrap {
  margin-bottom: 28px;
}

.search-results-list {
  display: grid;
  gap: 20px;
}

.search-result-item {
  padding: 24px;
  border: 1px solid #e3eaf2;
  background: #ffffff;
}

.search-result-type {
  margin: 0 0 10px;
  color: #0078d7;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solution-archive-grid,
.product-cards-grid,
.clean-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-cards-grid--archive {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-card,
.product-card-item,
.clean-product-card {
  background: #ffffff;
  border: 1px solid #e4ebf2;
  overflow: hidden;
}

.solution-card__body,
.product-card-item__body,
.clean-product-body {
  padding: 22px;
}

.clean-product-media,
.solution-card__thumb,
.product-card-item__thumb {
  aspect-ratio: 16 / 10;
}

.solution-card__thumb img,
.product-card-item__thumb img,
.clean-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clean-product-card.is-hidden,
.solutions-application-card.is-hidden,
.product-card-item.is-hidden {
  display: none;
}

.feature-two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-content h2 {
  margin: 8px 0 18px;
  color: #1a3a6a;
  font-size: clamp(30px, 3.2vw, 44px);
}

.feature-content p {
  color: #5d6d80;
}

.timeline-list {
  display: grid;
  gap: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid #e2e9f1;
  background: #ffffff;
}

.timeline-year {
  font-size: 32px;
  font-weight: 800;
  color: #0078d7;
}

.timeline-content h3 {
  margin: 0 0 10px;
  color: #1a3a6a;
}

.timeline-content p {
  margin: 0;
  color: #5d6d80;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.certificate-item {
  border: 1px solid #e2e9f1;
  background: #ffffff;
  padding: 14px;
}

.content-none-box,
.error-404-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 44px;
  border: 1px solid #e2e9f1;
  background: #f8fafc;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 22px 0 26px;
}

.pagination-wrap {
  margin-top: 32px;
  text-align: center;
}

.pagination-wrap .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  padding: 0 12px;
  border: 1px solid #dce5ef;
  background: #ffffff;
}

.pagination-wrap .page-numbers.current {
  background: #1a3a6a;
  border-color: #1a3a6a;
  color: #ffffff;
}

.site-footer {
  margin-top: 80px;
  background: #122d4e;
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 60px 0 30px;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 14px;
}

.section-alt-bg {
  background: #f4f7fa !important;
}

.solutions-page-anchor-nav {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #e8edf4;
  position: sticky;
  top: 84px;
  z-index: 100;
}

.anchor-link {
  position: relative;
  padding: 18px 0;
  display: inline-block;
}

.anchor-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0078d7;
  transition: width 0.3s ease;
}

.anchor-link:hover::after,
.anchor-link.active::after {
  width: 100%;
}

.anchor-link.active {
  color: #0078d7;
}

.solutions-application-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ebf3ff 0%, #f0f5ff 100%);
  font-size: 22px;
  margin-bottom: 14px;
  border: 1px solid #d8e6f5;
}

.solutions-application-card,
.clean-product-card,
.solution-archive-card,
.product-card-item,
.solution-industry-slide,
.news-card,
.benefit-numbered-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.solutions-application-card:hover,
.clean-product-card:hover,
.solution-archive-card:hover,
.product-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 35, 64, 0.13);
}

.solution-industry-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(15, 35, 64, 0.11);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 35, 64, 0.1);
}

.benefit-numbered-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 35, 64, 0.1);
}

.solutions-application-card__media,
.clean-product-media,
.solution-archive-card__media,
.product-card-item__thumb,
.solution-industry-slide__media,
.news-thumb,
.clean-news-media {
  overflow: hidden;
}

.solutions-application-card__media .image-placeholder,
.clean-product-media .image-placeholder,
.solution-archive-card__media .image-placeholder,
.product-card-item__thumb img,
.solution-industry-slide__media .image-placeholder,
.news-thumb img,
.clean-news-media img {
  transition: transform 0.45s ease;
}

.solutions-application-card:hover .solutions-application-card__media .image-placeholder,
.clean-product-card:hover .clean-product-media .image-placeholder,
.solution-archive-card:hover .solution-archive-card__media .image-placeholder,
.product-card-item:hover .product-card-item__thumb img,
.solution-industry-slide:hover .solution-industry-slide__media .image-placeholder,
.news-card:hover .news-thumb img,
.news-card:hover .clean-news-media img {
  transform: scale(1.08);
}

.clean-product-media {
  position: relative;
}

.clean-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 64, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.clean-product-card:hover .clean-product-overlay {
  opacity: 1;
}

.btn--small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.solution-industry-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 26, 50, 0.35) 100%);
  pointer-events: none;
}

.solution-industry-slide__media {
  position: relative;
}

.solution-industry-slide__body p {
  margin: 0 0 10px;
  color: #5f6f81;
  font-size: 14px;
  line-height: 1.65;
}

.solution-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.solution-archive-card {
  background: #ffffff;
  border: 1px solid #e4ebf2;
  border-radius: 6px;
  overflow: hidden;
}

.solution-archive-card__media {
  position: relative;
  min-height: 240px;
}

.solution-archive-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 26, 50, 0.25) 100%);
  pointer-events: none;
}

.solution-archive-card__body {
  padding: 24px;
}

.solution-archive-card__body h3 {
  margin: 0 0 10px;
  color: #1a3a6a;
  font-size: 20px;
}

.solution-archive-card__body p {
  margin: 0 0 16px;
  color: #5f6f81;
  font-size: 15px;
}

.solution-archive-card.is-hidden {
  display: none;
}

.benefits-numbered-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.benefit-numbered-card {
  background: #ffffff;
  border: 1px solid #e3eaf2;
  padding: 32px 28px;
  border-radius: 6px;
  position: relative;
}

.benefit-numbered-card__number {
  font-size: 48px;
  font-weight: 900;
  color: #e0e9f3;
  line-height: 1;
  margin-bottom: 18px;
}

.benefit-numbered-card__content h3 {
  margin: 0 0 10px;
  color: #1a3a6a;
  font-size: 18px;
}

.benefit-numbered-card__content p {
  margin: 0;
  color: #5f6f81;
  font-size: 15px;
  line-height: 1.7;
}

.product-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.product-category-tab {
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid #d9e3ee;
  background: #ffffff;
  color: #1a3a6a;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.product-category-tab:hover {
  border-color: #0078d7;
  color: #0078d7;
  background: #f0f7ff;
}

.product-category-tab.active {
  background: #1a3a6a;
  border-color: #1a3a6a;
  color: #ffffff;
}

.cat-count {
  opacity: 0.7;
  font-weight: 400;
}

.products-filter-searchbar {
  margin-bottom: 28px;
}

.products-filter-searchbar__inner {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 0;
  background: #1a3a6a;
  padding: 18px;
  border-radius: 4px;
}

.products-filter-searchbar__inner input {
  min-height: 52px;
  border: 0;
  padding: 0 18px;
  font-size: 16px;
  border-radius: 4px 0 0 4px;
}

.products-filter-searchbar__inner button {
  min-height: 52px;
  border: 0;
  border-radius: 0 4px 4px 0;
  background: #0078d7;
  color: #ffffff;
  font-weight: 700;
}

.products-filter-searchbar__inner button:hover {
  background: #0567b6;
}

.filter-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 0 !important;
  font-weight: 500 !important;
  color: #33485f !important;
  padding: 6px 0;
}

.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0078d7;
  cursor: pointer;
  flex-shrink: 0;
}

.filter-checkbox span {
  display: inline !important;
  margin-bottom: 0 !important;
  font-weight: 500 !important;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #0078d7 0%, #e2e9f1 0%);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  border: 0;
  padding: 0;
  margin-top: 4px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border: 3px solid #0078d7;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 120, 215, 0.25);
  transition: box-shadow 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 3px 12px rgba(0, 120, 215, 0.4);
}

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #ffffff;
  border: 3px solid #0078d7;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 120, 215, 0.25);
}

.filter-group select:focus,
.filter-group input[type="text"]:focus,
.filter-group input[type="search"]:focus,
.filter-group input[type="number"]:focus,
.form-field input:focus,
.form-field textarea:focus,
.global-search-form input[type="search"]:focus,
.products-filter-searchbar__inner input:focus,
.solutions-products-searchbar__inner input:focus {
  border-color: #0078d7;
  box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.12);
  outline: none;
}

.product-data-table td a {
  color: #0078d7;
  font-weight: 600;
  transition: color 0.2s ease;
}

.product-data-table td a:hover {
  color: #1a3a6a;
  text-decoration: underline;
}

.product-data-table tbody tr {
  transition: background 0.2s ease;
}

.product-data-table tbody tr:hover {
  background: #f0f6fc;
}

.product-data-table th {
  background: #f0f4f8;
  white-space: nowrap;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.solutions-contact-banner--gradient,
.contact-banner-clean--gradient {
  background: linear-gradient(135deg, #f4f8fc 0%, #eaf0f8 50%, #f4f8fc 100%);
  border-color: #d8e4ef;
}

.solutions-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(26, 58, 106, 0.4);
  color: #1a3a6a;
}

.btn-outline-light:hover {
  background: #1a3a6a;
  border-color: #1a3a6a;
  color: #ffffff;
}

.btn--load-more {
  background: transparent;
  border: 2px solid #d9e3ee;
  color: #1a3a6a;
  min-width: 200px;
}

.btn--load-more:hover {
  background: #1a3a6a;
  border-color: #1a3a6a;
  color: #ffffff;
}

.clean-product-body h3 a {
  color: #1a3a6a;
  transition: color 0.25s ease;
}

.clean-product-body h3 a:hover {
  color: #0078d7;
}

.filter-card .solutions-filter-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.filter-card .solutions-filter-card__top h3 {
  margin: 0;
}

.products-search-clean {
  padding-top: 0;
  padding-bottom: 0;
}

.center-search-panel {
  max-width: 720px;
  margin: 0 auto;
}

.center-search-panel input[type="search"] {
  min-height: 56px;
  border: 2px solid #d7e2ee;
  font-size: 16px;
  border-radius: 6px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.center-search-panel input[type="search"]:focus {
  border-color: #0078d7;
  box-shadow: 0 0 0 4px rgba(0, 120, 215, 0.1);
  outline: none;
}

.archive-contact-cta {
  padding: 84px 0;
}

.solution-industry-slide--archive {
  border-radius: 6px;
  margin: 0 4px;
}

.solution-industry-slide--archive .solution-industry-slide__media {
  min-height: 260px;
  position: relative;
}

.solution-industry-slide--archive .solution-industry-slide__body {
  padding: 24px 22px;
}

.solution-industry-slide--archive .solution-industry-slide__body h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.solution-industry-slide--archive .solution-industry-slide__body p {
  margin: 0 0 16px;
  color: #5f6f81;
  font-size: 14px;
  line-height: 1.7;
}

.solution-industry-carousel--archive .carousel-viewport {
  overflow: hidden;
}

.solution-industry-carousel--archive .carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid #d7e2ee;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1a3a6a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 35, 64, 0.1);
  transition: all 0.25s ease;
}

.carousel-arrow:hover {
  background: #1a3a6a;
  border-color: #1a3a6a;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(15, 35, 64, 0.18);
}

.carousel-arrow.prev {
  left: -22px;
}

.carousel-arrow.next {
  right: -22px;
}

.simple-carousel {
  position: relative;
  padding: 0 28px;
}

.benefits-stagger-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefits-stagger-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #e2e9f1;
}

.benefits-stagger-row:last-child {
  border-bottom: 0;
}

.benefits-stagger-row--reverse {
  direction: rtl;
}

.benefits-stagger-row--reverse > * {
  direction: ltr;
}

.benefits-stagger-media {
  border-radius: 8px;
  overflow: hidden;
  min-height: 320px;
}

.benefits-stagger-media .image-placeholder {
  min-height: 320px;
  border-radius: 8px;
}

.benefits-stagger-content--offset-down {
  transform: translateY(40px);
}

.benefits-stagger-content--offset-up {
  transform: translateY(-40px);
}

.benefits-stagger-content {
  padding: 8px 0;
}

.benefits-stagger-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0078d7 0%, #005fa3 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 120, 215, 0.25);
}

.benefits-stagger-content h3 {
  margin: 0 0 14px;
  font-size: 24px;
  color: #1a3a6a;
  line-height: 1.3;
}

.benefits-stagger-content p {
  margin: 0 0 12px;
  color: #506174;
  font-size: 15.5px;
  line-height: 1.8;
}

.benefits-stagger-extra {
  display: inline-block;
  margin-top: 4px !important;
  padding: 10px 16px;
  background: #eef4fb;
  border-left: 3px solid #0078d7;
  border-radius: 0 6px 6px 0;
  color: #1a3a6a !important;
  font-weight: 600;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.products-search-section {
  padding-top: 0;
  padding-bottom: 0;
}

.btn--collapse-active {
  background: #1a3a6a !important;
  border-color: #1a3a6a !important;
  color: #ffffff !important;
}

.btn--collapse-active:hover {
  background: #0078d7 !important;
  border-color: #0078d7 !important;
}
/* =========================================================
   SOLUTION PAGE LAYOUT VARIANTS
   ========================================================= */

.industry-overview-section { background: #ffffff; }
.solution-tech-row-gap { margin-top: 48px; }

.solution-minimal-list { display: flex; flex-direction: column; gap: 0; }

.solution-minimal-item {
  display: grid; grid-template-columns: 60px 1fr auto; gap: 24px;
  align-items: center; padding: 28px 24px; border-bottom: 1px solid #e2e9f1;
  transition: background 0.25s ease;
}
.solution-minimal-item:first-child { border-top: 1px solid #e2e9f1; }
.solution-minimal-item:hover { background: #f8fafc; }
.solution-minimal-num { font-size: 28px; font-weight: 800; color: #d0dbe8; line-height: 1; }
.solution-minimal-body h3 { margin: 0 0 6px; font-size: 18px; color: #1a3a6a; }
.solution-minimal-body p { margin: 0; color: #5d6d80; font-size: 15px; }
.solution-minimal-action { flex-shrink: 0; }

.solution-applications-stagger-section { background: #f4f7fa; }
.section-heading-count { margin: 0; font-size: 14px; color: #6a7a8d; font-weight: 600; white-space: nowrap; }

.solution-stagger-list { display: flex; flex-direction: column; gap: 0; }

.solution-stagger-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding: 48px 0; border-bottom: 1px solid #dde6ef;
}
.solution-stagger-row:last-child { border-bottom: 0; }
.solution-stagger-row--reverse { direction: rtl; }
.solution-stagger-row--reverse > * { direction: ltr; }
.solution-stagger-media { border-radius: 8px; overflow: hidden; min-height: 320px; }
.solution-stagger-media .image-placeholder { min-height: 320px; border-radius: 8px; }
.solution-stagger-content { padding: 8px 0; }
.solution-stagger-row:nth-child(odd) .solution-stagger-content { transform: translateY(30px); }
.solution-stagger-row:nth-child(even) .solution-stagger-content { transform: translateY(-30px); }

.solution-stagger-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #0078d7 0%, #005fa3 100%);
  color: #ffffff; font-size: 20px; font-weight: 800; margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 120, 215, 0.25);
}
.solution-stagger-content h3 { margin: 0 0 14px; font-size: 24px; color: #1a3a6a; line-height: 1.3; }
.solution-stagger-content p { margin: 0 0 20px; color: #506174; font-size: 15.5px; line-height: 1.8; }

.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* =========================================================
   SINGLE PRODUCT — NEW SECTIONS
   ========================================================= */
.product-overview-section { background: #ffffff; }
.product-overview-content { margin-top: 18px; color: #5c6d7f; line-height: 1.8; }
.product-overview-content p { margin: 0 0 14px; }
.product-features-grid-section { background: #f4f7fa; }

.product-features-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

.product-feature-card {
  background: #ffffff; border: 1px solid #e2e9f1; padding: 32px 28px;
  border-radius: 6px; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(15, 35, 64, 0.1); }

.product-feature-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #0078d7 0%, #005fa3 100%);
  color: #ffffff; font-size: 16px; font-weight: 800; margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0, 120, 215, 0.2);
}
.product-feature-card h3 { margin: 0 0 10px; font-size: 18px; color: #1a3a6a; }
.product-feature-card p { margin: 0; color: #5d6d80; font-size: 14.5px; line-height: 1.7; }
.product-specs-section { background: #ffffff; }
.product-advantages-section { background: #ffffff; }
.product-advantages-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }

.product-advantage-card {
  background: #f8fafc; border: 1px solid #e2e9f1; padding: 28px 24px;
  border-radius: 6px; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-advantage-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(15, 35, 64, 0.1); }

.product-advantage-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: #e8f5e9;
  color: #2e7d32; font-size: 20px; font-weight: 800; margin-bottom: 16px;
}
.product-advantage-card h3 { margin: 0 0 8px; font-size: 17px; color: #1a3a6a; }
.product-advantage-card p { margin: 0; color: #5d6d80; font-size: 14.5px; line-height: 1.7; }
.product-surfaces-section { background: #f4f7fa; }

.product-surfaces-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.surface-pill {
  display: inline-flex; align-items: center; min-height: 42px; padding: 0 22px;
  background: #ffffff; border: 1px solid #d9e3ee; border-radius: 999px;
  color: #1a3a6a; font-weight: 600; font-size: 14px; transition: all 0.25s ease;
}
.surface-pill:hover { background: #1a3a6a; border-color: #1a3a6a; color: #ffffff; }

.product-storage-section { background: #ffffff; }

.product-storage-box {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 36px;
  background: #f8fafc; border: 1px solid #e2e9f1; border-left: 4px solid #0078d7; border-radius: 6px;
}
.product-storage-icon { font-size: 32px; line-height: 1; padding-top: 4px; }
.product-storage-content h2 { margin: 6px 0 14px; font-size: 24px; color: #1a3a6a; }
.product-storage-content p { margin: 0; color: #506174; line-height: 1.8; }
.product-customization-section { background: #ffffff; }

.product-customization-banner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
  background: linear-gradient(135deg, #15345b 0%, #1a3a6a 100%); border-radius: 6px; overflow: hidden;
}
.product-customization-content { padding: 48px 40px; color: #ffffff; }
.product-customization-content .section-kicker { color: rgba(255, 255, 255, 0.7); }
.product-customization-content h2 { margin: 8px 0 16px; font-size: clamp(26px, 3vw, 36px); color: #ffffff; }
.product-customization-content p { margin: 0 0 20px; color: rgba(255, 255, 255, 0.85); line-height: 1.8; }

.product-customization-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.product-customization-tags span {
  display: inline-flex; align-items: center; padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px; color: rgba(255, 255, 255, 0.9); font-size: 13px; font-weight: 600;
}
.product-customization-media { min-height: 340px; }
.product-customization-media .image-placeholder { min-height: 100%; background: rgba(255, 255, 255, 0.06); border: 0; color: rgba(255, 255, 255, 0.4); }

/* =========================================================
   NESTED BRAND ACCORDION
   ========================================================= */
.product-accordion--brand { padding: 0; border-left: 3px solid #0078d7; margin-left: 4px; }
.product-accordion-item--brand { border-bottom: 1px solid #eef3f8; }
.product-accordion-item--brand:last-child { border-bottom: 0; }

.product-accordion-trigger--brand {
  width: 100%; min-height: 0; padding: 12px 24px 12px 20px; border: 0; border-radius: 0;
  background: #f0f6fc; color: #0078d7; font-weight: 700; font-size: 14px;
  justify-content: space-between; text-align: left; transition: background 0.2s ease, color 0.2s ease;
}
.product-accordion-trigger--brand:hover, .product-accordion-trigger--brand.active { background: #e4eef8; color: #005fa3; }
.product-accordion-trigger--brand .product-accordion-icon { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; }
.product-accordion-item--brand .product-name-trigger { padding-left: 28px; font-size: 13.5px; }
.product-accordion-item--brand .product-name-trigger:hover, .product-accordion-item--brand .product-name-trigger.active { padding-left: 36px; }
.product-accordion-item--brand .product-name-trigger::before { left: 22px; }

/* =========================================================
   SERVICES PAGE STYLES
   ========================================================= */
.services-intro-text { max-width: 900px; margin: 0 auto 36px; text-align: center; }
.services-intro-text p { margin: 0; color: #526477; font-size: 16px; line-height: 1.8; }
.services-materials-section { margin-top: 48px; text-align: center; }
.services-materials-section h3 { margin: 0 0 20px; font-size: 22px; color: #1a3a6a; }

/* =========================================================
   FOOTER 5-COLUMN GRID
   ========================================================= */
.footer-grid--five { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }
@media (max-width: 1199px) { .footer-grid--five { grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; } }
@media (max-width: 991px) { .footer-grid--five { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 767px) { .footer-grid--five { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .footer-grid--five { grid-template-columns: 1fr; } }

/* =========================================================
   NAVIGATION — FULL-WIDTH HORIZONTAL DROPDOWN (FINAL v5 - FIXED)
   ========================================================= */

@media (min-width: 993px) {

  /* ====== 根本修复：桌面端去掉 header-inner 的 position:relative ====== */
  /* 这样 sub-menu 的 position:absolute 会相对于 .site-header（全宽 sticky 元素）定位 */
  .header-inner {
    position: static !important;
  }

  .site-header .submenu-toggle { display: none !important; }

  /* 导航拉伸到 header 全高度，消除悬停死区 */
  .site-header .main-navigation {
    align-self: stretch;
    display: flex;
    align-items: stretch;
  }

  .site-header .main-menu {
    align-items: stretch !important;
  }

  header.site-header .main-menu > li {
    position: static !important;
    display: flex;
    align-items: center;
  }

  header.site-header .main-menu > li.menu-item-has-children > .menu-link-wrap > .menu-link { position: relative; }

  header.site-header .main-menu > li.menu-item-has-children > .menu-link-wrap > .menu-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: #0078d7; transform: scaleX(0); transform-origin: center; transition: transform 0.25s ease;
  }

  header.site-header .main-menu > li.menu-item-has-children:hover > .menu-link-wrap > .menu-link::after { transform: scaleX(1); }
  header.site-header .main-menu > li.menu-item-has-children:hover > .menu-link-wrap > .menu-link { color: #0078d7; }

  /* 鼠标桥接区域 —— 防止鼠标移到下拉时丢失 hover */
  header.site-header .main-menu > li.menu-item-has-children::after {
    content: "" !important; position: absolute !important; top: 100% !important;
    left: 0 !important; right: 0 !important; height: 28px !important;
    background: transparent !important; pointer-events: none !important; display: block !important;
  }
  header.site-header .main-menu > li.menu-item-has-children:hover::after { pointer-events: auto !important; }

  /* 全宽居中下拉菜单 */
  header.site-header .main-menu > li > ul.sub-menu {
    position: absolute !important; top: 100% !important; left: 0 !important; right: 0 !important;
    width: 100vw !important; min-width: 100vw !important; max-width: none !important; margin: 0 !important;
    display: flex !important; flex-wrap: wrap !important; align-items: center !important; justify-content: center !important;
    gap: 0 !important; padding: 14px max(24px, calc((100vw - 1280px) / 2)) !important;
    background: #ffffff !important; border: 0 !important; border-top: 1px solid #e8edf4 !important;
    border-bottom: 1px solid #e8edf4 !important; border-radius: 0 !important;
    box-shadow: 0 8px 24px rgba(13,35,64,0.07) !important;
    opacity: 0 !important; visibility: hidden !important; transform: translateY(0) !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease 0.06s, visibility 0.25s ease 0.06s !important;
  }

  header.site-header .main-menu > li.menu-item-has-children:hover > ul.sub-menu {
    opacity: 1 !important; visibility: visible !important; transform: translateY(0) !important; pointer-events: auto !important;
    transition-delay: 0s !important;
  }

  header.site-header .main-menu > li > ul.sub-menu > li { flex: 0 0 auto !important; max-width: none !important; margin: 0 !important; }

  header.site-header .main-menu > li > ul.sub-menu > li > a {
    display: inline-flex !important; align-items: center !important; padding: 10px 24px !important;
    font-size: 14.5px !important; font-weight: 500 !important; color: #3d5068 !important;
    white-space: nowrap !important; border-radius: 6px !important; transition: background 0.2s ease, color 0.2s ease !important;
  }
  header.site-header .main-menu > li > ul.sub-menu > li > a::before { display: none !important; width: 0 !important; height: 0 !important; }

  header.site-header .main-menu > li > ul.sub-menu > li > a:hover,
  header.site-header .main-menu > li > ul.sub-menu > li > a:focus {
    background: #f0f6fd !important; color: #0078d7 !important; padding-left: 24px !important;
  }

  /* Products mega: multi-column grid */
  header.site-header ul.sub-menu.sub-menu--mega.sub-menu--products-mega {
    display: grid !important; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)) !important;
    align-items: start !important; gap: 0 18px !important;
    padding-top: 18px !important; padding-bottom: 22px !important; max-height: 80vh !important; overflow-y: auto !important;
  }

  header.site-header ul.sub-menu.sub-menu--products-mega > li.mega-menu-header {
    grid-column: 1 / -1 !important; flex: none !important; max-width: 100% !important; width: 100% !important;
    border-bottom: 1px solid #e8eef5 !important; margin-bottom: 12px !important; padding-bottom: 10px !important;
  }
  header.site-header ul.sub-menu.sub-menu--products-mega > li.mega-menu-header a {
    display: inline-flex !important; padding: 6px 0 !important; font-weight: 700 !important;
    color: #0078d7 !important; font-size: 13px !important; text-transform: uppercase !important; letter-spacing: 0.04em !important;
  }
  header.site-header ul.sub-menu.sub-menu--products-mega > li.mega-menu-header a:hover { color: #1a3a6a !important; background: transparent !important; }
  header.site-header ul.sub-menu.sub-menu--products-mega > li.mega-menu-header a::before { display: none !important; }

  header.site-header ul.sub-menu.sub-menu--products-mega > li.mega-series-row {
    flex: none !important; max-width: none !important; width: auto !important;
    display: flex !important; flex-direction: column !important; gap: 2px !important;
    padding: 0 0 14px !important; border-bottom: 0 !important; margin: 0 !important; border-radius: 0 !important;
  }
  header.site-header ul.sub-menu.sub-menu--products-mega > li.mega-series-row:hover { background: transparent !important; }

  header.site-header ul.sub-menu.sub-menu--products-mega strong.mega-series-name {
    display: block !important; min-width: auto !important; max-width: none !important;
    font-size: 13.5px !important; font-weight: 700 !important; color: #1a3a6a !important;
    line-height: 1.4 !important; white-space: normal !important;
    padding-bottom: 8px !important; margin-bottom: 4px !important; border-bottom: 2px solid #e8eef5 !important;
  }

  header.site-header ul.sub-menu.sub-menu--products-mega span.mega-product-links {
    display: flex !important; flex-direction: column !important; flex-wrap: nowrap !important; gap: 0 !important;
  }

  header.site-header ul.sub-menu.sub-menu--products-mega span.mega-product-links a {
    display: block !important; font-size: 13px !important; font-weight: 500 !important; color: #506174 !important;
    padding: 5px 8px !important; border-radius: 4px !important; white-space: nowrap !important;
    line-height: 1.6 !important; margin: 0 !important; background: transparent !important;
    width: auto !important; max-width: none !important; transition: background 0.2s ease, color 0.2s ease !important;
  }
  header.site-header ul.sub-menu.sub-menu--products-mega span.mega-product-links a:hover { background: #eaf1fb !important; color: #0078d7 !important; }
  header.site-header ul.sub-menu.sub-menu--products-mega span.mega-product-links a::before { display: none !important; }
  header.site-header ul.sub-menu.sub-menu--products-mega .mega-product-sep { display: none !important; }
  header.site-header ul.sub-menu.sub-menu--products-mega > li:not(.mega-menu-header):not(.mega-series-row) { display: none !important; }
}

/* --- Mobile ≤ 992px --- */
@media (max-width: 992px) {
  header.site-header .main-menu > li.menu-item-has-children::after { display: none !important; }

  .site-header .submenu-toggle {
    display: flex !important; width: 42px; height: 42px; min-height: 42px;
    border: 1px solid #e2eaf3; background: #f8fafc; border-radius: 8px;
  }
  .menu-item-has-children.open > .menu-link-wrap .submenu-toggle { background: #0078d7; border-color: #0078d7; }
  .menu-item-has-children.open > .menu-link-wrap .submenu-toggle .submenu-toggle-icon { border-color: #fff; }

  header.site-header .main-menu > li.menu-item-has-children > .menu-link-wrap > .menu-link::after { display: none !important; }

  header.site-header .main-menu > li > ul.sub-menu {
    position: static !important; width: 100% !important; min-width: 100% !important; max-width: 100% !important;
    display: none !important; opacity: 1 !important; visibility: visible !important; transform: none !important;
    pointer-events: auto !important; box-shadow: none !important; border: 0 !important; border-radius: 0 !important;
    background: transparent !important; padding: 4px 0 14px !important; margin: 0 !important;
  }
  header.site-header .main-menu > li.menu-item-has-children.open > ul.sub-menu { display: block !important; }

  header.site-header .main-menu > li > ul.sub-menu > li > a {
    display: block !important; padding: 11px 16px 11px 22px !important; font-size: 14.5px !important;
    color: #3d5068 !important; white-space: normal !important; border-radius: 6px !important; position: relative !important;
  }
  header.site-header .main-menu > li > ul.sub-menu > li > a::before {
    content: '' !important; display: block !important; position: absolute !important;
    left: 6px !important; top: 50% !important; transform: translateY(-50%) !important;
    width: 3px !important; height: 0 !important; background: #0078d7 !important;
    border-radius: 2px !important; transition: height 0.2s ease !important;
  }
  header.site-header .main-menu > li > ul.sub-menu > li > a:hover::before { height: 55% !important; }
  header.site-header .main-menu > li > ul.sub-menu > li > a:hover { background: #f0f6fd !important; color: #0078d7 !important; padding-left: 26px !important; }

  ul.sub-menu.sub-menu--products-mega { display: block !important; padding: 4px 0 8px 4px !important; }
  ul.sub-menu.sub-menu--products-mega > li.mega-series-row { display: block !important; padding: 8px 12px !important; border-bottom: 1px solid #f0f4f8 !important; width: 100% !important; max-width: 100% !important; }
  ul.sub-menu.sub-menu--products-mega strong.mega-series-name { display: block !important; font-size: 13px !important; font-weight: 700 !important; color: #1a3a6a !important; margin-bottom: 6px; min-width: auto !important; max-width: none !important; border-bottom: 0 !important; padding-bottom: 0 !important; }
  ul.sub-menu.sub-menu--products-mega span.mega-product-links { display: flex !important; flex-wrap: wrap !important; flex-direction: row !important; gap: 4px 6px !important; }
  ul.sub-menu.sub-menu--products-mega span.mega-product-links a { display: inline-block !important; font-size: 13px !important; color: #506174 !important; padding: 4px 10px !important; border-radius: 4px !important; background: #f4f8fc !important; width: auto !important; }
  ul.sub-menu.sub-menu--products-mega span.mega-product-links a:hover { background: #eaf1fb !important; color: #0078d7 !important; }
  ul.sub-menu.sub-menu--products-mega span.mega-product-links a::before { display: none !important; }
  ul.sub-menu.sub-menu--products-mega .mega-product-sep { display: none !important; }
}
/* =========================================================
   HOMEPAGE COMPACT QUICK SEARCH
   ========================================================= */
.home-quick-search {
  padding: 0 !important;
  background: #ffffff;
}

/* ★ 修改：改为 block 布局，不再用 flex */
.home-quick-search__wrapper {
  padding: 0 0 12px;
}

/* ★ 修改：移除 max-width 限制，确保撑满 */
.home-quick-search__form {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: none;
  background: #f4f7fa;
  border: 1px solid #dfe8f1;
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-quick-search__form:focus-within {
  border-color: #0078d7;
  box-shadow: 0 0 0 4px rgba(0, 120, 215, 0.1);
}

.home-quick-search__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  flex-shrink: 0;
  font-size: 16px;
  color: #8898aa;
  padding-left: 6px;
  pointer-events: none;
}

.home-quick-search__form input[type="search"] {
  flex: 1;
  min-height: 44px;
  border: 0;
  padding: 0 4px;
  font-size: 14px;
  color: #1e2b3c;
  background: transparent;
  outline: none;
  box-shadow: none;
}

.home-quick-search__form input[type="search"]:focus {
  border: 0;
  box-shadow: none;
  outline: none;
}

.home-quick-search__form input[type="search"]::placeholder {
  color: #8898aa;
  font-size: 13.5px;
}

.home-quick-search__form button {
  min-height: 36px;
  padding: 0 22px;
  margin: 4px 4px 4px 0;
  border: 0;
  border-radius: 999px;
  background: #0078d7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.home-quick-search__form button:hover {
  background: #0567b6;
}
