/*
Theme Name: My First Theme
Theme URI: https://example.com/my-first-theme/
Author: 你的名字
Author URI: https://example.com/
Description: 这是我的第一个 WordPress 自定义主题。
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-first-theme
*/


:root {
  --color-blue: #1554d1;
  --color-blue-dark: #09225a;
  --color-blue-deep: #061842;
  --color-text: #0d235c;
  --color-white: #ffffff;
  --color-frost: rgba(255, 255, 255, 0.14);
  --header-height: 104px;
  --container-width: 1720px;
  --transition: 200ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  color: var(--color-text);
  background: #061842;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: var(--header-height);
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 24, 65, 0.78), rgba(5, 24, 65, 0));
  transition:
    background var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition);
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.is-mega-open {
  background: rgba(6, 24, 62, 0.84);
  box-shadow: 0 16px 42px rgba(0, 13, 42, 0.22);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  width: min(var(--container-width), calc(100% - 128px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.brand__mark {
  display: block;
  width: 84px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 25, 75, 0.22));
}

.brand__name {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 900;
  letter-spacing: 4px;
  white-space: nowrap;
  text-shadow: 0 4px 18px rgba(4, 22, 66, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.site-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 40px);
}

.site-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition:
    color var(--transition),
    transform var(--transition);
}

.site-nav__link::after {
  position: absolute;
  right: 50%;
  bottom: -22px;
  width: 34px;
  height: 3px;
  content: "";
  background: #fff;
  border-radius: 999px;
  opacity: 0;
  transform: translateX(50%) scaleX(0.5);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #fff;
  transform: translateY(-1px);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  opacity: 1;
  transform: translateX(50%) scaleX(1);
}

.site-nav__chevron {
  font-size: 14px;
  line-height: 1;
  opacity: 0.72;
  transform: translateY(-1px);
  transition: transform var(--transition);
}

.site-nav__item:hover > .site-nav__link,
.site-nav__item:focus-within > .site-nav__link {
  color: #fff;
}

.site-nav__item:hover .site-nav__chevron,
.site-nav__item:focus-within .site-nav__chevron {
  transform: translateY(-1px) rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(390px, calc(100vw - 32px));
  padding: 12px;
  color: #15305f;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(167, 187, 217, 0.42);
  box-shadow: 0 24px 60px rgba(5, 22, 57, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.site-nav__dropdown::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 28px;
  content: "";
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav__dropdown-head,
.site-nav__dropdown-link {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  color: #15305f;
  border-bottom: 1px solid #e3eaf4;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.site-nav__dropdown-head {
  background: #f3f7fd;
}

.site-nav__dropdown-link:last-child {
  border-bottom: 0;
}

.site-nav__dropdown-head span,
.site-nav__dropdown-link span {
  color: #3174d6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.site-nav__dropdown-head strong,
.site-nav__dropdown-link strong {
  overflow: hidden;
  color: #0a2559;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav__dropdown-link small {
  display: -webkit-box;
  overflow: hidden;
  color: #6b7890;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.site-nav__dropdown-head:hover,
.site-nav__dropdown-link:hover {
  background: #eaf2ff;
  transform: translateX(3px);
}

.site-nav__contact {
  display: inline-flex;
  min-width: 138px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.site-nav__contact:hover {
  color: var(--color-blue);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 88, 220, 0.28);
  transform: translateY(-2px);
}

.product-mega {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: none;
  width: min(1500px, calc(100% - 64px));
  min-height: 590px;
  grid-template-columns: 280px minmax(0, 1fr);
  overflow: hidden;
  color: #162b55;
  background: #fff;
  border-top: 1px solid rgba(139, 166, 202, 0.28);
  box-shadow: 0 30px 70px rgba(3, 19, 54, 0.28);
  transform: translateX(-50%);
}

.site-header.is-mega-open .product-mega {
  display: grid;
}

.product-mega__sidebar {
  color: #fff;
  background: linear-gradient(155deg, #173b77 0%, #09265c 100%);
}

.product-mega__brand {
  display: grid;
  min-height: 104px;
  align-content: center;
  gap: 7px;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.product-mega__brand span {
  color: rgba(173, 209, 255, 0.62);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
}

.product-mega__brand strong {
  font-size: 24px;
}

.product-mega__categories {
  display: grid;
  padding: 10px 0;
}

.product-mega__category {
  display: grid;
  min-height: 52px;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 8px;
  padding: 7px 26px;
  color: rgba(232, 241, 255, 0.78);
  text-align: left;
  background: transparent;
  border: 0;
  transition: color var(--transition), background var(--transition), padding var(--transition);
}

.product-mega__category span {
  color: rgba(141, 188, 249, 0.48);
  font-size: 10px;
  font-weight: 900;
}

.product-mega__category strong {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-mega__category:hover,
.product-mega__category.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  padding-left: 32px;
}

.product-mega__main {
  min-width: 0;
  background:
    linear-gradient(135deg, transparent 0 76%, rgba(40, 105, 201, 0.045) 76.2% 76.35%, transparent 76.55%),
    #fff;
}

.product-mega__heading {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 44px;
  border-bottom: 1px solid #e4e9f0;
}

.product-mega__heading > div {
  display: grid;
  gap: 6px;
}

.product-mega__heading > div span {
  color: #4381de;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
}

.product-mega__heading > div strong {
  color: #122c60;
  font-size: 21px;
}

.product-mega__heading > a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #275da9;
  font-size: 13px;
  font-weight: 800;
  transition: color var(--transition), transform var(--transition);
}

.product-mega__heading > a:hover {
  color: #1671ee;
  transform: translateX(3px);
}

.product-mega__content {
  height: 486px;
  overflow-y: auto;
  padding: 34px 44px 42px;
  scrollbar-color: #a8bad3 transparent;
  scrollbar-width: thin;
}

.product-mega__content[hidden] {
  display: none;
}

.product-mega__content--all {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: start;
  gap: 36px 48px;
}

.product-mega__group {
  min-width: 0;
}

.product-mega__group-title {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 8px;
  color: #173a72;
}

.product-mega__group-title span {
  padding-top: 3px;
  color: #7ba7e4;
  font-size: 9px;
  font-weight: 900;
}

.product-mega__group-title strong {
  overflow: hidden;
  font-size: 15px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-mega__group ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0 0 0 34px;
  list-style: none;
}

.product-mega__group li a {
  display: block;
  overflow: hidden;
  color: #68758b;
  font-size: 12px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--transition), transform var(--transition);
}

.product-mega__group li a:hover {
  color: #1568db;
  transform: translateX(3px);
}

.product-mega__product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: #e1e7ef;
}

.product-mega__product-list li {
  min-width: 0;
}

.product-mega__product-list a {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  padding: 25px 24px;
  background: #fff;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.product-mega__product-list a:hover {
  position: relative;
  z-index: 2;
  background: #f5f9ff;
  box-shadow: 0 14px 34px rgba(15, 50, 105, 0.14);
  transform: translateY(-3px);
}

.product-mega__product-list a > span {
  color: #76a5e7;
  font-size: 10px;
  font-weight: 900;
}

.product-mega__product-list a strong {
  overflow: hidden;
  margin-top: 20px;
  color: #182f5a;
  font-size: 15px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-mega__product-list a small {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 10px;
  color: #7a8698;
  font-size: 11px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-mega__more a {
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #246fdc, #123f93);
}

.product-mega__more a:hover {
  background: linear-gradient(135deg, #3386f5, #164da9);
}

.product-mega__more a > span,
.product-mega__more a strong,
.product-mega__more a small {
  color: inherit;
}

.product-mega__more a > span {
  font-size: 24px;
  font-weight: 300;
}

@media (min-width: 981px) and (max-width: 1180px) {
  .product-mega {
    width: calc(100% - 32px);
    grid-template-columns: 235px minmax(0, 1fr);
  }

  .product-mega__category {
    padding-inline: 18px;
  }

  .product-mega__category:hover,
  .product-mega__category.is-active {
    padding-left: 24px;
  }

  .product-mega__heading,
  .product-mega__content {
    padding-right: 28px;
    padding-left: 28px;
  }

  .product-mega__content--all,
  .product-mega__product-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-mega__content--all {
    gap: 30px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 57%, rgba(42, 132, 255, 0.5), transparent 22%),
    linear-gradient(135deg, #dceaff, #0a2c69 72%);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 23, 65, 0.72) 0%, rgba(8, 42, 96, 0.12) 26%, rgba(3, 16, 48, 0.55) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 247, 255, 0.72) 23%, rgba(60, 123, 210, 0.2) 48%, rgba(5, 25, 69, 0.18) 100%);
  pointer-events: none;
}

.hero__scan {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background:
    radial-gradient(circle at 24% 78%, rgba(45, 132, 255, 0.38) 0 1px, transparent 2px),
    radial-gradient(circle at 38% 58%, rgba(45, 132, 255, 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 52% 70%, rgba(45, 132, 255, 0.34) 0 1px, transparent 2px);
  opacity: 0.9;
  pointer-events: none;
}

.hero__scan::before,
.hero__scan::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(45, 132, 255, 0.38);
  border-radius: 50%;
}

.hero__scan::before {
  right: 48%;
  bottom: 24%;
  width: 220px;
  height: 72px;
  transform: rotate(-8deg);
}

.hero__scan::after {
  right: 18%;
  bottom: 39%;
  width: 126px;
  height: 44px;
  transform: rotate(-5deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(var(--container-width), calc(100% - 128px));
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  gap: clamp(88px, 11vh, 150px);
  margin-inline: auto;
  padding: calc(var(--header-height) + 72px) 0 58px;
}

.hero__copy {
  max-width: 1260px;
  margin-top: clamp(32px, 5vh, 90px);
}

.hero h1 {
  margin: 0;
  color: #071d54;
  font-size: clamp(44px, 4.6vw, 74px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 2px;
  white-space: nowrap;
  text-shadow: 0 8px 28px rgba(255, 255, 255, 0.3);
}

.hero__subtitle,
.hero__description {
  margin: 0;
  color: rgba(13, 35, 92, 0.78);
  font-weight: 700;
  letter-spacing: 0.8px;
}

.hero__subtitle {
  margin-top: 26px;
  font-size: clamp(17px, 1.3vw, 22px);
}

.hero__description {
  margin-top: 14px;
  font-size: clamp(18px, 1.5vw, 24px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 52px;
}

.button {
  display: inline-flex;
  min-width: 230px;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 34px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 999px;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #1b72ff, #104ec9);
  box-shadow: 0 18px 40px rgba(17, 84, 209, 0.28);
}

.button--primary:hover {
  box-shadow: 0 24px 50px rgba(17, 84, 209, 0.38);
}

.button--ghost {
  color: #1252c7;
  background: rgba(255, 255, 255, 0.42);
  border: 1.5px solid rgba(18, 82, 199, 0.76);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  color: #fff;
  background: #1554d1;
  border-color: #1554d1;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(48px, 8vw, 150px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-stats__item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  text-shadow: 0 6px 24px rgba(0, 19, 55, 0.28);
}

.hero-stats__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  font-size: 27px;
  border: 1.5px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-stats strong,
.hero-stats small {
  display: block;
}

.hero-stats strong {
  font-size: 17px;
  font-weight: 900;
}

.hero-stats small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 600;
}

.products-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 78px 0 92px;
  background:
    linear-gradient(135deg, transparent 0 28%, rgba(214, 222, 235, 0.24) 28.2% 28.8%, transparent 29% 100%),
    linear-gradient(155deg, transparent 0 62%, rgba(214, 222, 235, 0.22) 62.2% 62.8%, transparent 63% 100%),
    #f6f7f9;
}

.products-section::before,
.products-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.products-section::before {
  top: 0;
  right: -18%;
  width: 56%;
  height: 56%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(234, 239, 247, 0.28));
  transform: skewX(-23deg);
}

.products-section::after {
  right: 7%;
  bottom: 11%;
  width: 36%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(175, 188, 204, 0.5), transparent);
  transform: rotate(-28deg);
}

.products-section__inner {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 80px));
  margin-inline: auto;
}

.section-heading {
  text-align: center;
}

.section-heading__title {
  margin: 0;
  color: #111827;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 900;
  letter-spacing: 1px;
}

.section-heading__subtitle {
  margin: 24px 0 0;
  color: #111827;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 900;
}

.product-mode-tabs {
  display: flex;
  justify-content: center;
  gap: 42px;
  margin-top: 52px;
}

.product-mode-tabs__item {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 34px;
  color: #111827;
  font-size: 20px;
  font-weight: 900;
  background: transparent;
  border: 0;
  border-radius: 999px;
  transition:
    color var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.product-mode-tabs__item.is-active {
  color: #fff;
  background: linear-gradient(135deg, #4e89ff, #1d5ee8);
  box-shadow: 0 16px 30px rgba(31, 93, 224, 0.28);
}

.product-mode-tabs__item:hover {
  transform: translateY(-2px);
}

.product-mode-tabs__icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  font-size: 20px;
}

.product-panel {
  margin-top: 48px;
  background: #fff;
  border: 1px solid #d8dde5;
  box-shadow: 0 30px 80px rgba(16, 31, 64, 0.08);
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 144px;
  background: #edf0f4;
}

.product-categories__item {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #242b35;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  background: transparent;
  border: 0;
  border-right: 1px solid #d8dde5;
  border-bottom: 1px solid #d8dde5;
  transition:
    color var(--transition),
    background var(--transition);
}

.product-categories__item:nth-child(4n) {
  border-right: 0;
}

.product-categories__item:nth-child(n + 5) {
  border-bottom: 0;
}

.product-categories__item:hover,
.product-categories__item.is-active {
  color: #2d73f5;
  background: rgba(255, 255, 255, 0.4);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card {
  min-height: 330px;
  border-top: 1px solid #d8dde5;
  border-right: 1px solid #d8dde5;
  background: #fff;
}

.product-card:nth-child(4n) {
  border-right: 0;
}

.product-card:nth-child(-n + 4) {
  border-top: 0;
}

.product-card__link {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 28px 48px 34px;
  color: #171b22;
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    background var(--transition);
}

.product-card__link:hover {
  z-index: 1;
  background: #fff;
  box-shadow: 0 24px 60px rgba(31, 93, 224, 0.14);
  transform: translateY(-4px);
}

.product-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 68px;
  height: 30px;
  padding: 0 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 30px;
  text-align: center;
  background: #f03a36;
  border-radius: 0 0 0 4px;
}

.product-card__media {
  display: grid;
  height: 142px;
  place-items: center;
}

.product-card__media img {
  max-width: 100%;
  max-height: 132px;
  object-fit: contain;
  transition: transform var(--transition);
}

.product-card__link:hover .product-card__media img {
  transform: translateY(-4px) scale(1.04);
}

.product-card__body {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.product-card__title {
  color: #111827;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.product-card__desc {
  display: -webkit-box;
  overflow: hidden;
  color: #303845;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card--more {
  background:
    radial-gradient(circle at 74% 20%, rgba(103, 155, 255, 0.32), transparent 34%),
    linear-gradient(135deg, #f7fbff, #eef4ff);
}

.product-card__link--more {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-card__link--more:hover {
  background:
    radial-gradient(circle at 74% 20%, rgba(103, 155, 255, 0.38), transparent 34%),
    linear-gradient(135deg, #ffffff, #eaf2ff);
}

.product-card__more-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: #fff;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(135deg, #4e89ff, #1d5ee8);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(31, 93, 224, 0.24);
}

.product-card--more .product-card__body {
  max-width: 240px;
  margin-top: 24px;
}

.product-card--more .product-card__desc {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.solutions-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 118px;
  background: #fff;
}

.section-anchor {
  position: absolute;
  top: calc(-1 * var(--header-height));
}

.solutions-section__inner {
  width: min(1720px, calc(100% - 128px));
  margin-inline: auto;
}

.solutions-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 78px;
}

.solutions-section__title-wrap {
  position: relative;
  padding-left: 42px;
}

.solutions-section__title-wrap::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 56px;
  content: "";
  background: #df3434;
}

.solutions-section__title {
  margin: 0;
  color: #252a31;
  font-size: clamp(38px, 3.4vw, 62px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 1px;
}

.solutions-section__subtitle {
  max-width: 720px;
  margin: 18px 0 0;
  color: #5a6472;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 600;
  line-height: 1.7;
}

.solutions-section__more {
  display: inline-flex;
  min-width: 250px;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  gap: 36px;
  color: #df3434;
  font-size: 20px;
  font-weight: 700;
  border: 1.5px solid #df3434;
  transition:
    color var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.solutions-section__more:hover {
  color: #fff;
  background: #df3434;
  box-shadow: 0 18px 40px rgba(223, 52, 52, 0.2);
  transform: translateY(-2px);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 312px;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solutions-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: #0d235c;
}

.solutions-card--span-5 {
  grid-column: span 5;
}

.solutions-card--span-4 {
  grid-column: span 4;
}

.solutions-card--span-3 {
  grid-column: span 3;
}

.solutions-card__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
}

.solutions-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.01);
  transition:
    filter var(--transition),
    transform 500ms ease;
}

.solutions-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 15, 42, 0.08) 0%, rgba(3, 15, 42, 0.14) 42%, rgba(3, 15, 42, 0.72) 100%),
    linear-gradient(90deg, rgba(4, 16, 46, 0.36), transparent 58%);
  transition: background var(--transition);
}

.solutions-card__content {
  position: absolute;
  right: 36px;
  bottom: 34px;
  left: 36px;
  display: grid;
  gap: 12px;
  transform: translateY(24px);
  transition: transform var(--transition);
}

.solutions-card__title {
  font-size: clamp(26px, 2vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 8px 24px rgba(0, 10, 32, 0.38);
}

.solutions-card__desc {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  opacity: 0;
  transition: opacity var(--transition);
}

.solutions-card__link:hover .solutions-card__image {
  filter: saturate(1.15) contrast(1.08);
  transform: scale(1.07);
}

.solutions-card__link:hover .solutions-card__shade {
  background:
    linear-gradient(180deg, rgba(3, 15, 42, 0.06) 0%, rgba(3, 15, 42, 0.22) 34%, rgba(3, 15, 42, 0.86) 100%),
    linear-gradient(90deg, rgba(4, 16, 46, 0.46), transparent 62%);
}

.solutions-card__link:hover .solutions-card__content {
  transform: translateY(0);
}

.solutions-card__link:hover .solutions-card__desc {
  opacity: 1;
}

@media (max-width: 1280px) {
  .site-header__inner,
  .hero__content {
    width: min(100% - 64px, var(--container-width));
  }

  .site-nav__menu {
    gap: 30px;
  }

  .products-section__inner {
    width: min(100% - 48px, 1500px);
  }

  .solutions-section__inner {
    width: min(100% - 64px, 1720px);
  }

  .solutions-grid {
    grid-auto-rows: 280px;
  }
}

@media (max-width: 1180px) {
  .site-header__inner {
    gap: 28px;
  }

  .site-nav__menu {
    gap: 24px;
  }

  .site-nav__link {
    font-size: 16px;
  }

  .site-nav__contact {
    min-width: 126px;
    min-height: 48px;
    font-size: 16px;
    letter-spacing: 1px;
  }

  .product-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .product-categories__item,
  .product-categories__item:nth-child(4n),
  .product-categories__item:nth-child(n + 5) {
    min-height: 70px;
    border-right: 1px solid #d8dde5;
    border-bottom: 1px solid #d8dde5;
  }

  .product-categories__item:nth-child(2n) {
    border-right: 0;
  }

  .product-categories__item:nth-child(n + 7) {
    border-bottom: 0;
  }

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

  .product-card,
  .product-card:nth-child(4n),
  .product-card:nth-child(-n + 4) {
    border-top: 1px solid #d8dde5;
    border-right: 1px solid #d8dde5;
  }

  .product-card:nth-child(3n) {
    border-right: 0;
  }

  .product-card:nth-child(-n + 3) {
    border-top: 0;
  }

  .solutions-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 270px;
  }

  .solutions-card--span-5,
  .solutions-card--span-4,
  .solutions-card--span-3 {
    grid-column: span 3;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    background: rgba(6, 24, 62, 0.7);
    backdrop-filter: blur(14px);
  }

  .site-header__inner,
  .hero__content {
    width: min(100% - 32px, var(--container-width));
  }

  .brand__mark {
    width: 62px;
    height: 40px;
  }

  .brand__name {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .site-nav__toggle {
    display: grid;
  }

  .site-nav__menu {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 16px;
    background: rgba(6, 24, 62, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 12, 40, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity var(--transition),
      transform var(--transition);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open .site-nav__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav.is-open .site-nav__toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-nav.is-open .site-nav__toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-nav.is-open .site-nav__toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav__link,
  .site-nav__contact {
    justify-content: flex-start;
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 10px;
    padding: 0 14px;
  }

  .site-nav__item {
    display: block;
  }

  .site-nav__chevron {
    margin-left: auto;
  }

  .site-nav__dropdown {
    position: static;
    width: auto;
    margin: 0 0 10px 14px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav__dropdown::before {
    display: none;
  }

  .site-nav__dropdown-head,
  .site-nav__dropdown-link {
    padding: 12px;
    color: #fff;
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .site-nav__dropdown-head strong,
  .site-nav__dropdown-link strong {
    color: #fff;
  }

  .site-nav__dropdown-link small {
    color: rgba(225, 238, 255, 0.72);
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__contact {
    margin-top: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
  }

  .product-mega {
    display: none;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(4, 23, 65, 0.78), rgba(4, 23, 65, 0.18) 36%, rgba(3, 16, 48, 0.72)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(226, 240, 255, 0.48) 48%, rgba(4, 23, 65, 0.32));
  }

  .hero__content {
    gap: 62px;
    padding-top: calc(var(--header-height) + 58px);
  }

  .hero h1 {
    font-size: clamp(38px, 8vw, 58px);
    white-space: normal;
  }

  .hero__actions {
    gap: 18px;
    margin-top: 40px;
  }

  .button {
    min-width: 190px;
  }

  .hero-stats {
    gap: 22px;
  }

  .products-section {
    padding: 64px 0 74px;
  }

  .product-mode-tabs {
    gap: 16px;
    margin-top: 36px;
  }

  .product-mode-tabs__item {
    min-height: 50px;
    padding: 0 22px;
    font-size: 17px;
  }

  .product-panel {
    margin-top: 36px;
  }

  .product-categories {
    display: flex;
    overflow-x: auto;
    min-height: 74px;
    scrollbar-width: none;
  }

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

  .product-categories__item {
    min-width: 210px;
    padding-inline: 18px;
    font-size: 16px;
    white-space: normal;
  }

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

  .product-card,
  .product-card:nth-child(3n),
  .product-card:nth-child(-n + 3) {
    border-top: 1px solid #d8dde5;
    border-right: 1px solid #d8dde5;
  }

  .product-card:nth-child(2n) {
    border-right: 0;
  }

  .product-card:nth-child(-n + 2) {
    border-top: 0;
  }

  .product-card__link {
    padding: 24px 28px 30px;
  }

  .solutions-section {
    padding: 72px 0 86px;
  }

  .solutions-section__inner {
    width: min(100% - 32px, 1720px);
  }

  .solutions-section__head {
    display: grid;
    gap: 28px;
    margin-bottom: 42px;
  }

  .solutions-section__title-wrap {
    padding-left: 28px;
  }

  .solutions-section__title-wrap::before {
    top: 7px;
    width: 5px;
    height: 44px;
  }

  .solutions-section__more {
    min-width: 210px;
    min-height: 56px;
    gap: 28px;
    font-size: 18px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .solutions-card--span-5,
  .solutions-card--span-4,
  .solutions-card--span-3 {
    grid-column: 1;
  }

  .solutions-card__content {
    right: 26px;
    bottom: 26px;
    left: 26px;
    transform: translateY(0);
  }

  .solutions-card__desc {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
  }

  .hero__video {
    object-position: center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(4, 23, 65, 0.62), rgba(246, 250, 255, 0.76) 30%, rgba(5, 23, 62, 0.72) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
  }

  .hero__content {
    min-height: 760px;
    justify-content: flex-start;
    padding: calc(var(--header-height) + 76px) 0 34px;
  }

  .hero__copy {
    margin-top: 0;
  }

  .hero h1 {
    max-width: 420px;
    font-size: 36px;
    letter-spacing: 0;
  }

  .hero__subtitle,
  .hero__description {
    max-width: 380px;
    font-size: 15px;
    line-height: 1.8;
  }

  .hero__actions {
    flex-direction: column;
    gap: 14px;
  }

  .button {
    width: min(100%, 260px);
    min-height: 54px;
  }

  .hero-stats {
    display: grid;
    width: 100%;
    gap: 14px;
    margin-top: auto;
  }

  .hero-stats__item {
    padding: 10px 0;
  }

  .hero-stats__icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .products-section {
    min-height: auto;
    padding: 52px 0 60px;
  }

  .products-section__inner {
    width: min(100% - 28px, 1500px);
  }

  .section-heading__title {
    font-size: 32px;
  }

  .section-heading__subtitle {
    margin-top: 14px;
    font-size: 16px;
  }

  .product-mode-tabs {
    flex-direction: column;
    align-items: center;
  }

  .product-mode-tabs__item {
    width: min(100%, 260px);
  }

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

  .product-card,
  .product-card:nth-child(2n),
  .product-card:nth-child(-n + 2) {
    min-height: auto;
    border-top: 1px solid #d8dde5;
    border-right: 0;
  }

  .product-card:first-child {
    border-top: 0;
  }

  .product-card__link {
    padding: 24px 24px 28px;
  }

  .product-card__media {
    height: 126px;
  }

  .product-card__title {
    font-size: 20px;
  }

  .product-card__desc {
    font-size: 15px;
  }

  .solutions-section {
    padding: 56px 0 66px;
  }

  .solutions-section__inner {
    width: min(100% - 28px, 1720px);
  }

  .solutions-section__title {
    font-size: 32px;
  }

  .solutions-section__subtitle {
    margin-top: 12px;
    font-size: 15px;
  }

  .solutions-section__more {
    width: 100%;
  }

  .solutions-grid {
    grid-auto-rows: 260px;
    gap: 12px;
  }

  .solutions-card__title {
    font-size: 24px;
  }

  .solutions-card__desc {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

/* Product showcase */
.products-section {
  min-height: auto;
  padding: 96px 0 110px;
  background:
    radial-gradient(circle at 18% 24%, rgba(70, 145, 255, 0.3), transparent 30%),
    radial-gradient(circle at 82% 68%, rgba(29, 101, 228, 0.26), transparent 28%),
    linear-gradient(145deg, #071d54 0%, #0b397a 48%, #061842 100%);
}

.products-section::before {
  top: -24%;
  right: -8%;
  width: 58%;
  height: 74%;
  background:
    linear-gradient(135deg, transparent 44%, rgba(116, 177, 255, 0.12) 44.5% 45%, transparent 45.5%),
    linear-gradient(45deg, transparent 58%, rgba(116, 177, 255, 0.1) 58.5% 59%, transparent 59.5%);
  transform: none;
}

.products-section::after {
  right: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 34%;
  background:
    linear-gradient(rgba(91, 159, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 159, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000);
  transform: perspective(460px) rotateX(62deg) scale(1.35);
  transform-origin: bottom;
}

.products-section .section-heading__title {
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 13, 48, 0.28);
}

.products-section .section-heading__subtitle {
  color: rgba(231, 242, 255, 0.78);
  font-weight: 600;
}

.product-showcase {
  position: relative;
  margin-top: 54px;
}

.product-carousel {
  position: relative;
}

.product-carousel__viewport {
  overflow: hidden;
  padding: 18px 2px 34px;
}

.product-showcase__track {
  display: grid;
  grid-auto-columns: calc((100% - 72px) / 4);
  grid-auto-flow: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.product-category-card {
  min-width: 0;
  min-height: 570px;
  overflow: hidden;
  background: rgba(249, 252, 255, 0.97);
  border: 1px solid rgba(174, 207, 255, 0.38);
  border-radius: 6px;
  box-shadow: 0 24px 58px rgba(0, 15, 54, 0.2);
  scroll-snap-align: start;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.product-category-card:hover {
  border-color: rgba(99, 161, 255, 0.84);
  box-shadow: 0 32px 72px rgba(0, 19, 65, 0.32);
  transform: translateY(-7px);
}

.product-category-card__link {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  color: #12224a;
}

.product-category-card__number {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 22px;
  color: rgba(29, 101, 228, 0.24);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.product-category-card__media {
  display: grid;
  height: 250px;
  place-items: center;
  padding: 38px 32px 22px;
  background:
    radial-gradient(circle at 50% 34%, rgba(92, 157, 255, 0.22), transparent 42%),
    linear-gradient(180deg, #f8fbff, #eef5ff);
  border-bottom: 1px solid #e1ebfa;
}

.product-category-card__media img {
  width: min(72%, 220px);
  height: 176px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(28, 58, 112, 0.18));
  transition: transform 400ms ease;
}

.product-category-card:hover .product-category-card__media img {
  transform: translateY(-8px) scale(1.06);
}

.product-category-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 30px 30px;
}

.product-category-card__title {
  min-height: 62px;
  color: #0b265e;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.35;
}

.product-category-card__desc {
  display: -webkit-box;
  min-height: 78px;
  overflow: hidden;
  margin-top: 12px;
  color: #61708a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-category-card__items {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  color: #283957;
  font-size: 15px;
  font-weight: 700;
}

.product-category-card__items > span {
  position: relative;
  overflow: hidden;
  padding-left: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-category-card__items > span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #236de5;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(35, 109, 229, 0.1);
  transform: translateY(-50%);
}

.product-category-card__action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
  color: #1c65dc;
  font-size: 15px;
  font-weight: 900;
}

.product-carousel__control {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #1455cd;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(145, 188, 255, 0.68);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 18, 62, 0.24);
  transform: translateY(-50%);
  transition:
    color var(--transition),
    background var(--transition),
    opacity var(--transition),
    transform var(--transition);
}

.product-carousel__control:hover:not(:disabled) {
  color: #fff;
  background: #1c65dc;
  transform: translateY(-50%) scale(1.06);
}

.product-carousel__control:disabled {
  opacity: 0.34;
  cursor: default;
}

.product-carousel__control--prev {
  left: -8px;
}

.product-carousel__control--next {
  right: -8px;
}

.product-showcase__footer {
  display: grid;
  justify-items: center;
  gap: 30px;
  margin-top: 18px;
}

.product-carousel__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.product-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.32);
  border: 0;
  border-radius: 999px;
  transition:
    width var(--transition),
    background var(--transition);
}

.product-carousel__dot.is-active {
  width: 36px;
  background: #fff;
}

.product-showcase__more {
  display: inline-flex;
  min-width: 280px;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  background: linear-gradient(135deg, #2878f2, #1554d1);
  border: 1px solid rgba(153, 197, 255, 0.54);
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(0, 18, 65, 0.26);
  transition:
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.product-showcase__more:hover {
  background: linear-gradient(135deg, #3c88ff, #1b62df);
  box-shadow: 0 24px 52px rgba(0, 19, 70, 0.36);
  transform: translateY(-3px);
}

@media (max-width: 1199px) {
  .product-showcase__track {
    grid-auto-columns: calc((100% - 20px) / 2);
    gap: 20px;
  }
}

@media (max-width: 699px) {
  .products-section {
    padding: 64px 0 74px;
  }

  .product-showcase {
    margin-top: 34px;
  }

  .product-showcase__track {
    grid-auto-columns: 100%;
    gap: 14px;
  }

  .product-category-card {
    min-height: 535px;
  }

  .product-category-card__media {
    height: 220px;
  }

  .product-category-card__content {
    padding: 24px;
  }

  .product-category-card__title {
    min-height: auto;
    font-size: 21px;
  }

  .product-carousel__control {
    width: 44px;
    height: 44px;
  }

  .product-carousel__control--prev {
    left: 8px;
  }

  .product-carousel__control--next {
    right: 8px;
  }

  .product-showcase__more {
    width: 100%;
    min-width: 0;
  }
}

/* Immersive product explorer */
.products-section {
  min-height: 920px;
  padding: 92px 0 108px;
  background:
    radial-gradient(circle at 62% 48%, rgba(76, 151, 255, 0.27), transparent 29%),
    radial-gradient(circle at 15% 22%, rgba(71, 137, 237, 0.18), transparent 25%),
    linear-gradient(135deg, #061842 0%, #0a3272 48%, #061a46 100%);
}

.products-section::before {
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(91, 164, 255, 0.08) 46.2% 46.35%, transparent 46.55%),
    linear-gradient(28deg, transparent 0 72%, rgba(91, 164, 255, 0.08) 72.2% 72.35%, transparent 72.55%);
  transform: none;
}

.products-section::after {
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 44%;
  background:
    linear-gradient(rgba(91, 159, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 159, 255, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000);
  transform: perspective(470px) rotateX(63deg) scale(1.4);
  transform-origin: bottom;
}

.products-section__inner {
  width: min(1640px, calc(100% - 96px));
}

.products-section .section-heading {
  position: relative;
  z-index: 2;
}

.products-section .section-heading__title {
  font-size: clamp(38px, 3vw, 54px);
  letter-spacing: 2px;
}

.products-section .section-heading__subtitle {
  margin-top: 16px;
  color: rgba(219, 235, 255, 0.72);
  font-size: clamp(16px, 1.15vw, 20px);
}

.product-explorer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  min-height: 620px;
  margin-top: 54px;
  overflow: hidden;
  border-top: 1px solid rgba(149, 198, 255, 0.24);
  border-bottom: 1px solid rgba(149, 198, 255, 0.18);
}

.product-explorer__navigation {
  padding: 34px 28px 34px 0;
  border-right: 1px solid rgba(149, 198, 255, 0.2);
}

.product-explorer__nav-label {
  display: block;
  margin-bottom: 20px;
  color: rgba(143, 193, 255, 0.6);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
}

.product-explorer__tabs {
  display: grid;
}

.product-explorer__tab {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  min-height: 63px;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 0;
  color: rgba(218, 234, 255, 0.56);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(151, 196, 255, 0.09);
  transition:
    color var(--transition),
    padding var(--transition),
    background var(--transition);
}

.product-explorer__tab::after {
  position: absolute;
  top: 0;
  right: -29px;
  bottom: 0;
  width: 3px;
  content: "";
  background: #65a9ff;
  box-shadow: 0 0 18px rgba(72, 151, 255, 0.85);
  opacity: 0;
  transform: scaleY(0.35);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.product-explorer__tab > span {
  color: rgba(117, 176, 250, 0.48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.product-explorer__tab > strong {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.product-explorer__tab:hover,
.product-explorer__tab.is-active {
  padding-left: 10px;
  color: #fff;
  background: linear-gradient(90deg, rgba(68, 142, 238, 0.16), transparent);
}

.product-explorer__tab.is-active::after {
  opacity: 1;
  transform: scaleY(1);
}

.product-explorer__tab.is-active > span {
  color: #75b3ff;
}

.product-explorer__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 1.12fr) minmax(350px, 0.88fr);
  min-width: 0;
  overflow: hidden;
}

.product-explorer__stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.035), transparent 42%);
  pointer-events: none;
}

.product-explorer__visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
}

.product-explorer__visual::before {
  position: absolute;
  width: min(78%, 540px);
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle, rgba(239, 247, 255, 0.97) 0 43%, rgba(199, 222, 255, 0.78) 55%, rgba(82, 149, 242, 0.1) 70%, transparent 71%);
  border-radius: 50%;
  box-shadow:
    0 0 80px rgba(89, 163, 255, 0.24),
    inset 0 0 60px rgba(74, 147, 246, 0.16);
}

.product-explorer__image {
  position: relative;
  z-index: 2;
  width: min(66%, 460px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 34px 36px rgba(0, 21, 67, 0.3));
  transition:
    filter 400ms ease,
    transform 400ms ease;
}

.product-explorer__stage.is-changing .product-explorer__image {
  animation: product-image-enter 560ms ease both;
}

.product-explorer__orbit {
  position: absolute;
  z-index: 1;
  aspect-ratio: 1;
  border: 1px solid rgba(112, 180, 255, 0.32);
  border-radius: 50%;
}

.product-explorer__orbit--outer {
  width: min(91%, 620px);
  animation: product-orbit 18s linear infinite;
}

.product-explorer__orbit--outer::before,
.product-explorer__orbit--inner::before {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  content: "";
  background: #75b7ff;
  border-radius: 50%;
  box-shadow: 0 0 18px #5ca7ff;
}

.product-explorer__orbit--inner {
  width: min(72%, 490px);
  border-style: dashed;
  opacity: 0.58;
  animation: product-orbit 13s linear infinite reverse;
}

.product-explorer__scan-line {
  position: absolute;
  z-index: 3;
  top: 16%;
  left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(104, 180, 255, 0.9), transparent);
  box-shadow: 0 0 14px rgba(71, 156, 255, 0.65);
  animation: product-scan 4s ease-in-out infinite;
}

.product-explorer__visual-label {
  position: absolute;
  z-index: 4;
  bottom: 38px;
  left: 42px;
  color: rgba(165, 208, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
}

.product-explorer__signal {
  position: absolute;
  z-index: 4;
  width: 7px;
  height: 7px;
  background: #75b7ff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(63, 145, 255, 0.12),
    0 0 18px rgba(80, 159, 255, 0.9);
}

.product-explorer__signal--one {
  top: 22%;
  left: 19%;
}

.product-explorer__signal--two {
  top: 31%;
  right: 14%;
}

.product-explorer__signal--three {
  bottom: 22%;
  left: 17%;
}

.product-explorer__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 92px 30px;
}

.product-explorer__stage.is-changing .product-explorer__content {
  animation: product-content-enter 440ms ease both;
}

.product-explorer__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #72b1ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.product-explorer__meta > span:first-child {
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.product-explorer__meta > span:last-child {
  padding-left: 16px;
  border-left: 1px solid rgba(137, 191, 255, 0.34);
}

.product-explorer__title {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(30px, 2.5vw, 46px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}

.product-explorer__description {
  max-width: 570px;
  margin: 20px 0 0;
  color: rgba(218, 234, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.product-explorer__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  background: transparent;
}

.product-explorer__features li {
  position: relative;
  min-height: 78px;
  background: rgba(6, 28, 70, 0.68);
  border: 1px solid rgba(139, 194, 255, 0.18);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.product-explorer__features li:hover {
  background: rgba(20, 62, 130, 0.74);
  border-color: rgba(117, 183, 255, 0.42);
  transform: translateX(4px);
}

.product-explorer__product-link {
  display: grid;
  min-height: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  color: #fff;
}

.product-explorer__product-link > span {
  min-width: 0;
}

.product-explorer__features strong {
  display: block;
  color: rgba(239, 247, 255, 0.9);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-explorer__features em {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 6px;
  color: rgba(205, 228, 255, 0.58);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-explorer__features small {
  color: #6cadff;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.product-explorer__product-empty {
  display: grid;
  place-items: center start;
  padding: 18px;
  color: rgba(218, 234, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.product-explorer__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.product-explorer__primary {
  display: inline-flex;
  min-width: 190px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #2c7df5, #1554d1);
  box-shadow: 0 16px 36px rgba(0, 27, 89, 0.3);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.product-explorer__primary:hover {
  box-shadow: 0 22px 46px rgba(25, 106, 231, 0.36);
  transform: translateY(-3px);
}

.product-explorer__secondary {
  position: relative;
  color: rgba(231, 243, 255, 0.84);
  font-size: 15px;
  font-weight: 700;
}

.product-explorer__secondary::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(125, 184, 255, 0.54);
  transform-origin: left;
  transition: transform var(--transition);
}

.product-explorer__secondary:hover::after {
  transform: scaleX(0.45);
}

.product-explorer__controls {
  position: absolute;
  z-index: 5;
  right: 40px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.product-explorer__progress {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.product-explorer__progress strong {
  font-size: 18px;
}

.product-explorer__progress > span {
  width: 46px;
  height: 1px;
  background: rgba(162, 205, 255, 0.44);
}

.product-explorer__progress small {
  color: rgba(194, 220, 255, 0.48);
  font-size: 12px;
}

.product-explorer__arrows {
  display: flex;
}

.product-explorer__arrows button {
  display: grid;
  width: 48px;
  height: 42px;
  place-items: center;
  color: rgba(226, 240, 255, 0.75);
  font-size: 19px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(150, 198, 255, 0.22);
  transition:
    color var(--transition),
    background var(--transition);
}

.product-explorer__arrows button + button {
  border-left: 0;
}

.product-explorer__arrows button:hover {
  color: #fff;
  background: rgba(54, 133, 235, 0.42);
}

@keyframes product-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes product-scan {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }

  20%,
  80% {
    opacity: 1;
  }

  50% {
    transform: translateY(380px);
  }
}

@keyframes product-image-enter {
  from {
    opacity: 0.35;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes product-content-enter {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1180px) {
  .products-section__inner {
    width: min(100% - 48px, 1640px);
  }

  .product-explorer {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .product-explorer__stage {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .product-explorer__content {
    padding-right: 28px;
  }

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

@media (max-width: 900px) {
  .products-section {
    min-height: auto;
    padding: 70px 0 82px;
  }

  .product-explorer {
    display: block;
    margin-top: 40px;
  }

  .product-explorer__navigation {
    overflow-x: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(149, 198, 255, 0.2);
    scrollbar-width: none;
  }

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

  .product-explorer__nav-label {
    display: none;
  }

  .product-explorer__tabs {
    display: flex;
    min-width: max-content;
  }

  .product-explorer__tab {
    width: 220px;
    min-height: 62px;
    padding: 8px 20px;
    border-right: 1px solid rgba(151, 196, 255, 0.1);
    border-bottom: 0;
  }

  .product-explorer__tab::after {
    top: auto;
    right: 20px;
    bottom: -19px;
    left: 20px;
    width: auto;
    height: 3px;
    transform: scaleX(0.35);
  }

  .product-explorer__tab.is-active::after {
    transform: scaleX(1);
  }

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

  .product-explorer__visual {
    min-height: 540px;
  }

  .product-explorer__content {
    padding: 48px 24px 94px;
  }
}

@media (max-width: 680px) {
  .products-section__inner {
    width: min(100% - 28px, 1640px);
  }

  .product-explorer__stage {
    display: block;
  }

  .product-explorer__visual {
    min-height: 420px;
  }

  .product-explorer__visual::before {
    width: 350px;
  }

  .product-explorer__image {
    width: 290px;
  }

  .product-explorer__orbit--outer {
    width: 390px;
  }

  .product-explorer__orbit--inner {
    width: 320px;
  }

  .product-explorer__scan-line {
    left: 8%;
    width: 84%;
  }

  .product-explorer__visual-label {
    bottom: 20px;
    left: 20px;
  }

  .product-explorer__content {
    padding: 36px 4px 104px;
  }

  .product-explorer__meta > span:first-child {
    font-size: 34px;
  }

  .product-explorer__title {
    margin-top: 18px;
    font-size: 30px;
  }

  .product-explorer__description {
    font-size: 15px;
  }

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

  .product-explorer__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .product-explorer__primary {
    width: 100%;
  }

  .product-explorer__controls {
    right: 0;
    bottom: 28px;
    left: 0;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-explorer__orbit,
  .product-explorer__scan-line,
  .product-explorer__stage.is-changing .product-explorer__image,
  .product-explorer__stage.is-changing .product-explorer__content {
    animation: none;
  }
}

/* Immersive industry solutions */
.solutions-section {
  position: relative;
  min-height: 940px;
  padding: 94px 0 104px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 28%, rgba(55, 126, 224, 0.18), transparent 26%),
    linear-gradient(145deg, #f4f8ff 0%, #e9f1fc 100%);
}

.solutions-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, transparent 0 64%, rgba(52, 118, 210, 0.07) 64.2% 64.35%, transparent 64.55%),
    linear-gradient(38deg, transparent 0 78%, rgba(52, 118, 210, 0.06) 78.2% 78.35%, transparent 78.55%);
  pointer-events: none;
}

.solutions-section__inner {
  position: relative;
  z-index: 1;
  width: min(1640px, calc(100% - 96px));
  margin-inline: auto;
}

.solutions-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.solutions-section__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: #3174d6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
}

.solutions-section__title {
  margin: 0;
  color: #0a2559;
  font-size: clamp(38px, 3.2vw, 58px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1px;
}

.solutions-section__subtitle {
  max-width: 760px;
  margin: 16px 0 0;
  color: #65748c;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 600;
  line-height: 1.75;
}

.solutions-section__count {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #1554d1;
}

.solutions-section__count strong {
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
}

.solutions-section__count > span,
.solutions-section__count small {
  color: rgba(21, 84, 209, 0.42);
  font-size: 15px;
  font-weight: 800;
}

.solution-explorer {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #071b49;
  box-shadow: 0 38px 90px rgba(18, 54, 108, 0.2);
}

.solution-explorer__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.solution-explorer__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.015);
}

.solution-explorer.is-changing .solution-explorer__image {
  animation: solution-image-enter 680ms ease both;
}

.solution-explorer__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 20, 57, 0.98) 0%, rgba(5, 29, 70, 0.94) 31%, rgba(5, 29, 70, 0.62) 52%, rgba(5, 25, 61, 0.13) 78%, rgba(4, 18, 46, 0.28) 100%),
    linear-gradient(180deg, rgba(4, 19, 52, 0.22), transparent 52%, rgba(2, 14, 40, 0.84) 100%);
}

.solution-explorer__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(111, 176, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 176, 255, 0.07) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, #000, transparent 76%);
  opacity: 0.7;
}

.solution-explorer__marker {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #82bdff;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow:
    0 0 0 9px rgba(73, 150, 244, 0.12),
    0 0 22px rgba(89, 166, 255, 0.9);
}

.solution-explorer__marker::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  content: "";
  border: 1px solid rgba(111, 180, 255, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: solution-pulse 2.8s ease-out infinite;
}

.solution-explorer__marker--one {
  top: 23%;
  right: 21%;
}

.solution-explorer__marker--two {
  top: 46%;
  right: 10%;
}

.solution-explorer__marker--three {
  right: 34%;
  bottom: 25%;
}

.solution-explorer__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(620px, 50%);
  min-height: 650px;
  flex-direction: column;
  justify-content: center;
  padding: 66px 48px 150px 68px;
}

.solution-explorer.is-changing .solution-explorer__content {
  animation: solution-content-enter 500ms ease both;
}

.solution-explorer__index {
  color: rgba(119, 182, 255, 0.85);
  font-size: 52px;
  font-weight: 200;
  line-height: 1;
}

.solution-explorer__label {
  margin-top: 12px;
  color: rgba(157, 202, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.solution-explorer__title {
  max-width: 560px;
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: 0;
  text-shadow: 0 10px 30px rgba(0, 17, 51, 0.28);
}

.solution-explorer__description {
  max-width: 540px;
  margin: 22px 0 0;
  color: rgba(222, 237, 255, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.solution-explorer__capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.solution-explorer__capabilities li {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  color: rgba(238, 247, 255, 0.9);
  background: rgba(91, 158, 246, 0.11);
  border: 1px solid rgba(120, 181, 255, 0.24);
  backdrop-filter: blur(8px);
}

.solution-explorer__capabilities span {
  color: #6bb0ff;
  font-size: 10px;
  font-weight: 900;
}

.solution-explorer__capabilities strong {
  font-size: 13px;
  font-weight: 700;
}

.solution-explorer__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.solution-explorer__primary {
  display: inline-flex;
  min-width: 196px;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #2c7ff6, #1554d1);
  box-shadow: 0 18px 42px rgba(0, 24, 79, 0.3);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.solution-explorer__primary:hover {
  box-shadow: 0 24px 52px rgba(30, 112, 235, 0.4);
  transform: translateY(-3px);
}

.solution-explorer__secondary {
  position: relative;
  color: rgba(229, 241, 255, 0.84);
  font-size: 15px;
  font-weight: 700;
}

.solution-explorer__secondary::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(126, 187, 255, 0.56);
}

.solution-explorer__navigation {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 112px;
  align-items: stretch;
  background: rgba(3, 17, 48, 0.78);
  border-top: 1px solid rgba(137, 190, 255, 0.2);
  backdrop-filter: blur(15px);
}

.solution-explorer__tabs {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.solution-explorer__tab {
  position: relative;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px 22px;
  color: rgba(204, 225, 250, 0.48);
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(137, 190, 255, 0.12);
  transition:
    color var(--transition),
    background var(--transition);
}

.solution-explorer__tab::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: #65aaff;
  box-shadow: 0 0 18px rgba(72, 151, 255, 0.85);
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.solution-explorer__tab > span {
  color: rgba(110, 176, 255, 0.48);
  font-size: 11px;
  font-weight: 900;
}

.solution-explorer__tab > strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.solution-explorer__tab:hover,
.solution-explorer__tab.is-active {
  color: #fff;
  background: rgba(57, 130, 226, 0.14);
}

.solution-explorer__tab.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.solution-explorer__tab.is-active > span {
  color: #72b4ff;
}

.solution-explorer__arrows {
  display: none;
}

.solution-explorer__arrows button {
  display: grid;
  width: 62px;
  place-items: center;
  color: rgba(225, 239, 255, 0.72);
  font-size: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 0;
  border-left: 1px solid rgba(137, 190, 255, 0.16);
  transition:
    color var(--transition),
    background var(--transition);
}

.solution-explorer__arrows button:hover {
  color: #fff;
  background: rgba(54, 133, 235, 0.38);
}

@keyframes solution-image-enter {
  from {
    opacity: 0.35;
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes solution-content-enter {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes solution-pulse {
  from {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(0.2);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.25);
  }
}

@media (max-width: 1180px) {
  .solutions-section__inner {
    width: min(100% - 48px, 1640px);
  }

  .solution-explorer__content {
    width: 58%;
    padding-left: 48px;
  }

  .solution-explorer__tabs {
    overflow-x: auto;
    grid-template-columns: repeat(8, 190px);
    scrollbar-width: none;
  }

  .solution-explorer__tabs::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 820px) {
  .solutions-section {
    min-height: auto;
    padding: 70px 0 82px;
  }

  .solutions-section__head {
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .solutions-section__count {
    padding-top: 8px;
  }

  .solutions-section__count strong {
    font-size: 34px;
  }

  .solution-explorer {
    min-height: 790px;
  }

  .solution-explorer__overlay {
    background:
      linear-gradient(180deg, rgba(4, 20, 57, 0.38) 0%, rgba(4, 22, 58, 0.82) 40%, rgba(3, 17, 47, 0.98) 72%, rgba(2, 14, 40, 1) 100%);
  }

  .solution-explorer__image {
    object-position: 65% center;
  }

  .solution-explorer__content {
    position: absolute;
    right: 0;
    bottom: 112px;
    left: 0;
    width: auto;
    min-height: 520px;
    justify-content: flex-end;
    padding: 50px 34px 40px;
  }

  .solution-explorer__marker--one {
    top: 13%;
  }

  .solution-explorer__marker--two {
    top: 25%;
  }

  .solution-explorer__marker--three {
    bottom: 53%;
  }
}

@media (max-width: 560px) {
  .solutions-section__inner {
    width: min(100% - 28px, 1640px);
  }

  .solutions-section__head {
    display: block;
  }

  .solutions-section__count {
    display: none;
  }

  .solutions-section__title {
    font-size: 32px;
  }

  .solutions-section__subtitle {
    font-size: 15px;
  }

  .solution-explorer {
    min-height: 820px;
  }

  .solution-explorer__content {
    padding: 40px 20px 36px;
  }

  .solution-explorer__index {
    font-size: 40px;
  }

  .solution-explorer__title {
    margin-top: 18px;
    font-size: 31px;
  }

  .solution-explorer__description {
    margin-top: 16px;
    font-size: 14px;
  }

  .solution-explorer__capabilities {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .solution-explorer__capabilities li {
    min-height: 38px;
  }

  .solution-explorer__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 26px;
  }

  .solution-explorer__primary {
    width: 100%;
  }

  .solution-explorer__navigation {
    min-height: 104px;
  }

  .solution-explorer__tabs {
    grid-template-columns: repeat(8, 168px);
  }

  .solution-explorer__tab {
    padding: 14px 16px;
  }

  .solution-explorer__arrows button {
    width: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solution-explorer.is-changing .solution-explorer__image,
  .solution-explorer.is-changing .solution-explorer__content,
  .solution-explorer__marker::after {
    animation: none;
  }
}

/* News and insights */
.news-section {
  position: relative;
  overflow: hidden;
  padding: 98px 0 118px;
  background:
    radial-gradient(circle at 92% 12%, rgba(63, 133, 232, 0.12), transparent 25%),
    #f7f9fc;
}

.news-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(118deg, transparent 0 58%, rgba(36, 99, 190, 0.055) 58.2% 58.35%, transparent 58.55%),
    linear-gradient(42deg, transparent 0 82%, rgba(36, 99, 190, 0.045) 82.2% 82.35%, transparent 82.55%);
  pointer-events: none;
}

.news-section__inner {
  position: relative;
  z-index: 1;
  width: min(1640px, calc(100% - 96px));
  margin-inline: auto;
}

.news-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.news-section__eyebrow {
  display: block;
  margin-bottom: 13px;
  color: #3174d6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
}

.news-section__title {
  margin: 0;
  color: #0a2559;
  font-size: clamp(38px, 3.2vw, 58px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1px;
}

.news-section__subtitle {
  margin: 16px 0 0;
  color: #65748c;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 600;
  line-height: 1.75;
}

.news-section__more {
  display: inline-flex;
  min-width: 210px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #1554d1;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid rgba(21, 84, 209, 0.42);
  transition:
    color var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.news-section__more:hover {
  color: #fff;
  background: #1554d1;
  box-shadow: 0 18px 38px rgba(21, 84, 209, 0.2);
  transform: translateY(-2px);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  min-height: 610px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(24, 60, 112, 0.11);
}

.news-feature {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #071b49;
}

.news-feature__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 610px;
  color: #fff;
}

.news-feature__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 700ms ease;
}

.news-feature__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 17, 48, 0.04) 16%, rgba(3, 18, 51, 0.2) 44%, rgba(3, 17, 48, 0.94) 100%),
    linear-gradient(90deg, rgba(4, 22, 60, 0.35), transparent 70%);
}

.news-feature__content {
  position: absolute;
  right: 54px;
  bottom: 52px;
  left: 54px;
  display: grid;
}

.news-feature__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(215, 233, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.news-feature__meta strong {
  color: #7cb8ff;
  font-size: 12px;
  letter-spacing: 1px;
}

.news-feature__meta time {
  padding-left: 18px;
  border-left: 1px solid rgba(151, 198, 255, 0.3);
}

.news-feature__title {
  max-width: 780px;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 900;
  line-height: 1.4;
}

.news-feature__excerpt {
  max-width: 700px;
  margin-top: 16px;
  color: rgba(220, 236, 255, 0.72);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.news-feature__action {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.news-feature__link:hover .news-feature__image {
  transform: scale(1.045);
}

.news-list {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid #e3e9f2;
}

.news-list__item {
  min-height: 0;
  border-bottom: 1px solid #e3e9f2;
}

.news-list__item:last-child {
  border-bottom: 0;
}

.news-list__link {
  display: grid;
  height: 100%;
  grid-template-columns: 48px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 20px;
  padding: 32px 34px;
  color: #0b265e;
  transition:
    background var(--transition),
    padding var(--transition);
}

.news-list__number {
  align-self: start;
  color: rgba(21, 84, 209, 0.25);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.news-list__body {
  display: grid;
  align-content: center;
}

.news-list__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8a96a8;
  font-size: 12px;
  font-weight: 700;
}

.news-list__meta strong {
  color: #3174d6;
}

.news-list__meta time {
  padding-left: 14px;
  border-left: 1px solid #d8e0eb;
}

.news-list__title {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 12px;
  color: #0b265e;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 900;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-list__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 9px;
  color: #7b8798;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-list__arrow {
  color: #3174d6;
  font-size: 20px;
  transition: transform var(--transition);
}

.news-list__link:hover {
  padding-right: 26px;
  padding-left: 42px;
  background: #f3f7fd;
}

.news-list__link:hover .news-list__arrow {
  transform: translateX(5px);
}

.news-section__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: -24px 0 34px;
}

.news-section__tabs a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #24518f;
  font-size: 14px;
  font-weight: 800;
  background: #fff;
  border: 1px solid #d7e2f1;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.news-section__tabs a:hover,
.news-section__tabs a.is-active {
  color: #fff;
  background: #1554d1;
  border-color: #1554d1;
  transform: translateY(-2px);
}

.news-feature--empty {
  display: grid;
  min-height: 610px;
  place-items: center;
  padding: 42px;
}

.news-empty {
  display: grid;
  gap: 12px;
  color: rgba(222, 235, 255, 0.72);
  text-align: center;
}

.news-empty strong {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.news-archive-page,
.news-detail-page {
  color: #14233c;
  background: #f6f8fc;
}

.news-archive-hero,
.news-detail__hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 82px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(8, 29, 75, 0.94), rgba(18, 62, 135, 0.84)),
    url("/static/img/theme/assets/solutions/scene-city.jpg") center / cover;
}

.news-archive-hero::after,
.news-detail__hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.24;
  pointer-events: none;
}

.news-archive-hero__inner,
.news-detail__hero-inner,
.news-archive-body,
.news-detail__content,
.news-detail__footer {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 96px));
  margin-inline: auto;
}

.news-archive-hero span,
.news-detail__meta strong {
  display: inline-flex;
  color: #8ebcff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.news-archive-hero h1,
.news-detail__hero h1 {
  max-width: 980px;
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(40px, 4.8vw, 72px);
  font-weight: 900;
  line-height: 1.18;
}

.news-archive-hero p,
.news-detail__hero p {
  max-width: 820px;
  margin: 22px 0 0;
  color: rgba(222, 235, 255, 0.78);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 600;
  line-height: 1.85;
}

.news-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  color: rgba(222, 235, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.news-detail-breadcrumb a {
  color: rgba(222, 235, 255, 0.78);
}

.news-detail-breadcrumb strong,
.news-detail-breadcrumb a:hover {
  color: #fff;
}

.news-archive-body {
  padding: 58px 0 110px;
}

.news-section__tabs--archive {
  margin: 0 0 34px;
}

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

.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e8f2;
  box-shadow: 0 24px 60px rgba(23, 56, 102, 0.08);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.news-card:hover {
  box-shadow: 0 30px 80px rgba(23, 56, 102, 0.14);
  transform: translateY(-4px);
}

.news-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a2559;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.045);
}

.news-card__content {
  padding: 28px;
}

.news-card__meta,
.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #7b8798;
  font-size: 13px;
  font-weight: 700;
}

.news-card__meta strong {
  color: #3174d6;
}

.news-card__meta time,
.news-detail__meta time {
  padding-left: 16px;
  border-left: 1px solid rgba(123, 135, 152, 0.28);
}

.news-card h2 {
  margin: 14px 0 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
}

.news-card h2 a {
  color: #0a2559;
}

.news-card h2 a:hover {
  color: #1554d1;
}

.news-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 78px;
  margin: 14px 0 0;
  color: #66758b;
  font-size: 15px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: #1554d1;
  font-size: 14px;
  font-weight: 900;
}

.news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.news-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  padding: 0 12px;
  color: #24518f;
  font-weight: 800;
  background: #fff;
  border: 1px solid #d7e2f1;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
  color: #fff;
  background: #1554d1;
  border-color: #1554d1;
}

.news-archive-empty {
  padding: 64px;
  text-align: center;
  background: #fff;
  border: 1px solid #e1e8f2;
}

.news-archive-empty strong {
  color: #0a2559;
  font-size: 28px;
  font-weight: 900;
}

.news-archive-empty p {
  margin: 12px 0 0;
  color: #66758b;
}

.news-detail__meta {
  margin-top: 0;
  color: rgba(222, 235, 255, 0.72);
}

.news-detail__meta time {
  border-left-color: rgba(222, 235, 255, 0.28);
}

.news-detail__cover {
  width: min(1360px, calc(100% - 96px));
  margin: -44px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: #0a2559;
  box-shadow: 0 34px 90px rgba(9, 35, 82, 0.18);
}

.news-detail__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail__content {
  max-width: 920px;
  padding: 58px 0 36px;
  color: #24334d;
  font-size: 18px;
  line-height: 2;
}

.news-detail__content h2,
.news-detail__content h3 {
  margin: 42px 0 16px;
  color: #0a2559;
  font-weight: 900;
  line-height: 1.45;
}

.news-detail__content p {
  margin: 0 0 22px;
}

.news-detail__content img {
  max-width: 100%;
  height: auto;
}

.news-detail__footer {
  max-width: 920px;
  padding: 0 0 96px;
}

.news-detail__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.news-detail__nav a,
.news-detail__back {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  color: #0a2559;
  background: #fff;
  border: 1px solid #e1e8f2;
}

.news-detail__nav span {
  color: #7b8798;
  font-size: 13px;
  font-weight: 800;
}

.news-detail__nav strong {
  font-size: 17px;
  line-height: 1.55;
}

.news-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #1554d1;
  font-weight: 900;
}

.solution-archive-page {
  color: #14233c;
  background: #f6f8fc;
}

.solution-archive-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 82px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(8, 29, 75, 0.94), rgba(18, 62, 135, 0.84)),
    url("/static/img/theme/assets/solutions/scene-traffic.jpg") center / cover;
}

.solution-archive-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 86px 86px;
  opacity: 0.24;
  pointer-events: none;
}

.solution-archive-hero__inner,
.solution-archive-body {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 96px));
  margin-inline: auto;
}

.solution-archive-hero span {
  display: inline-flex;
  color: #8ebcff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
}

.solution-archive-hero h1 {
  max-width: 980px;
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(40px, 4.8vw, 72px);
  font-weight: 900;
  line-height: 1.18;
}

.solution-archive-hero p {
  max-width: 820px;
  margin: 22px 0 0;
  color: rgba(222, 235, 255, 0.78);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 600;
  line-height: 1.85;
}

.solution-archive-body {
  padding: 58px 0 110px;
}

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

.solution-card {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e8f2;
  box-shadow: 0 24px 60px rgba(23, 56, 102, 0.08);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}

.solution-card:hover {
  box-shadow: 0 30px 80px rgba(23, 56, 102, 0.14);
  transform: translateY(-4px);
}

.solution-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a2559;
}

.solution-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.solution-card:hover .solution-card__media img {
  transform: scale(1.045);
}

.solution-card__content {
  display: grid;
  align-content: start;
  padding: 30px;
}

.solution-card__content > span {
  color: #3174d6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.solution-card h2 {
  margin: 14px 0 0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.45;
}

.solution-card h2 a {
  color: #0a2559;
}

.solution-card h2 a:hover {
  color: #1554d1;
}

.solution-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 84px;
  margin: 14px 0 0;
  color: #66758b;
  font-size: 15px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.solution-card__more {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: #1554d1;
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .news-section__inner {
    width: min(100% - 48px, 1640px);
  }

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

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

  .news-list__link {
    grid-template-columns: 36px minmax(0, 1fr) 26px;
    gap: 14px;
    padding: 26px 24px;
  }
}

@media (max-width: 860px) {
  .news-section {
    padding: 72px 0 84px;
  }

  .news-section__head {
    align-items: flex-start;
  }

  .news-layout {
    display: block;
    min-height: 0;
  }

  .news-feature__link {
    min-height: 560px;
  }

  .news-list {
    border-top: 1px solid #e3e9f2;
    border-left: 0;
  }

  .news-archive-grid,
  .solution-archive-grid,
  .news-detail__nav {
    grid-template-columns: 1fr;
  }

  .news-archive-hero__inner,
  .solution-archive-hero__inner,
  .news-detail__hero-inner,
  .news-archive-body,
  .solution-archive-body,
  .news-detail__cover,
  .news-detail__content,
  .news-detail__footer {
    width: min(100% - 48px, 1360px);
  }

  .news-list__item {
    min-height: 190px;
  }
}

@media (max-width: 560px) {
  .news-section__inner {
    width: min(100% - 28px, 1640px);
  }

  .news-section__head {
    display: block;
    margin-bottom: 34px;
  }

  .news-section__title {
    font-size: 32px;
  }

  .news-section__subtitle {
    font-size: 15px;
  }

  .news-section__more {
    width: 100%;
    margin-top: 24px;
  }

  .news-feature__link {
    min-height: 500px;
  }

  .news-feature__content {
    right: 24px;
    bottom: 30px;
    left: 24px;
  }

  .news-feature__title {
    font-size: 26px;
  }

  .news-feature__excerpt {
    font-size: 14px;
  }

  .news-list__link {
    grid-template-columns: minmax(0, 1fr) 26px;
    padding: 26px 22px;
  }

  .news-list__number {
    display: none;
  }

  .news-list__title {
    font-size: 19px;
  }

  .news-section__tabs a {
    flex: 1 1 auto;
  }

  .news-archive-hero,
  .solution-archive-hero,
  .news-detail__hero {
    padding: 112px 0 64px;
  }

  .news-archive-hero__inner,
  .solution-archive-hero__inner,
  .news-detail__hero-inner,
  .news-archive-body,
  .solution-archive-body,
  .news-detail__cover,
  .news-detail__content,
  .news-detail__footer {
    width: min(100% - 28px, 1360px);
  }

  .news-archive-hero h1,
  .solution-archive-hero h1,
  .news-detail__hero h1 {
    font-size: 34px;
  }

  .news-detail__cover {
    aspect-ratio: 4 / 3;
  }

  .news-card__content,
  .solution-card__content,
  .news-detail__nav a,
  .news-detail__back {
    padding: 22px;
  }

  .news-detail__content {
    font-size: 16px;
    line-height: 1.9;
  }
}

/* Editorial archive and navigation refresh */
.site-nav__menu {
  gap: clamp(18px, 2vw, 34px);
}

.site-nav__link {
  min-height: 42px;
  padding: 0 2px;
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 760;
  letter-spacing: 0;
}

.site-nav__link::after {
  bottom: -18px;
  width: 24px;
  height: 2px;
  background: #8ebcff;
}

.site-nav__chevron {
  color: #9bb8e7;
  font-size: 12px;
}

.site-nav__dropdown {
  top: calc(100% + 18px);
  width: min(430px, calc(100vw - 32px));
  padding: 10px;
  color: #e8f1ff;
  background:
    linear-gradient(180deg, rgba(18, 37, 76, 0.97), rgba(9, 22, 49, 0.97));
  border: 1px solid rgba(150, 181, 226, 0.2);
  border-radius: 0;
  box-shadow: 0 28px 70px rgba(0, 10, 32, 0.34);
  backdrop-filter: blur(18px);
}

.site-nav__dropdown-head,
.site-nav__dropdown-link {
  position: relative;
  /*grid-template-columns: 48px minmax(0, 1fr);*/
  align-items: start;
  column-gap: 14px;
  padding: 15px 14px;
  color: #e8f1ff;
  background: transparent;
  border-bottom: 1px solid rgba(183, 205, 238, 0.11);
}

.site-nav__dropdown-head {
  background: rgba(255, 255, 255, 0.05);
}

.site-nav__dropdown-head span,
.site-nav__dropdown-link span {
  grid-row: span 2;
  color: #7fb4ff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.6px;
}

.site-nav__dropdown-head strong,
.site-nav__dropdown-link strong {
  color: #fff;
  font-size: 15px;
  font-weight: 820;
  letter-spacing: 0;
}

.site-nav__dropdown-link small {
  color: rgba(221, 232, 248, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.site-nav__dropdown-head:hover,
.site-nav__dropdown-link:hover {
  background: rgba(88, 142, 222, 0.14);
  transform: translateX(0);
}

.news-archive-page,
.news-detail-page,
.solution-archive-page {
  background:
    linear-gradient(180deg, #f6f8fb 0, #eef3f8 100%);
}

.news-archive-hero,
.news-detail__hero,
.solution-archive-hero {
  min-height: 520px;
  padding: 150px 0 96px;
  background:
    linear-gradient(90deg, rgba(6, 20, 49, 0.94) 0%, rgba(10, 31, 68, 0.82) 42%, rgba(10, 31, 68, 0.24) 100%),
    var(--archive-hero-image, url("/static/img/theme/assets/solutions/scene-city.jpg")) center / cover;
}

.solution-archive-hero {
  --archive-hero-image: url("/static/img/theme/assets/solutions/scene-traffic.jpg");
}

.news-archive-hero::after,
.news-detail__hero::after,
.solution-archive-hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  opacity: 0.34;
}

.news-archive-hero__inner,
.solution-archive-hero__inner,
.news-detail__hero-inner {
  width: min(1280px, calc(100% - 96px));
}

.news-detail-breadcrumb {
  width: max-content;
  max-width: 100%;
  margin-bottom: 56px;
  padding: 8px 12px;
  color: rgba(229, 238, 252, 0.68);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.news-archive-hero span,
.solution-archive-hero span,
.news-detail__meta strong {
  color: #8dbdff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 3.4px;
}

.news-archive-hero h1,
.solution-archive-hero h1,
.news-detail__hero h1 {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(46px, 5.2vw, 86px);
  font-weight: 820;
  line-height: 1.04;
  letter-spacing: 0;
}

.news-archive-hero p,
.solution-archive-hero p,
.news-detail__hero p {
  max-width: 690px;
  color: rgba(229, 238, 252, 0.76);
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 520;
  line-height: 1.86;
}

.news-archive-body,
.solution-archive-body {
  width: min(1280px, calc(100% - 96px));
  padding: 72px 0 120px;
}

.news-section__tabs--archive {
  gap: 10px;
  margin-bottom: 40px;
}

.news-section__tabs a {
  min-height: 40px;
  padding: 0 18px;
  color: #273d63;
  font-size: 13px;
  font-weight: 780;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d9e2ef;
}

.news-section__tabs a:hover,
.news-section__tabs a.is-active {
  color: #fff;
  background: #0c2f6f;
  border-color: #0c2f6f;
}

.news-archive-grid,
.solution-archive-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.news-card,
.solution-card {
  grid-column: span 4;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(192, 205, 224, 0.76);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.news-card:hover,
.solution-card:hover {
  border-color: rgba(90, 128, 188, 0.5);
  box-shadow: 0 24px 56px rgba(18, 46, 87, 0.12);
  transform: translateY(-3px);
}

.news-card__media,
.solution-card__media {
  aspect-ratio: 16 / 10;
}

.news-card__media img,
.solution-card__media img {
  filter: saturate(0.92) contrast(1.04);
}

.news-card__content,
.solution-card__content {
  padding: 28px;
}

.news-card__meta,
.news-detail__meta {
  color: #748198;
  font-size: 12px;
  font-weight: 720;
}

.news-card__meta strong,
.solution-card__content > span {
  color: #1c5aa6;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 2.1px;
}

.news-card h2,
.solution-card h2 {
  margin-top: 15px;
  font-size: clamp(22px, 1.55vw, 28px);
  font-weight: 790;
  line-height: 1.28;
  letter-spacing: 0;
}

.news-card h2 a,
.solution-card h2 a {
  color: #10243f;
}

.news-card p,
.solution-card p {
  min-height: 86px;
  color: #5f6f86;
  font-size: 14px;
  line-height: 1.78;
}

.news-card__more,
.solution-card__more,
.news-detail__back {
  min-height: 38px;
  align-items: center;
  padding-bottom: 2px;
  color: #0c4ca3;
  font-size: 13px;
  font-weight: 850;
  border-bottom: 1px solid rgba(12, 76, 163, 0.28);
}

.news-detail__cover {
  width: min(1180px, calc(100% - 96px));
  margin-top: -66px;
  aspect-ratio: 16 / 8;
  box-shadow: 0 28px 80px rgba(7, 26, 57, 0.2);
}

.news-detail__content,
.news-detail__footer {
  max-width: 860px;
}

.news-detail__content {
  color: #293b55;
  font-size: 17px;
  line-height: 1.95;
}

.news-detail__content h2,
.news-detail__content h3 {
  color: #10243f;
  font-weight: 820;
  letter-spacing: 0;
}

.news-detail__nav a,
.news-detail__back {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(192, 205, 224, 0.76);
}

@media (max-width: 1180px) {
  .news-card,
  .solution-card {
    grid-column: span 6;
  }
}

@media (max-width: 980px) {
  .site-nav__dropdown {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: none;
  }

  .site-nav__dropdown-head,
  .site-nav__dropdown-link {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .news-card,
  .solution-card {
    grid-column: 1 / -1;
  }

  .news-archive-hero,
  .news-detail__hero,
  .solution-archive-hero {
    min-height: 440px;
    padding: 118px 0 70px;
  }

  .news-archive-hero__inner,
  .solution-archive-hero__inner,
  .news-detail__hero-inner,
  .news-archive-body,
  .solution-archive-body,
  .news-detail__cover,
  .news-detail__content,
  .news-detail__footer {
    width: min(100% - 28px, 1280px);
  }

  .news-archive-hero h1,
  .solution-archive-hero h1,
  .news-detail__hero h1 {
    font-size: 38px;
  }
}

/* News detail article layout */
.news-detail-page {
  color: #172033;
  background: #f4f7fb;
}

.news-detail__hero--article {
  min-height: auto;
  padding: 138px 0 78px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 250, 255, 0.98) 0%, rgba(247, 250, 255, 0.92) 48%, rgba(247, 250, 255, 0.64) 100%),
    url("/static/img/theme/assets/solutions/scene-city.jpg") center / cover;
  border-bottom: 1px solid #e4ebf4;
}

.news-detail__hero--article::after {
  inset: 0;
  background:
    linear-gradient(rgba(32, 72, 133, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 72, 133, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: none;
  opacity: 1;
}

.news-detail__hero--article .news-detail__hero-inner,
.news-detail-shell {
  position: relative;
  width: min(1180px, calc(100% - 72px));
  margin-inline: auto;
}

.news-detail__hero--article .news-detail-breadcrumb {
  display: inline-flex;
  width: auto;
  margin-bottom: 32px;
  color: #6c7789;
  background: rgba(255, 255, 255, 0.72);
  border-color: #dbe4ef;
}

.news-detail__hero--article .news-detail-breadcrumb a {
  color: #6c7789;
}

.news-detail__hero--article .news-detail-breadcrumb a:hover,
.news-detail__hero--article .news-detail-breadcrumb strong {
  color: #2f66df;
}

.news-detail__hero--article .news-detail__meta {
  gap: 14px;
  color: #697589;
}

.news-detail__hero--article .news-detail__meta strong {
  color: #2f66df;
  font-size: 12px;
  letter-spacing: 0.22em;
}

.news-detail__hero--article .news-detail__meta span,
.news-detail__hero--article .news-detail__meta time {
  color: #697589;
}

.news-detail__hero--article h1 {
  max-width: 900px;
  margin: 18px 0 0;
  color: #0b1220;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0;
}

.news-detail__hero--article p {
  max-width: 760px;
  margin-top: 22px;
  color: #4f5e71;
  font-size: 17px;
  line-height: 1.9;
}

.news-detail-shell {
  padding: 56px 0 110px;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) 320px;
  gap: 40px;
  align-items: start;
}

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

.news-detail__cover {
  width: 100%;
  margin: 0 0 28px;
  overflow: hidden;
  aspect-ratio: 16 / 8.6;
  background: #10243f;
  border: 1px solid #dfe7f0;
  box-shadow: 0 18px 50px rgba(12, 36, 76, 0.09);
}

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

.news-detail__content,
.news-detail__footer {
  max-width: none;
}

.news-detail__content {
  padding: 42px 48px 48px;
  color: #26364d;
  font-size: 17px;
  line-height: 2;
  background: #fff;
  border: 1px solid #dfe7f0;
  box-shadow: 0 18px 50px rgba(12, 36, 76, 0.06);
}

.news-detail__content > *:first-child {
  margin-top: 0;
}

.news-detail__content h2,
.news-detail__content h3 {
  margin-top: 34px;
  color: #0b1220;
  font-weight: 900;
  letter-spacing: 0;
}

.news-detail__content h2 {
  font-size: 26px;
}

.news-detail__content h3 {
  font-size: 22px;
}

.news-detail__content p {
  margin: 18px 0;
}

.news-detail__content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 28px auto;
}

.news-detail__footer {
  margin-top: 28px;
}

.news-detail__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-detail__nav a,
.news-detail__back {
  min-height: 74px;
  padding: 18px 20px;
  color: #172033;
  background: #fff;
  border: 1px solid #dfe7f0;
  box-shadow: 0 14px 34px rgba(12, 36, 76, 0.05);
}

.news-detail__nav a:hover,
.news-detail__back:hover {
  color: #2f66df;
  border-color: rgba(47, 102, 223, 0.42);
}

.news-detail__nav span {
  display: block;
  color: #7b8798;
  font-size: 12px;
  font-weight: 800;
}

.news-detail__nav strong {
  display: block;
  overflow: hidden;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-detail__back {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: #2f66df;
  font-size: 14px;
}

.news-detail-sidebar {
  position: sticky;
  top: calc(var(--header-height, 86px) + 24px);
  display: grid;
  gap: 18px;
}

.news-detail-sidebar__panel,
.news-detail-sidebar__cta {
  background: #fff;
  border: 1px solid #dfe7f0;
  box-shadow: 0 18px 50px rgba(12, 36, 76, 0.06);
}

.news-detail-sidebar__panel {
  padding: 26px;
}

.news-detail-sidebar__panel h2,
.news-detail-sidebar__cta h2 {
  margin: 0;
  color: #0b1220;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
}

.news-detail-sidebar__cats {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.news-detail-sidebar__cats a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  color: #435065;
  font-size: 14px;
  font-weight: 850;
  background: #f5f8fc;
  border: 1px solid #e1e8f1;
}

.news-detail-sidebar__cats a::after {
  content: "→";
  color: #2f66df;
}

.news-detail-sidebar__cats a:hover,
.news-detail-sidebar__cats a.is-active {
  color: #fff;
  background: #2f66df;
  border-color: #2f66df;
}

.news-detail-sidebar__cats a:hover::after,
.news-detail-sidebar__cats a.is-active::after {
  color: #fff;
}

.news-detail-sidebar__list {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.news-detail-sidebar__list li + li {
  border-top: 1px solid #e6edf5;
}

.news-detail-sidebar__list a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
}

.news-detail-sidebar__list span {
  color: rgba(47, 102, 223, 0.38);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.news-detail-sidebar__list strong {
  display: -webkit-box;
  overflow: hidden;
  color: #172033;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-detail-sidebar__list time {
  display: block;
  grid-column: 2;
  margin-top: -4px;
  color: #8792a3;
  font-size: 12px;
}

.news-detail-sidebar__list a:hover strong {
  color: #2f66df;
}

.news-detail-sidebar__cta {
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 28, 68, 0.96), rgba(13, 60, 154, 0.9)),
    url("/static/img/theme/assets/solutions/scene-traffic.jpg") center / cover;
}

.news-detail-sidebar__cta span {
  color: #8dbdff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.news-detail-sidebar__cta h2 {
  margin-top: 14px;
  color: #fff;
}

.news-detail-sidebar__cta p {
  margin: 14px 0 0;
  color: rgba(239, 246, 255, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.news-detail-sidebar__cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: #2f66df;
}

@media (max-width: 1080px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

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

  .news-detail-sidebar__cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .news-detail__hero--article {
    padding: 116px 0 58px;
  }

  .news-detail__hero--article .news-detail__hero-inner,
  .news-detail-shell {
    width: min(100% - 28px, 1180px);
  }

  .news-detail__hero--article h1 {
    font-size: 34px;
  }

  .news-detail__content {
    padding: 30px 22px;
    font-size: 16px;
  }

  .news-detail__nav,
  .news-detail-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Contact footer */
.contact-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 35%, rgba(54, 131, 237, 0.3), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(38, 105, 213, 0.2), transparent 25%),
    linear-gradient(135deg, #061842 0%, #0a3271 52%, #05143a 100%);
}

.contact-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(110, 174, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 174, 255, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
  pointer-events: none;
}

.contact-footer__glow {
  position: absolute;
  top: 16%;
  left: 38%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(64, 145, 255, 0.2), transparent 68%);
  pointer-events: none;
}

.contact-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1640px, calc(100% - 96px));
  grid-template-columns: minmax(340px, 0.85fr) minmax(540px, 1.15fr);
  gap: clamp(70px, 8vw, 150px);
  margin-inline: auto;
  padding: 108px 0 98px;
}

.contact-footer__intro {
  align-self: center;
}

.contact-footer__eyebrow {
  display: block;
  color: #74b4ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
}

.contact-footer__intro h2 {
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(38px, 3.5vw, 62px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
}

.contact-footer__intro > p {
  max-width: 610px;
  margin: 25px 0 0;
  color: rgba(216, 234, 255, 0.68);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.contact-footer__contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 42px 0 0;
  padding: 1px;
  list-style: none;
  background: rgba(145, 195, 255, 0.16);
}

.contact-footer__contacts li {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  background: rgba(5, 25, 65, 0.72);
}

.contact-footer__contacts span {
  color: rgba(181, 215, 255, 0.48);
  font-size: 12px;
  font-weight: 700;
}

.contact-footer__contacts strong {
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-footer__form-wrap {
  padding: 42px 46px 44px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(149, 199, 255, 0.22);
  box-shadow: 0 34px 80px rgba(0, 13, 47, 0.24);
  backdrop-filter: blur(18px);
}

.contact-footer__form-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(151, 199, 255, 0.18);
}

.contact-footer__form-head > span {
  color: rgba(115, 179, 255, 0.62);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}

.contact-footer__form-head div {
  display: grid;
  gap: 5px;
  padding-left: 20px;
  border-left: 1px solid rgba(151, 199, 255, 0.22);
}

.contact-footer__form-head strong {
  font-size: 21px;
  font-weight: 900;
}

.contact-footer__form-head small {
  color: rgba(205, 227, 255, 0.54);
  font-size: 12px;
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 26px;
  margin-top: 30px;
}

.contact-form__field {
  display: grid;
  gap: 10px;
}

.contact-form__field--wide,
.contact-form__submit-row {
  grid-column: 1 / -1;
}

.contact-form__field > span {
  color: rgba(221, 237, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: #fff;
  font: inherit;
  font-size: 14px;
  background: rgba(3, 20, 55, 0.38);
  border: 1px solid rgba(145, 194, 255, 0.22);
  border-radius: 0;
  outline: none;
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 92px;
  padding: 14px 15px;
  line-height: 1.7;
  resize: vertical;
}

.contact-form select option {
  color: #0b265e;
  background: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(203, 225, 251, 0.36);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(8, 36, 84, 0.62);
  border-color: rgba(103, 170, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(62, 142, 242, 0.11);
}

.contact-form__submit-row {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 2px;
}

.contact-form__status {
  margin: 0;
  color: #8dc2ff;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.contact-form.is-submitted .contact-form__status {
  opacity: 1;
  transform: translateY(0);
}

.contact-form__submit {
  display: inline-flex;
  min-width: 190px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  background: linear-gradient(135deg, #2d80f7, #1554d1);
  border: 0;
  box-shadow: 0 18px 42px rgba(0, 24, 82, 0.3);
  transition:
    box-shadow var(--transition),
    opacity var(--transition),
    transform var(--transition);
}

.contact-form__submit:hover:not(:disabled) {
  box-shadow: 0 24px 50px rgba(37, 119, 240, 0.38);
  transform: translateY(-3px);
}

.contact-form__submit:disabled {
  opacity: 0.55;
  cursor: default;
}

.contact-footer__bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(146, 196, 255, 0.16);
  background: rgba(2, 13, 38, 0.34);
}

.contact-footer__bottom-inner {
  display: grid;
  width: min(1640px, calc(100% - 96px));
  min-height: 108px;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 44px;
  margin-inline: auto;
}

.contact-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.contact-footer__brand .brand__mark {
  width: 56px;
  height: 36px;
}

.contact-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.contact-footer__nav a {
  color: rgba(210, 230, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
  transition: color var(--transition);
}

.contact-footer__nav a:hover {
  color: #fff;
}

.contact-footer__bottom-inner > p {
  margin: 0;
  color: rgba(191, 216, 247, 0.42);
  font-size: 12px;
  white-space: nowrap;
}

.contact-footer__top {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(146, 196, 255, 0.28);
  transition:
    background var(--transition),
    transform var(--transition);
}

.contact-footer__top:hover {
  background: rgba(58, 138, 242, 0.34);
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .contact-footer__inner {
    width: min(100% - 48px, 1640px);
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 82px 0;
  }

  .contact-footer__intro {
    max-width: 760px;
  }

  .contact-footer__bottom-inner {
    width: min(100% - 48px, 1640px);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 30px;
  }

  .contact-footer__bottom-inner > p {
    grid-column: 1 / -1;
    padding-bottom: 22px;
  }
}

@media (max-width: 700px) {
  .contact-footer__inner {
    width: min(100% - 28px, 1640px);
    padding: 68px 0;
  }

  .contact-footer__intro h2 {
    font-size: 36px;
  }

  .contact-footer__contacts {
    grid-template-columns: 1fr;
  }

  .contact-footer__form-wrap {
    padding: 30px 22px 28px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form__field--wide,
  .contact-form__submit-row {
    grid-column: auto;
  }

  .contact-form__submit-row {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .contact-form__submit {
    width: 100%;
  }

  .contact-form__status {
    min-height: 20px;
  }

  .contact-footer__bottom-inner {
    width: min(100% - 28px, 1640px);
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 22px;
    padding: 28px 0 0;
  }

  .contact-footer__nav {
    grid-column: 1 / -1;
    gap: 18px 24px;
  }

  .contact-footer__bottom-inner > p {
    font-size: 11px;
    white-space: normal;
  }

  .contact-footer__top {
    grid-column: 2;
    grid-row: 1;
  }
}

/* Unified inner page navigation */
body:not(.home):not(.front-page) {
  --header-height: 76px;
}

body:not(.home):not(.front-page) .site-header {
  height: var(--header-height);
  color: #16233a;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(223, 230, 239, 0.86);
  box-shadow: 0 18px 48px rgba(10, 47, 94, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body:not(.home):not(.front-page) .site-header__inner {
  width: min(1200px, calc(100% - 48px));
  gap: 32px;
}

body:not(.home):not(.front-page) .brand,
body:not(.home):not(.front-page) .brand__name {
  color: #16233a;
  text-shadow: none;
}

body:not(.home):not(.front-page) .brand__mark {
  width: 74px;
  height: 46px;
  filter: none;
}

body:not(.home):not(.front-page) .brand__name {
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
}

body:not(.home):not(.front-page) .site-nav__menu {
  gap: clamp(20px, 2.2vw, 34px);
}

body:not(.home):not(.front-page) .site-nav__link {
  min-height: 42px;
  color: #16233a;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
}

body:not(.home):not(.front-page) .site-nav__link:hover,
body:not(.home):not(.front-page) .site-nav__link.is-active,
body:not(.home):not(.front-page) .site-nav__item:hover > .site-nav__link,
body:not(.home):not(.front-page) .site-nav__item:focus-within > .site-nav__link {
  color: #0e5ecd;
}

body:not(.home):not(.front-page) .site-nav__link::after {
  bottom: -12px;
  width: 20px;
  height: 2px;
  background: #0e5ecd;
}

body:not(.home):not(.front-page) .site-nav__chevron {
  color: #0e5ecd;
}

body:not(.home):not(.front-page) .site-nav__contact {
  min-width: 116px;
  min-height: 42px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
  background: #0e5ecd;
  border: 1px solid #0e5ecd;
  border-radius: 2px;
  box-shadow: 0 12px 28px rgba(14, 94, 205, 0.22);
}

body:not(.home):not(.front-page) .site-nav__contact:hover {
  color: #fff;
  background: #1c71e6;
  border-color: #1c71e6;
}

body:not(.home):not(.front-page) .site-nav__dropdown {
  top: calc(100% + 14px);
  color: #16233a;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #dfe6ef;
  box-shadow: 0 28px 70px rgba(10, 47, 94, 0.16);
}

body:not(.home):not(.front-page) .site-nav__dropdown-head,
body:not(.home):not(.front-page) .site-nav__dropdown-link {
  color: #16233a;
  background: transparent;
  border-bottom-color: #dfe6ef;
}

body:not(.home):not(.front-page) .site-nav__dropdown-head {
  background: #f3f6fb;
}

body:not(.home):not(.front-page) .site-nav__dropdown-head span,
body:not(.home):not(.front-page) .site-nav__dropdown-link span {
  color: #0e5ecd;
}

body:not(.home):not(.front-page) .site-nav__dropdown-head strong,
body:not(.home):not(.front-page) .site-nav__dropdown-link strong {
  color: #16233a;
}

body:not(.home):not(.front-page) .site-nav__dropdown-link small {
  color: #566a82;
}

body:not(.home):not(.front-page) .site-nav__dropdown-head:hover,
body:not(.home):not(.front-page) .site-nav__dropdown-link:hover {
  background: #e8f0fc;
}

@media (max-width: 1180px) {
  body:not(.home):not(.front-page) .site-header__inner {
    width: min(100% - 40px, 1200px);
  }
}

@media (max-width: 980px) {
  body:not(.home):not(.front-page) {
    --header-height: 72px;
  }

  body:not(.home):not(.front-page) .site-header {
    height: 72px;
  }

  body:not(.home):not(.front-page) .site-nav__toggle {
    background: #0e5ecd;
    border-color: #0e5ecd;
  }

  body:not(.home):not(.front-page) .site-nav__toggle span {
    background: #fff;
  }

  body:not(.home):not(.front-page) .site-nav__menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(223, 230, 239, 0.92);
    box-shadow: 0 24px 60px rgba(10, 47, 94, 0.14);
  }

  body:not(.home):not(.front-page) .site-nav__dropdown {
    background: #f3f6fb;
    border-color: #dfe6ef;
  }

  body:not(.home):not(.front-page) .site-nav__dropdown-head,
  body:not(.home):not(.front-page) .site-nav__dropdown-link {
    color: #16233a;
    border-bottom-color: #dfe6ef;
  }

  body:not(.home):not(.front-page) .site-nav__dropdown-head strong,
  body:not(.home):not(.front-page) .site-nav__dropdown-link strong {
    color: #16233a;
  }

  body:not(.home):not(.front-page) .site-nav__dropdown-link small {
    color: #566a82;
  }

  body:not(.home):not(.front-page) .site-nav__contact {
    color: #fff;
    background: #0e5ecd;
  }
}

@media (max-width: 640px) {
  body:not(.home):not(.front-page) .site-header__inner {
    width: min(100% - 28px, 1200px);
  }
}

/* Home template refresh: aligned with document/homepage reference */
body.home,
body.front-page {
  --home-surface: #f3f6fb;
  --home-blue-tint: #e8f0fc;
  --home-line: #dfe6ef;
  --home-line-strong: #b9c7da;
  --home-blue-900: #0a2f5e;
  --home-blue-800: #0c3f85;
  --home-blue-700: #0e5ecd;
  --home-blue-600: #1c71e6;
  --home-green: #46b53c;
  --home-text: #16233a;
  --home-muted: #566a82;
  --home-white: #ffffff;
  --home-shadow: 0 24px 70px rgba(10, 47, 94, 0.12);
  color: var(--home-text);
  background: var(--home-white);
}

body.home .site-header,
body.front-page .site-header {
  height: 76px;
  color: var(--home-text);
  background:
    linear-gradient(180deg, rgba(243, 246, 251, 0.18) 0%, rgba(243, 246, 251, 0.06) 100%),
    linear-gradient(90deg, rgba(243, 246, 251, 0.1) 0%, rgba(243, 246, 251, 0.02) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

body.home .site-header.is-scrolled,
body.home .site-header.is-open,
body.home .site-header.is-mega-open,
body.front-page .site-header.is-scrolled,
body.front-page .site-header.is-open,
body.front-page .site-header.is-mega-open {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(223, 230, 239, 0.86);
  box-shadow: 0 18px 48px rgba(10, 47, 94, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

body.home .site-header__inner,
body.front-page .site-header__inner {
  width: min(1200px, calc(100% - 48px));
  gap: 32px;
}

body.home .brand,
body.front-page .brand,
body.home .brand__name,
body.front-page .brand__name {
  color: var(--home-text);
  text-shadow: none;
}

body.home .brand__mark,
body.front-page .brand__mark {
  width: 74px;
  height: 46px;
  filter: none;
}

body.home .brand__name,
body.front-page .brand__name {
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
}

body.home .site-nav__menu,
body.front-page .site-nav__menu {
  gap: clamp(20px, 2.2vw, 34px);
}

body.home .site-nav__link,
body.front-page .site-nav__link {
  min-height: 42px;
  color: var(--home-text);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
}

body.home .site-nav__link:hover,
body.home .site-nav__link.is-active,
body.home .site-nav__item:hover > .site-nav__link,
body.home .site-nav__item:focus-within > .site-nav__link,
body.front-page .site-nav__link:hover,
body.front-page .site-nav__link.is-active,
body.front-page .site-nav__item:hover > .site-nav__link,
body.front-page .site-nav__item:focus-within > .site-nav__link {
  color: var(--home-blue-700);
}

body.home .site-nav__link::after,
body.front-page .site-nav__link::after {
  bottom: -12px;
  width: 20px;
  height: 2px;
  background: var(--home-blue-700);
}

body.home .site-nav__chevron,
body.front-page .site-nav__chevron {
  color: var(--home-blue-700);
}

body.home .site-nav__contact,
body.front-page .site-nav__contact {
  min-width: 116px;
  min-height: 42px;
  color: var(--home-white);
  font-size: 14px;
  letter-spacing: 0;
  background: var(--home-blue-700);
  border: 1px solid var(--home-blue-700);
  border-radius: 2px;
  box-shadow: 0 12px 28px rgba(14, 94, 205, 0.22);
}

body.home .site-nav__contact:hover,
body.front-page .site-nav__contact:hover {
  color: var(--home-white);
  background: var(--home-blue-600);
  border-color: var(--home-blue-600);
}

body.home .site-nav__dropdown,
body.front-page .site-nav__dropdown {
  top: calc(100% + 14px);
  color: var(--home-text);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--home-line);
  box-shadow: 0 28px 70px rgba(10, 47, 94, 0.16);
}

body.home .site-nav__dropdown-head,
body.home .site-nav__dropdown-link,
body.front-page .site-nav__dropdown-head,
body.front-page .site-nav__dropdown-link {
  color: var(--home-text);
  background: transparent;
  border-bottom-color: var(--home-line);
}

body.home .site-nav__dropdown-head,
body.front-page .site-nav__dropdown-head {
  background: var(--home-surface);
}

body.home .site-nav__dropdown-head span,
body.home .site-nav__dropdown-link span,
body.front-page .site-nav__dropdown-head span,
body.front-page .site-nav__dropdown-link span {
  color: var(--home-blue-700);
}

body.home .site-nav__dropdown-head strong,
body.home .site-nav__dropdown-link strong,
body.front-page .site-nav__dropdown-head strong,
body.front-page .site-nav__dropdown-link strong {
  color: var(--home-text);
}

body.home .site-nav__dropdown-link small,
body.front-page .site-nav__dropdown-link small {
  color: var(--home-muted);
}

body.home .site-nav__dropdown-head:hover,
body.home .site-nav__dropdown-link:hover,
body.front-page .site-nav__dropdown-head:hover,
body.front-page .site-nav__dropdown-link:hover {
  background: var(--home-blue-tint);
}

body.home .hero,
body.front-page .hero {
  min-height: max(720px, 100vh);
  min-height: max(720px, 100svh);
  background: var(--home-surface);
}

body.home .hero__video,
body.front-page .hero__video {
  filter: saturate(1.08) contrast(1.08) brightness(0.96);
}

body.home .hero__overlay,
body.front-page .hero__overlay {
  background:
    linear-gradient(90deg, rgba(243, 246, 251, 0.74) 0%, rgba(243, 246, 251, 0.54) 27%, rgba(243, 246, 251, 0.2) 52%, rgba(243, 246, 251, 0.01) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.04) 46%, rgba(255, 255, 255, 0.34) 100%);
}

body.home .hero__scan,
body.front-page .hero__scan {
  inset: 0;
  height: auto;
  background:
    linear-gradient(rgba(14, 94, 205, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 94, 205, 0.055) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.24;
}

body.home .hero__scan::before,
body.home .hero__scan::after,
body.front-page .hero__scan::before,
body.front-page .hero__scan::after {
  display: none;
}

body.home .hero__content,
body.front-page .hero__content {
  width: min(1200px, calc(100% - 48px));
  min-height: 720px;
  gap: 78px;
  padding: 150px 0 72px;
}

body.home .hero__copy,
body.front-page .hero__copy {
  max-width: 680px;
  margin-top: 0;
}

body.home .hero__copy::before,
body.front-page .hero__copy::before {
  display: block;
  margin-bottom: 28px;
  color: var(--home-blue-700);
  content: "INDUSTRIAL IOT & SENSING";
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 4px;
}

body.home .hero h1,
body.front-page .hero h1 {
  max-width: 680px;
  color: var(--home-text);
  font-size: clamp(44px, 4.4vw, 76px);
  font-weight: 860;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: normal;
  text-shadow: none;
}

body.home .hero__subtitle,
body.home .hero__description,
body.front-page .hero__subtitle,
body.front-page .hero__description {
  max-width: 620px;
  color: var(--home-muted);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 520;
  line-height: 1.9;
  letter-spacing: 0;
}

body.home .hero__subtitle,
body.front-page .hero__subtitle {
  margin-top: 26px;
}

body.home .hero__description,
body.front-page .hero__description {
  margin-top: 4px;
}

body.home .hero__actions,
body.front-page .hero__actions {
  gap: 12px;
  margin-top: 34px;
}

body.home .button,
body.front-page .button {
  min-width: 150px;
  min-height: 48px;
  gap: 16px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 820;
  border-radius: 2px;
  letter-spacing: 0;
}

body.home .button--primary,
body.front-page .button--primary {
  background: var(--home-blue-700);
  box-shadow: 0 16px 36px rgba(14, 94, 205, 0.2);
}

body.home .button--primary:hover,
body.front-page .button--primary:hover {
  background: var(--home-blue-600);
}

body.home .button--ghost,
body.front-page .button--ghost {
  color: var(--home-blue-800);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--home-line-strong);
  backdrop-filter: blur(10px);
}

body.home .button--ghost:hover,
body.front-page .button--ghost:hover {
  color: var(--home-white);
  background: var(--home-blue-800);
  border-color: var(--home-blue-800);
}

body.home .hero-stats,
body.front-page .hero-stats {
  display: grid;
  width: min(620px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(14, 94, 205, 0.14);
  box-shadow: 0 18px 50px rgba(10, 47, 94, 0.1);
}

body.home .hero-stats__item,
body.front-page .hero-stats__item {
  display: grid;
  gap: 8px;
  align-items: start;
  padding: 20px 22px;
  color: var(--home-text);
  background: rgba(255, 255, 255, 0.82);
  text-shadow: none;
  backdrop-filter: blur(12px);
}

body.home .hero-stats__icon,
body.front-page .hero-stats__icon {
  display: none;
}

body.home .hero-stats strong,
body.front-page .hero-stats strong {
  color: var(--home-blue-700);
  font-size: 24px;
  font-weight: 860;
  line-height: 1.05;
}

body.home .hero-stats small,
body.front-page .hero-stats small {
  margin-top: 0;
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 620;
}

body.home .products-section,
body.front-page .products-section,
body.home .news-section,
body.front-page .news-section {
  min-height: 0;
  padding: 76px 0 108px;
  background: var(--home-white);
}

body.home .solutions-section,
body.front-page .solutions-section {
  padding: 94px 0 108px;
  background:
    linear-gradient(rgba(14, 94, 205, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 94, 205, 0.045) 1px, transparent 1px),
    var(--home-surface);
  background-size: 90px 90px;
}

body.home .products-section::before,
body.home .products-section::after,
body.home .news-section::before,
body.home .solutions-section::before,
body.front-page .products-section::before,
body.front-page .products-section::after,
body.front-page .news-section::before,
body.front-page .solutions-section::before {
  display: none;
}

body.home .products-section__inner,
body.home .solutions-section__inner,
body.home .news-section__inner,
body.front-page .products-section__inner,
body.front-page .solutions-section__inner,
body.front-page .news-section__inner {
  width: min(1200px, calc(100% - 48px));
}

body.home .section-heading,
body.front-page .section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
  text-align: left;
}

body.home .section-heading::before,
body.front-page .section-heading::before {
  grid-column: 1 / -1;
  width: max-content;
  color: var(--home-blue-700);
  content: "PRODUCTS";
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 4px;
  border-bottom: 1px solid var(--home-blue-700);
  padding-right: 58px;
}

body.home .section-heading__title,
body.front-page .section-heading__title,
body.home .solutions-section__title,
body.front-page .solutions-section__title,
body.home .news-section__title,
body.front-page .news-section__title {
  color: var(--home-text);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: 0;
}

body.home .section-heading__subtitle,
body.front-page .section-heading__subtitle,
body.home .solutions-section__subtitle,
body.front-page .solutions-section__subtitle,
body.home .news-section__subtitle,
body.front-page .news-section__subtitle {
  max-width: 620px;
  color: var(--home-muted);
  font-size: 15px;
  font-weight: 520;
  line-height: 1.85;
  letter-spacing: 0;
}

body.home .product-explorer,
body.front-page .product-explorer {
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 0;
}

body.home .product-explorer__navigation,
body.front-page .product-explorer__navigation {
  padding: 0;
  background: transparent;
  border: 0;
}

body.home .product-explorer__nav-label,
body.front-page .product-explorer__nav-label {
  color: var(--home-blue-700);
  font-size: 11px;
  letter-spacing: 2.8px;
}

body.home .product-explorer__tabs,
body.front-page .product-explorer__tabs {
  gap: 8px;
  margin-top: 22px;
}

body.home .product-explorer__tab,
body.front-page .product-explorer__tab,
body.home .solution-explorer__tab,
body.front-page .solution-explorer__tab {
  color: var(--home-muted);
  background: var(--home-white);
  border: 1px solid var(--home-line);
  box-shadow: none;
}

body.home .product-explorer__tab:hover,
body.home .product-explorer__tab.is-active,
body.home .solution-explorer__tab:hover,
body.home .solution-explorer__tab.is-active,
body.front-page .product-explorer__tab:hover,
body.front-page .product-explorer__tab.is-active,
body.front-page .solution-explorer__tab:hover,
body.front-page .solution-explorer__tab.is-active {
  color: var(--home-blue-700);
  background: var(--home-blue-tint);
  border-color: rgba(14, 94, 205, 0.24);
  transform: translateY(-1px);
}

body.home .product-explorer__tab::after,
body.front-page .product-explorer__tab::after,
body.home .solution-explorer__tab::before,
body.front-page .solution-explorer__tab::before {
  background: var(--home-blue-700);
}

body.home .product-explorer__tab > span,
body.home .product-explorer__tab.is-active > span,
body.front-page .product-explorer__tab > span,
body.front-page .product-explorer__tab.is-active > span,
body.home .solution-explorer__tab > span,
body.home .solution-explorer__tab.is-active > span,
body.front-page .solution-explorer__tab > span,
body.front-page .solution-explorer__tab.is-active > span {
  color: var(--home-blue-700);
}

body.home .product-explorer__tab > strong,
body.front-page .product-explorer__tab > strong,
body.home .solution-explorer__tab > strong,
body.front-page .solution-explorer__tab > strong {
  color: inherit;
}

body.home .product-explorer__stage,
body.front-page .product-explorer__stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr);
  gap: 1px;
  overflow: hidden;
  background: var(--home-line);
  border: 1px solid var(--home-line);
  box-shadow: none;
}

body.home .product-explorer__stage::before,
body.front-page .product-explorer__stage::before {
  display: none;
}

body.home .product-explorer__visual,
body.front-page .product-explorer__visual {
  min-height: 430px;
  background:
    linear-gradient(rgba(14, 94, 205, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 94, 205, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, var(--home-blue-tint) 100%);
  background-size: 72px 72px;
}

body.home .product-explorer__visual::before,
body.front-page .product-explorer__visual::before {
  border-color: rgba(14, 94, 205, 0.14);
}

body.home .product-explorer__image,
body.front-page .product-explorer__image {
  width: min(82%, 450px);
  filter: drop-shadow(0 24px 44px rgba(10, 47, 94, 0.18));
}

body.home .product-explorer__orbit,
body.home .product-explorer__scan-line,
body.home .product-explorer__signal,
body.front-page .product-explorer__orbit,
body.front-page .product-explorer__scan-line,
body.front-page .product-explorer__signal {
  display: none;
}

body.home .product-explorer__visual-label,
body.front-page .product-explorer__visual-label {
  color: rgba(86, 106, 130, 0.72);
  background: rgba(255, 255, 255, 0.64);
  border-color: var(--home-line);
}

body.home .product-explorer__content,
body.front-page .product-explorer__content,
body.home .solution-explorer__content,
body.front-page .solution-explorer__content {
  background: var(--home-white);
}

body.home .product-explorer__meta,
body.front-page .product-explorer__meta,
body.home .solution-explorer__label,
body.front-page .solution-explorer__label {
  color: var(--home-blue-700);
}

body.home .product-explorer__title,
body.front-page .product-explorer__title,
body.home .solution-explorer__title,
body.front-page .solution-explorer__title {
  color: var(--home-text);
  font-weight: 850;
  letter-spacing: 0;
}

body.home .product-explorer__description,
body.front-page .product-explorer__description,
body.home .solution-explorer__description,
body.front-page .solution-explorer__description,
body.home .product-explorer__features em,
body.front-page .product-explorer__features em {
  color: var(--home-muted);
}

body.home .product-explorer__features,
body.front-page .product-explorer__features,
body.home .solution-explorer__capabilities,
body.front-page .solution-explorer__capabilities {
  background: var(--home-line);
  gap: 1px;
  padding: 1px;
}

body.home .product-explorer__features li,
body.front-page .product-explorer__features li,
body.home .solution-explorer__capabilities li,
body.front-page .solution-explorer__capabilities li {
  background: #fafbfd;
  border: 0;
}

body.home .product-explorer__features strong,
body.front-page .product-explorer__features strong,
body.home .solution-explorer__capabilities strong,
body.front-page .solution-explorer__capabilities strong {
  color: var(--home-text);
}

body.home .product-explorer__primary,
body.front-page .product-explorer__primary,
body.home .solution-explorer__primary,
body.front-page .solution-explorer__primary,
body.home .news-section__more,
body.front-page .news-section__more {
  min-height: 46px;
  color: var(--home-white);
  background: var(--home-blue-700);
  border: 1px solid var(--home-blue-700);
  border-radius: 2px;
  box-shadow: none;
}

body.home .product-explorer__primary:hover,
body.front-page .product-explorer__primary:hover,
body.home .solution-explorer__primary:hover,
body.front-page .solution-explorer__primary:hover,
body.home .news-section__more:hover,
body.front-page .news-section__more:hover {
  background: var(--home-blue-600);
  border-color: var(--home-blue-600);
}

body.home .product-explorer__secondary,
body.front-page .product-explorer__secondary,
body.home .solution-explorer__secondary,
body.front-page .solution-explorer__secondary {
  color: var(--home-blue-700);
}

body.home .solutions-section__head,
body.home .news-section__head,
body.front-page .solutions-section__head,
body.front-page .news-section__head {
  align-items: end;
  margin-bottom: 34px;
}

body.home .solutions-section__eyebrow,
body.home .news-section__eyebrow,
body.front-page .solutions-section__eyebrow,
body.front-page .news-section__eyebrow {
  color: var(--home-blue-700);
  border-bottom: 1px solid var(--home-blue-700);
}

body.home .solutions-section__count,
body.front-page .solutions-section__count {
  color: var(--home-blue-700);
  background: var(--home-white);
  border: 1px solid var(--home-line);
}

body.home .solution-explorer,
body.front-page .solution-explorer {
  overflow: hidden;
  background: var(--home-white);
  border: 1px solid var(--home-line);
  box-shadow: none;
}

body.home .solution-explorer__media,
body.front-page .solution-explorer__media {
  background: var(--home-blue-tint);
}

body.home .solution-explorer__overlay,
body.front-page .solution-explorer__overlay {
  background: linear-gradient(180deg, rgba(10, 47, 94, 0.02), rgba(10, 47, 94, 0.28));
}

body.home .solution-explorer__grid,
body.front-page .solution-explorer__grid {
  background-size: 80px 80px;
  opacity: 0.45;
}

body.home .solution-explorer__index,
body.front-page .solution-explorer__index {
  color: var(--home-blue-700);
}

body.home .solution-explorer__navigation,
body.front-page .solution-explorer__navigation {
  background: var(--home-white);
  border-top: 1px solid var(--home-line);
}

body.home .solution-explorer__arrows button,
body.front-page .solution-explorer__arrows button {
  color: var(--home-blue-700);
  background: var(--home-white);
  border-color: var(--home-line);
}

body.home .solution-explorer__arrows button:hover,
body.front-page .solution-explorer__arrows button:hover {
  color: var(--home-white);
  background: var(--home-blue-700);
  border-color: var(--home-blue-700);
}

body.home .news-layout,
body.front-page .news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(340px, 0.9fr);
  align-items: stretch;
  gap: 40px;
  min-height: 0;
  background: transparent;
  box-shadow: none;
}

body.home .news-featured-grid,
body.front-page .news-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 28px;
  min-width: 0;
}

body.home .news-layout--without-list,
body.front-page .news-layout--without-list {
  grid-template-columns: minmax(0, 1fr);
}

body.home .news-layout--without-list .news-featured-grid,
body.front-page .news-layout--without-list .news-featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 720px));
}

body.home .news-feature,
body.front-page .news-feature {
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.home .news-feature__link,
body.front-page .news-feature__link {
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  padding: 16px;
  color: var(--home-text);
  background: var(--home-white);
}

body.home .news-feature__overlay,
body.front-page .news-feature__overlay {
  display: none;
}

body.home .news-feature__image,
body.front-page .news-feature__image {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

body.home .news-feature__content,
body.front-page .news-feature__content {
  position: static;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 0 0;
}

body.home .news-feature__meta,
body.front-page .news-feature__meta {
  color: var(--home-muted);
}

body.home .news-feature__meta time,
body.front-page .news-feature__meta time {
  border-left-color: var(--home-line);
}

body.home .news-feature__title,
body.front-page .news-feature__title {
  max-width: none;
  margin-top: 0;
  color: var(--home-text);
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.55;
}

body.home .news-feature__excerpt,
body.front-page .news-feature__excerpt {
  max-width: none;
  margin-top: 14px;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.8;
}

body.home .news-feature__footer,
body.front-page .news-feature__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--home-muted);
  font-size: 14px;
}

body.home .news-feature__action,
body.front-page .news-feature__action {
  margin-top: 0;
  color: var(--home-blue-700);
}

body.home .news-feature__meta strong,
body.front-page .news-feature__meta strong,
body.home .news-list__meta strong,
body.front-page .news-list__meta strong {
  color: var(--home-blue-700);
  background: var(--home-blue-tint);
  border: 1px solid rgba(14, 94, 205, 0.16);
}

body.home .news-list,
body.front-page .news-list {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border: 0;
}

body.home .news-list__item,
body.front-page .news-list__item {
  min-height: 132px;
  background: var(--home-white);
  border-bottom: 1px solid var(--home-line);
}

body.home .news-list__link,
body.front-page .news-list__link {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 8px;
}

body.home .news-list__title,
body.front-page .news-list__title {
  color: var(--home-text);
}

body.home .news-list__date,
body.front-page .news-list__date {
  display: grid;
  align-content: center;
  gap: 12px;
}

body.home .news-list__day,
body.front-page .news-list__day {
  color: #252525;
  font-size: 58px;
  font-weight: 300;
  line-height: 0.9;
}

body.home .news-list__date time,
body.front-page .news-list__date time {
  color: var(--home-muted);
  font-size: 14px;
}

body.home .news-list__title,
body.front-page .news-list__title {
  display: flex;
  overflow: hidden;
  align-items: baseline;
  gap: 9px;
  margin-top: 0;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.55;
  white-space: nowrap;
}

body.home .news-list__title > span:last-child,
body.front-page .news-list__title > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.home .news-list__category,
body.front-page .news-list__category {
  flex: 0 0 auto;
  color: var(--home-text);
}

body.home .news-list__separator,
body.front-page .news-list__separator {
  flex: 0 0 auto;
  color: var(--home-muted);
  font-weight: 400;
}

body.home .news-list__link:hover,
body.front-page .news-list__link:hover {
  padding-right: 8px;
  padding-left: 14px;
  background: var(--home-blue-tint);
}

body.home .contact-footer,
body.front-page .contact-footer {
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, var(--home-blue-900) 0%, var(--home-blue-800) 58%, #061f45 100%);
  background-size: 86px 86px, 86px 86px, auto;
}

body.home .contact-footer::before,
body.front-page .contact-footer::before {
  display: none;
}

body.home .contact-footer__inner,
body.home .contact-footer__bottom-inner,
body.front-page .contact-footer__inner,
body.front-page .contact-footer__bottom-inner {
  width: min(1200px, calc(100% - 48px));
}

body.home .contact-footer__eyebrow,
body.front-page .contact-footer__eyebrow {
  color: var(--home-green);
}

body.home .contact-footer__form-wrap,
body.front-page .contact-footer__form-wrap {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

body.home .contact-form__submit,
body.front-page .contact-form__submit {
  background: var(--home-green);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

body.home .contact-form__submit:hover:not(:disabled),
body.front-page .contact-form__submit:hover:not(:disabled) {
  background: #55c74a;
}

@media (max-width: 1180px) {
  body.home .site-header__inner,
  body.home .hero__content,
  body.home .products-section__inner,
  body.home .solutions-section__inner,
  body.home .news-section__inner,
  body.home .contact-footer__inner,
  body.home .contact-footer__bottom-inner,
  body.front-page .site-header__inner,
  body.front-page .hero__content,
  body.front-page .products-section__inner,
  body.front-page .solutions-section__inner,
  body.front-page .news-section__inner,
  body.front-page .contact-footer__inner,
  body.front-page .contact-footer__bottom-inner {
    width: min(100% - 40px, 1200px);
  }

  body.home .product-explorer,
  body.front-page .product-explorer,
  body.home .news-layout,
  body.front-page .news-layout {
    grid-template-columns: 1fr;
  }

  body.home .product-explorer__tabs,
  body.front-page .product-explorer__tabs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  body.home .product-explorer__tab,
  body.front-page .product-explorer__tab {
    min-width: 210px;
  }
}

@media (max-width: 980px) {
  body.home .site-header,
  body.front-page .site-header {
    height: 72px;
  }

  body.home .site-nav__toggle,
  body.front-page .site-nav__toggle {
    background: var(--home-blue-700);
    border-color: var(--home-blue-700);
  }

  body.home .site-nav__menu,
  body.front-page .site-nav__menu {
    background: rgba(255, 255, 255, 0.98);
  }

  body.home .site-nav__dropdown,
  body.front-page .site-nav__dropdown {
    background: var(--home-surface);
  }

  body.home .hero,
  body.front-page .hero {
    min-height: max(660px, 100vh);
    min-height: max(660px, 100svh);
  }

  body.home .hero__content,
  body.front-page .hero__content {
    min-height: 660px;
  }

  body.home .hero__content,
  body.front-page .hero__content {
    padding-top: 128px;
  }

  body.home .product-explorer__stage,
  body.front-page .product-explorer__stage,
  body.home .solution-explorer,
  body.front-page .solution-explorer {
    grid-template-columns: 1fr;
  }

  body.home .product-explorer__visual,
  body.front-page .product-explorer__visual {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  body.home .site-header__inner,
  body.home .hero__content,
  body.home .products-section__inner,
  body.home .solutions-section__inner,
  body.home .news-section__inner,
  body.home .contact-footer__inner,
  body.home .contact-footer__bottom-inner,
  body.front-page .site-header__inner,
  body.front-page .hero__content,
  body.front-page .products-section__inner,
  body.front-page .solutions-section__inner,
  body.front-page .news-section__inner,
  body.front-page .contact-footer__inner,
  body.front-page .contact-footer__bottom-inner {
    width: min(100% - 28px, 1200px);
  }

  body.home .hero,
  body.front-page .hero {
    min-height: max(620px, 100vh);
    min-height: max(620px, 100svh);
  }

  body.home .hero__content,
  body.front-page .hero__content {
    min-height: 620px;
  }

  body.home .hero h1,
  body.front-page .hero h1 {
    font-size: 38px;
  }

  body.home .hero__actions,
  body.front-page .hero__actions,
  body.home .product-explorer__actions,
  body.front-page .product-explorer__actions,
  body.home .solution-explorer__actions,
  body.front-page .solution-explorer__actions {
    align-items: stretch;
    flex-direction: column;
  }

  body.home .button,
  body.front-page .button,
  body.home .product-explorer__primary,
  body.front-page .product-explorer__primary,
  body.home .product-explorer__secondary,
  body.front-page .product-explorer__secondary,
  body.home .solution-explorer__primary,
  body.front-page .solution-explorer__primary,
  body.home .solution-explorer__secondary,
  body.front-page .solution-explorer__secondary {
    width: 100%;
  }

  body.home .hero-stats,
  body.front-page .hero-stats {
    grid-template-columns: 1fr;
  }

  body.home .products-section,
  body.front-page .products-section,
  body.home .solutions-section,
  body.front-page .solutions-section,
  body.home .news-section,
  body.front-page .news-section {
    padding: 70px 0 78px;
  }

  body.home .section-heading,
  body.front-page .section-heading,
  body.home .solutions-section__head,
  body.front-page .solutions-section__head,
  body.home .news-section__head,
  body.front-page .news-section__head {
    display: block;
  }

  body.home .section-heading__subtitle,
  body.front-page .section-heading__subtitle,
  body.home .solutions-section__subtitle,
  body.front-page .solutions-section__subtitle,
  body.home .news-section__subtitle,
  body.front-page .news-section__subtitle,
  body.home .news-section__more,
  body.front-page .news-section__more {
    margin-top: 18px;
  }

  body.home .product-explorer__tab,
  body.front-page .product-explorer__tab {
    min-width: 184px;
  }

  body.home .product-explorer__visual,
  body.front-page .product-explorer__visual {
    min-height: 260px;
  }

  body.home .product-explorer__content,
  body.front-page .product-explorer__content,
  body.home .solution-explorer__content,
  body.front-page .solution-explorer__content {
    padding: 26px 22px;
  }

  body.home .news-feature__link,
  body.front-page .news-feature__link {
    min-height: 0;
    padding: 10px;
  }

  body.home .news-list__link,
  body.front-page .news-list__link {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 4px;
  }

  body.home .news-list__day,
  body.front-page .news-list__day {
    font-size: 44px;
  }

  body.home .news-list__title,
  body.front-page .news-list__title {
    font-size: 16px;
  }
}

/* Home product card matrix */
body.home .products-section .product-explorer,
body.front-page .products-section .product-explorer {
  display: none;
}

body.home .products-section .section-heading,
body.front-page .products-section .section-heading {
  margin-bottom: 0;
}

body.home .products-section .section-heading__subtitle,
body.front-page .products-section .section-heading__subtitle {
  display: none;
}

.home-product-showcase {
  margin-top: 38px;
}

.home-product-showcase__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 44px;
}

.home-product-showcase__tabs-shell {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.home-product-showcase__tabs {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(8, minmax(250px, 1fr));
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px;
  scroll-behavior: smooth;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
}

.home-product-showcase__tabs::-webkit-scrollbar {
  display: none;
}

.home-product-showcase__tab {
  display: inline-flex;
  min-width: 250px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  color: #566a82;
  font-size: 14px;
  font-weight: 820;
  line-height: 1.35;
  overflow: hidden;
  scroll-snap-align: start;
  text-align: center;
  white-space: nowrap;
  background: #ffffff;
  border: 1px solid #b9c7da;
  border-radius: 2px;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.home-product-showcase__tab:hover,
.home-product-showcase__tab.is-active {
  color: #ffffff;
  background: #0e5ecd;
  border-color: #0e5ecd;
  transform: translateY(-1px);
}

.home-product-showcase__scroll {
  position: relative;
  z-index: 2;
  display: inline-grid;
  width: 34px;
  height: 58px;
  place-items: center;
  padding: 0;
  color: #0e5ecd;
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #b9c7da;
  transition:
    color var(--transition),
    background var(--transition),
    opacity var(--transition);
}

.home-product-showcase__scroll--prev {
  margin-right: 8px;
}

.home-product-showcase__scroll--next {
  margin-left: 8px;
}

.home-product-showcase__scroll:hover:not(:disabled) {
  color: #ffffff;
  background: #0e5ecd;
  border-color: #0e5ecd;
}

.home-product-showcase__scroll:disabled {
  cursor: default;
  opacity: 0.3;
}

.home-product-showcase__scroll[hidden] {
  display: none;
}

.home-product-showcase__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0e5ecd;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  transition:
    color var(--transition),
    transform var(--transition);
}

.home-product-showcase__more:hover {
  color: #1c71e6;
  transform: translateX(3px);
}

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

.home-product-showcase__panel[hidden] {
  display: none;
}

.home-product-card {
  min-width: 0;
  background: #ffffff;
  border: 1px solid #dfe6ef;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.home-product-card:hover {
  border-color: rgba(14, 94, 205, 0.34);
  box-shadow: 0 24px 60px rgba(10, 47, 94, 0.12);
  transform: translateY(-3px);
}

.home-product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 14 / 9;
  background:
    linear-gradient(rgba(14, 94, 205, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 94, 205, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #e8f0fc 100%);
  background-size: 36px 36px;
  border-bottom: 1px solid #dfe6ef;
}

.home-product-card__image img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  background: #ffffff;
  transform: scale(1.01);
  transition: transform 320ms ease;
}

.home-product-card--empty .home-product-card__image img {
  padding: 0;
  object-fit: cover;
  background: transparent;
}

.home-product-card:hover .home-product-card__image img {
  transform: scale(1.045);
}

.home-product-card__body {
  display: grid;
  align-content: start;
  min-height: 196px;
  padding: 26px 28px 28px;
}

.home-product-card__code {
  display: block;
  margin-bottom: 14px;
  color: #0e5ecd;
  font-size: 12px;
  font-weight: 880;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.home-product-card h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.56em;
  margin: 0;
  color: #16233a;
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 850;
  line-height: 1.28;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-product-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 56px;
  margin: 14px 0 0;
  color: #566a82;
  font-size: 15px;
  font-weight: 520;
  line-height: 1.82;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-product-card__link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #0e5ecd;
  font-size: 14px;
  font-weight: 850;
  transition:
    color var(--transition),
    transform var(--transition);
}

.home-product-card__link:hover {
  color: #1c71e6;
  transform: translateX(3px);
}

.home-product-card--empty {
  min-height: 100%;
  background: #f3f6fb;
  border-style: dashed;
}

.home-product-card--empty .home-product-card__body {
  min-height: 100%;
  justify-content: center;
}

@media (max-width: 1180px) {
  .home-product-showcase__panel {
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .home-product-showcase__bar {
    align-items: flex-start;
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }

  .home-product-showcase__tabs {
    grid-template-columns: repeat(8, minmax(230px, 1fr));
    padding-bottom: 8px;
  }

  .home-product-showcase__tabs-shell {
    width: 100%;
  }

  .home-product-showcase__tab {
    min-width: 230px;
  }

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

}

@media (max-width: 560px) {
  .home-product-showcase {
    margin-top: 28px;
  }

  .home-product-showcase__tab {
    min-height: 52px;
    min-width: 220px;
    padding: 7px 14px;
    font-size: 13px;
  }

  .home-product-showcase__tabs {
    grid-template-columns: repeat(8, minmax(220px, 1fr));
  }

  .home-product-showcase__scroll {
    width: 30px;
    height: 52px;
  }

  .home-product-card__body {
    padding: 22px;
  }

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

.default-post-page {
  min-height: 100vh;
  color: #16233a;
  background: #ffffff;
}

.default-post-hero {
  padding: 152px 0 72px;
  background:
    linear-gradient(rgba(14, 94, 205, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 94, 205, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #f5f8ff 0%, #ffffff 100%);
  background-size: 42px 42px, 42px 42px, auto;
  border-bottom: 1px solid #dfe6ef;
}

.default-post-hero__inner,
.default-post-article {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.default-post-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: #6a7a91;
  font-size: 14px;
  font-weight: 650;
}

.default-post-breadcrumb a {
  color: inherit;
}

.default-post-breadcrumb a:hover {
  color: #0e5ecd;
}

.default-post-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: #0e5ecd;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 2.5px;
}

.default-post-hero__eyebrow::after {
  width: 54px;
  height: 1px;
  background: #9bbcf0;
  content: "";
}

.default-post-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #101827;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}

.default-post-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
  color: #6a7a91;
  font-size: 15px;
  font-weight: 620;
}

.default-post-hero__meta span,
.default-post-hero__meta time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.default-post-hero__meta span + span::before,
.default-post-hero__meta time + span::before {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #9bbcf0;
  content: "";
}

.default-post-hero__meta a {
  color: inherit;
}

.default-post-shell {
  padding: 72px 0 96px;
}

.default-post-cover {
  overflow: hidden;
  margin: 0 0 42px;
  border: 1px solid #dfe6ef;
  background: #f5f8ff;
}

.default-post-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.default-post-content {
  color: #27364a;
  font-size: 18px;
  line-height: 2;
}

.default-post-content > *:first-child {
  margin-top: 0;
}

.default-post-content p {
  margin: 0 0 24px;
}

.default-post-content h2,
.default-post-content h3,
.default-post-content h4 {
  margin: 42px 0 18px;
  color: #101827;
  font-weight: 880;
  line-height: 1.35;
  letter-spacing: 0;
}

.default-post-content h2 {
  font-size: 28px;
}

.default-post-content h3 {
  font-size: 24px;
}

.default-post-content h4 {
  font-size: 21px;
}

.default-post-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 34px auto;
}

.default-post-content ul,
.default-post-content ol {
  margin: 0 0 28px 24px;
  padding: 0;
}

.default-post-content li + li {
  margin-top: 8px;
}

.default-post-content blockquote {
  margin: 34px 0;
  padding: 22px 28px;
  color: #41536b;
  background: #f5f8ff;
  border-left: 4px solid #0e5ecd;
}

.default-post-pages {
  margin-top: 36px;
}

.default-post-footer {
  display: grid;
  gap: 28px;
  margin-top: 58px;
  padding-top: 34px;
  border-top: 1px solid #dfe6ef;
}

.default-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.default-post-nav a,
.default-post-back {
  display: flex;
  min-height: 78px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  color: #16233a;
  background: #f8fbff;
  border: 1px solid #dfe6ef;
  transition:
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.default-post-nav a:hover,
.default-post-back:hover {
  color: #0e5ecd;
  border-color: #9bbcf0;
  transform: translateY(-2px);
}

.default-post-nav span {
  margin-bottom: 8px;
  color: #7b8a9f;
  font-size: 13px;
  font-weight: 720;
}

.default-post-nav strong {
  overflow: hidden;
  font-size: 16px;
  font-weight: 820;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.default-post-back {
  width: max-content;
  min-height: 0;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: #ffffff;
  background: #0e5ecd;
  border-color: #0e5ecd;
  font-size: 15px;
  font-weight: 820;
}

.default-post-back:hover {
  color: #ffffff;
  background: #1c71e6;
  border-color: #1c71e6;
}

@media (max-width: 760px) {
  .default-post-hero {
    padding: 126px 0 54px;
  }

  .default-post-hero__inner,
  .default-post-article {
    width: min(100% - 32px, 980px);
  }

  .default-post-hero h1 {
    font-size: 30px;
  }

  .default-post-shell {
    padding: 48px 0 72px;
  }

  .default-post-content {
    font-size: 16px;
    line-height: 1.9;
  }

  .default-post-nav {
    grid-template-columns: 1fr;
  }
}

.default-category-page {
  min-height: 100vh;
  color: #16233a;
  background: #f4f7fb;
}

.default-category-hero {
  padding: 152px 0 78px;
  background:
    linear-gradient(rgba(14, 94, 205, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 94, 205, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #f8fbff 0%, #edf4ff 52%, #ffffff 100%);
  background-size: 42px 42px, 42px 42px, auto;
  border-bottom: 1px solid #dfe6ef;
}

.default-category-hero__inner,
.default-category-body {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.default-category-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: #0e5ecd;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 2.5px;
}

.default-category-hero__eyebrow::after {
  width: 54px;
  height: 1px;
  background: #9bbcf0;
  content: "";
}

.default-category-hero h1 {
  margin: 0;
  color: #101827;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.default-category-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #566a82;
  font-size: 17px;
  font-weight: 540;
  line-height: 1.85;
}

.default-category-body {
  padding: 64px 0 96px;
}

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

.default-category-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe6ef;
  box-shadow: 0 18px 46px rgba(22, 35, 58, 0.06);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.default-category-card:hover {
  border-color: #9bbcf0;
  box-shadow: 0 24px 58px rgba(22, 35, 58, 0.1);
  transform: translateY(-4px);
}

.default-category-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #edf4ff;
  border-bottom: 1px solid #dfe6ef;
}

.default-category-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.default-category-card:hover .default-category-card__media img {
  transform: scale(1.045);
}

.default-category-card__body {
  padding: 28px;
}

.default-category-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #7b8a9f;
  font-size: 13px;
  font-weight: 760;
}

.default-category-card__meta strong {
  color: #0e5ecd;
}

.default-category-card__meta time {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.default-category-card__meta time::before {
  width: 1px;
  height: 14px;
  background: #d6dfeb;
  content: "";
}

.default-category-card h2 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 68px;
  margin: 0;
  color: #16233a;
  font-size: 23px;
  font-weight: 880;
  line-height: 1.45;
  letter-spacing: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.default-category-card h2 a:hover {
  color: #0e5ecd;
}

.default-category-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 58px;
  margin: 16px 0 0;
  color: #667891;
  font-size: 15px;
  line-height: 1.85;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.default-category-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #0e5ecd;
  font-size: 14px;
  font-weight: 850;
}

.default-category-card__more:hover {
  color: #1c71e6;
}

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

@media (max-width: 680px) {
  .default-category-hero {
    padding: 126px 0 54px;
  }

  .default-category-hero__inner,
  .default-category-body {
    width: min(100% - 32px, 1240px);
  }

  .default-category-hero h1 {
    font-size: 34px;
  }

  .default-category-body {
    padding: 46px 0 72px;
  }

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

/* Reference footer redesign */
.contact-footer {
  position: relative;
  overflow: hidden;
  color: #17233a;
  background: #fff;
}

.contact-footer::before,
.contact-footer__glow {
  display: none;
}

.contact-footer__cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 4% 8%, rgba(255, 255, 255, 0.13) 0 2px, transparent 2.5px) 0 0 / 16px 16px,
    radial-gradient(circle at 96% 12%, rgba(255, 255, 255, 0.1) 0 2px, transparent 2.5px) 0 0 / 18px 18px,
    linear-gradient(120deg, #2865df 0%, #3d79ed 52%, #2f6de6 100%);
}

.contact-footer__cta::before,
.contact-footer__cta::after {
  position: absolute;
  top: 0;
  width: 28%;
  height: 100%;
  content: "";
  opacity: 0.34;
  pointer-events: none;
}

.contact-footer__cta::before {
  left: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 54%);
  clip-path: polygon(0 0, 100% 0, 62% 100%, 0 100%);
}

.contact-footer__cta::after {
  right: 0;
  background: linear-gradient(225deg, rgba(255, 255, 255, 0.16), transparent 54%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 38% 100%);
}

.contact-footer__cta-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
  padding: 64px 0 58px;
  text-align: center;
}

.contact-footer__cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.contact-footer__consult {
  margin-top: 32px;
}

.contact-footer__consult > summary {
  display: inline-flex;
  min-width: 188px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  color: #2865df;
  font-size: 16px;
  font-weight: 850;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(20, 66, 164, 0.22);
  cursor: pointer;
  list-style: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-footer__consult > summary::-webkit-details-marker {
  display: none;
}

.contact-footer__consult > summary:hover {
  box-shadow: 0 18px 40px rgba(20, 66, 164, 0.3);
  transform: translateY(-2px);
}

.contact-footer__consult-panel {
  width: min(940px, 100%);
  margin: 34px auto 0;
  padding: 32px 36px 36px;
  text-align: left;
  background: rgba(9, 46, 126, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 28px 64px rgba(16, 52, 132, 0.24);
  backdrop-filter: blur(14px);
}

.contact-footer__consult-panel .contact-footer__form-head {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.contact-footer__main {
  color: #17233a;
  background: #fff;
}

.contact-footer__main-inner {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
  padding: 66px 0 0;
}

.contact-footer__info-row {
  display: grid;
  grid-template-columns: 230px minmax(280px, 1fr) auto;
  align-items: center;
  gap: 54px;
  padding-bottom: 48px;
}

.contact-footer__hotline,
.contact-footer__company {
  display: grid;
  gap: 8px;
}

.contact-footer__hotline a {
  width: max-content;
  color: #3473e8;
  font-size: 30px;
  font-weight: 850;
  line-height: 1.1;
}

.contact-footer__hotline span,
.contact-footer__company span,
.contact-footer__qr-item span {
  color: #6d7788;
  font-size: 14px;
  line-height: 1.7;
}

.contact-footer__company strong,
.contact-footer__qr-item strong {
  color: #161d2a;
  font-size: 16px;
  font-weight: 850;
}

.contact-footer__company p {
  margin: 0;
  color: #2f3949;
  font-size: 15px;
  font-weight: 700;
}

.contact-footer__qr-list {
  display: flex;
  align-items: center;
  gap: 38px;
}

.contact-footer__qr-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 210px;
}

.contact-footer__qr-item > div {
  display: grid;
  gap: 7px;
}

.contact-footer__qr-placeholder {
  display: grid;
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  place-items: center;
  color: #74829a !important;
  font-size: 12px !important;
  font-weight: 750;
  line-height: 1.45 !important;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(52, 115, 232, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(52, 115, 232, 0.08) 1px, transparent 1px),
    #f4f7fc;
  background-size: 12px 12px;
  border: 1px dashed #b8c7de;
}

.contact-footer__navigation-row {
  display: grid;
  min-height: 96px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 52px;
  border-top: 1px solid #e4e8ef;
}

.contact-footer__brand {
  color: #17233a;
}

.contact-footer__brand .brand__mark {
  width: 54px;
  height: 38px;
  object-fit: contain;
}

.contact-footer__nav {
  gap: 22px 32px;
}

.contact-footer__nav a {
  color: #343e4d;
  font-size: 14px;
  font-weight: 700;
}

.contact-footer__nav a:hover {
  color: #2865df;
}

.contact-footer__language {
  display: inline-flex;
  min-width: 104px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #343e4d;
  font-size: 14px;
  font-weight: 750;
  border: 1px solid #dce2ea;
}

.contact-footer__legal {
  color: #303845;
  background: #f0f1f3;
}

.contact-footer__legal-inner {
  display: flex;
  width: min(1200px, calc(100% - 48px));
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
  font-size: 13px;
}

.contact-footer__legal-inner p {
  margin: 0;
}

.contact-footer__legal-inner a {
  color: #485363;
}

.contact-footer__top {
  position: absolute;
  right: 26px;
  bottom: 88px;
  color: #fff;
  background: #2865df;
  border: 0;
}

.contact-footer__top:hover {
  background: #174fbf;
}

@media (max-width: 1080px) {
  .contact-footer__info-row {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .contact-footer__qr-list {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .contact-footer__navigation-row {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 24px 0;
  }

  .contact-footer__language {
    display: none;
  }
}

@media (max-width: 700px) {
  .contact-footer__cta-inner,
  .contact-footer__main-inner,
  .contact-footer__legal-inner {
    width: min(100% - 28px, 1200px);
  }

  .contact-footer__cta-inner {
    padding: 50px 0 46px;
  }

  .contact-footer__cta h2 {
    font-size: 28px;
  }

  .contact-footer__consult-panel {
    padding: 26px 18px;
  }

  .contact-footer__main-inner {
    padding-top: 48px;
  }

  .contact-footer__info-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-footer__hotline a {
    font-size: 27px;
  }

  .contact-footer__qr-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-footer__navigation-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
  }

  .contact-footer__legal-inner {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-right: 46px;
  }

  .contact-footer__top {
    right: 14px;
    bottom: 104px;
  }
}


/* Static content image compatibility */
.content-image { margin: 0 0 1em; }
.content-image img { height: auto; max-width: 100%; vertical-align: bottom; }

/* Solution category navigation */
.solution-category-nav {
    background: #f4f7fb;
    border-bottom: 1px solid #e1e8f2;
}

.solution-category-nav__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 26px 110px 0;
}

.solution-category-nav__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    color: #173866;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    background: #fff;
    border: 1px solid #d8e2ee;
    transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.solution-category-nav__item:hover,
.solution-category-nav__item:focus-visible,
.solution-category-nav__item.is-active {
    color: #fff;
    background: #0a2559;
    border-color: #0a2559;
    box-shadow: 0 12px 28px rgba(23, 56, 102, 0.16);
    transform: translateY(-2px);
}

.solution-category-nav + .solution-archive-body {
    padding-top: 34px;
}

@media (max-width: 900px) {
    .solution-category-nav__inner {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 20px 20px 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .solution-category-nav__inner::-webkit-scrollbar {
        display: none;
    }

    .solution-category-nav__item {
        min-height: 40px;
        padding: 0 18px;
        font-size: 14px;
    }

    .solution-category-nav + .solution-archive-body {
        padding-top: 28px;
    }
}
