:root {
  --navy-980: #07132c;
  --navy-950: #0a1d46;
  --navy-900: #0d275a;
  --navy-800: #153c88;
  --blue-500: #2b8cff;
  --cyan-400: #42d7ff;
  --cyan-300: #7be7ff;
  --line-blue: rgba(66, 155, 255, 0.18);
  --text-dark: #1d2b4d;
  --text-soft: #61749a;
  --white: #ffffff;
  --bg-light: #f6f9ff;
  --bg-alt: #fcfdff;
  --shadow-soft: 0 18px 48px rgba(30, 66, 140, 0.12);
  --shadow-card: 0 22px 60px rgba(18, 52, 116, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1560px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 19, 44, 0.92);
  border-bottom: 1px solid rgba(123, 231, 255, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo-icon-image {
  display: block;
  height: 44px;
  width: auto;
  max-width: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(10, 29, 70, 0.18));
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}

.logo-wordmark strong {
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-wordmark small {
  margin-top: 4px;
  color: rgba(228, 239, 255, 0.72);
  font-size: 0.58rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.site-nav > a,
.nav-parent-label,
.nav-submenu a {
  position: relative;
  color: rgba(239, 247, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 500;
}

.site-nav > a::after,
.nav-parent-label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-500));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.nav-item-has-children.is-submenu-open .nav-parent-label::after,
.nav-item-row:focus-visible .nav-parent-label::after {
  transform: scaleX(1);
}

.site-nav > a.active::after,
.nav-parent-label.active::after,
.nav-item-active .nav-parent-label::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.nav-item-row {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav-parent-label {
  cursor: default;
}

.nav-item-row:focus-visible {
  outline: 2px solid rgba(66, 215, 255, 0.55);
  outline-offset: 6px;
  border-radius: 12px;
}

.submenu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(239, 247, 255, 0.9);
  cursor: pointer;
}

.submenu-toggle span {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-item-has-children.is-submenu-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item-has-children.is-submenu-open .submenu-toggle span {
  transform: translateY(1px) rotate(225deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  gap: 4px;
  min-width: 168px;
  padding: 10px;
  background: rgba(8, 21, 48, 0.98);
  border: 1px solid rgba(123, 231, 255, 0.14);
  border-radius: 18px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-submenu a {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
  color: rgba(239, 247, 255, 0.82);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(66, 155, 255, 0.14);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 40%, rgba(66, 215, 255, 0.22), transparent 18%),
    radial-gradient(circle at 16% 24%, rgba(43, 140, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #07132c 0%, #0a1c43 56%, #0b2151 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    radial-gradient(circle, rgba(123, 231, 255, 0.32) 1px, transparent 1px);
  background-size: 110px 110px, 170px 170px;
  background-position: 0 0, 55px 36px;
  opacity: 0.26;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 36px;
  align-items: center;
  min-height: 760px;
  padding: 72px 0 40px;
}

.hero-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 0;
}

.hero-slides {
  position: relative;
  min-height: 760px;
  width: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  overflow: hidden;
  border-radius: 0;
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    visibility 420ms ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.92;
  transform: scale(1.01);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 44, 0.96) 0%, rgba(7, 19, 44, 0.88) 22%, rgba(7, 19, 44, 0.54) 42%, rgba(7, 19, 44, 0.16) 70%, rgba(7, 19, 44, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 19, 44, 0.1) 0%, rgba(7, 19, 44, 0.28) 100%);
  pointer-events: none;
}

.hero-slide-supply::before {
  background-image: url("../images/redesign/banners/banner-supply-chain-system.webp");
}

.hero-slide-finance::before {
  background-image: url("../images/redesign/banners/banner-finance-middleware.webp");
}

.hero-slide-partner::before {
  background-image: url("../images/redesign/banners/banner-partner-recruitment.webp");
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
  padding: 28px 0 28px;
}

.hero-kicker {
  margin: 0 0 18px;
  color: rgba(182, 221, 255, 0.78);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-family: "Space Grotesk", sans-serif;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.hero-copy h2 {
  margin: 22px 0 0;
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  color: #eff6ff;
  line-height: 1.35;
}

.hero-desc {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(222, 238, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #2d8dff, #4dcfff);
  color: white;
  box-shadow: 0 14px 32px rgba(43, 140, 255, 0.36);
}

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: white;
  background: rgba(255, 255, 255, 0.03);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.hero-points article {
  padding: 20px 18px;
  border: 1px solid rgba(145, 223, 255, 0.16);
  border-radius: 18px;
  background: rgba(13, 34, 71, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.point-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border: 1px solid rgba(121, 231, 255, 0.28);
  border-radius: 50%;
  color: var(--cyan-300);
  font-size: 1.1rem;
}

.hero-points strong {
  display: block;
  font-size: 1.08rem;
}

.hero-points p {
  margin: 10px 0 0;
  color: rgba(214, 232, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.7;
}

.hero-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
  padding-bottom: 0;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(123, 231, 255, 0.3);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.hero-dot.is-active {
  background: linear-gradient(135deg, #4fd2ff, #2b8cff);
  box-shadow: 0 0 0 6px rgba(66, 215, 255, 0.12);
  transform: scale(1.12);
}

.inner-hero {
  background:
    radial-gradient(circle at 78% 30%, rgba(66, 215, 255, 0.2), transparent 20%),
    linear-gradient(180deg, #081733 0%, #0c2350 100%);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
  min-height: 420px;
  padding: 58px 0 42px;
}

.inner-hero-copy {
  color: white;
}

.inner-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
}

.inner-hero-desc {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(223, 237, 255, 0.84);
  line-height: 1.95;
  font-size: 1.02rem;
}

.inner-hero-media {
  display: flex;
  justify-content: flex-end;
}

.inner-hero-media img {
  width: min(100%, 760px);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(10, 25, 59, 0.22);
}

.section {
  padding: 74px 0;
}

@media (min-width: 1700px) {
  :root {
    --container: 1720px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 48px;
  }

  .hero-visual img {
    width: min(100%, 1120px);
  }

  .inner-hero-grid {
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    gap: 44px;
  }

  .inner-hero-media img {
    width: min(100%, 860px);
  }

  .product-panel,
  .service-panel,
  .partner-panel {
    padding: 32px;
  }
}

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.section-light.alt {
  background: linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
}

.product-section-shell {
  margin-bottom: 30px;
}

.product-section-band {
  padding: 26px 34px 28px;
  border: 1px solid rgba(107, 154, 237, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.92)),
    linear-gradient(180deg, #f7fbff 0%, #eff5ff 100%);
  box-shadow: 0 20px 48px rgba(27, 67, 140, 0.08);
}

.product-category-head {
  position: relative;
  max-width: none;
  margin-bottom: 0;
  padding: 28px 120px 0 0;
}

.product-category-head h1,
.product-category-head h2 {
  margin: 0;
  color: #20335f;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.product-category-head p:last-child {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 1rem;
}

.product-category-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 141, 255, 0.95), rgba(66, 215, 255, 0.72));
  box-shadow: 0 8px 20px rgba(45, 141, 255, 0.18);
}

.product-category-head::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 215, 255, 0.12) 0%, rgba(66, 215, 255, 0) 72%);
  pointer-events: none;
  transform: translate(18%, -28%);
}

.section-title {
  text-align: center;
  margin-bottom: 38px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: #20335f;
}

.section-title p {
  position: relative;
  display: inline-block;
  margin: 16px 0 0;
  padding: 0 28px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.section-title p::before,
.section-title p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 141, 255, 0), rgba(45, 141, 255, 0.6));
}

.section-title p::before {
  left: 0;
}

.section-title p::after {
  right: 0;
  transform: rotate(180deg);
}

.product-grid,
.service-panels {
  display: grid;
  gap: 22px;
}

.product-panel,
.service-panel,
.partner-panel {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(81, 144, 255, 0.12);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fefeff 0%, #f6fbff 100%);
  box-shadow: var(--shadow-card);
}

.product-copy,
.service-copy {
  padding: 8px 6px 8px 8px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.product-badge.blue {
  color: #1662d5;
  background: rgba(43, 140, 255, 0.1);
}

.product-badge.cyan {
  color: #0d9bc6;
  background: rgba(66, 215, 255, 0.14);
}

.product-badge.pale {
  color: #4b74d6;
  background: rgba(99, 135, 255, 0.1);
}

.product-badge.pale-cyan {
  color: #048ab1;
  background: rgba(89, 213, 255, 0.12);
}

.product-copy h3,
.service-copy h3,
.hardware-card h3,
.partner-points h3,
.footer-col h3 {
  margin: 16px 0 12px;
  color: #22417e;
  font-size: 1.65rem;
  line-height: 1.3;
}

.product-copy p,
.service-copy p,
.hardware-card p,
.partner-points p,
.about-content p,
.footer-brand p,
.footer-col p,
.footer-col a {
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 1rem;
}

.feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 10px;
  color: #4f6693;
  line-height: 1.8;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #248dff;
  font-weight: 700;
}

.feature-list.compact li {
  font-size: 0.96rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: #2d8dff;
  font-weight: 700;
}

.text-link::after {
  content: "→";
}

.product-media,
.service-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img,
.service-media img,
.partner-media img {
  width: 100%;
  border-radius: 18px;
}

.product-card-grid {
  display: grid;
  gap: 22px;
}

.page-card-grid {
  display: grid;
  gap: 22px;
}

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

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

.product-card-grid-software {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
}

.product-card-grid-software .product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(240px, 0.98fr);
  align-items: stretch;
  max-width: none;
  border-radius: 22px;
}

.product-card-grid-software .product-card-media {
  min-height: 100%;
  order: 2;
}

.product-card-grid-software .product-card-body {
  order: 1;
  justify-content: center;
  padding: 24px 24px 22px;
}

.product-card-grid-software .product-card-body h3 {
  font-size: 1.44rem;
  margin: 14px 0 8px;
}

.product-card-grid-software .product-card-body p,
.product-card-grid-software .feature-list.compact li {
  font-size: 0.94rem;
  line-height: 1.72;
}

.product-card-grid-software .feature-list {
  margin-top: 14px;
}

.product-card-grid-software .feature-list li {
  margin-top: 8px;
  padding-left: 18px;
}

.product-card-grid-software .product-card-actions {
  padding-top: 18px;
}

.product-card-grid-software .product-button {
  min-width: 124px;
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(81, 144, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f7fbff 100%);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(81, 144, 255, 0.2);
  box-shadow: var(--shadow-card);
}

.product-card-media {
  min-height: 220px;
  background: linear-gradient(180deg, #edf5ff 0%, #f8fbff 100%);
}

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

.product-card-media-hardware {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 18px;
}

.product-card-media-hardware img {
  width: auto;
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-card-body h3 {
  margin: 16px 0 12px;
  color: #22417e;
  font-size: 1.5rem;
  line-height: 1.3;
}

.product-card-body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.product-card-actions {
  margin-top: auto;
  padding-top: 22px;
}

.product-button {
  min-width: 132px;
  min-height: 46px;
  font-size: 0.96rem;
}

.section-product-hardware {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(66, 215, 255, 0.12), transparent 20%),
    radial-gradient(circle at 86% 22%, rgba(43, 140, 255, 0.1), transparent 22%),
    linear-gradient(180deg, #f2f7ff 0%, #e9f2ff 26%, #f6faff 100%);
}

.section-product-hardware::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.28) 100%);
  pointer-events: none;
}

.section-product-hardware .container {
  position: relative;
  z-index: 1;
}

.section-product-hardware .product-category-head h2 {
  color: #18386f;
}

.section-product-hardware .product-category-head p:last-child {
  max-width: 720px;
  color: #62789f;
}

.section-product-hardware .hero-kicker {
  color: #5b81c2;
}

.section-product-hardware .product-card {
  border-color: rgba(91, 134, 230, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 247, 255, 0.98) 100%);
  box-shadow: 0 22px 56px rgba(22, 55, 119, 0.09);
}

.section-product-hardware .product-card-media {
  background:
    radial-gradient(circle at top, rgba(94, 175, 255, 0.14), transparent 50%),
    linear-gradient(180deg, #eef5ff 0%, #f8fbff 100%);
}

.page-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 24px;
  overflow: hidden;
  border: 1px solid rgba(81, 144, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f7fbff 100%);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.page-info-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 68px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 141, 255, 0.95), rgba(66, 215, 255, 0.72));
  box-shadow: 0 8px 20px rgba(45, 141, 255, 0.16);
}

.page-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(81, 144, 255, 0.2);
  box-shadow: var(--shadow-card);
}

.page-info-card h3 {
  margin: 16px 0 12px;
  color: #22417e;
  font-size: 1.4rem;
  line-height: 1.35;
}

.page-info-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.page-info-card .feature-list {
  margin-top: 14px;
}

.page-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.page-story-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.page-story-card {
  padding: 28px 30px;
  border: 1px solid rgba(81, 144, 255, 0.12);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: var(--shadow-soft);
}

.page-story-card h3 {
  margin: 8px 0 14px;
  color: #22417e;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.3;
}

.page-story-card p {
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 1rem;
}

.page-story-lead {
  margin-top: 0;
  color: #2a4b87;
  font-size: 1.14rem;
  font-weight: 700;
}

.page-story-actions {
  margin-top: 24px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.metric-card {
  padding: 18px 16px;
  border: 1px solid rgba(81, 144, 255, 0.12);
  border-radius: 18px;
  background: rgba(240, 246, 255, 0.78);
}

.metric-card strong {
  display: block;
  color: #21417e;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: 1.08rem;
  line-height: 1.2;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.92rem;
}


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

.entry-grid,
.page-usage-grid,
.contact-page-grid {
  display: grid;
  gap: 22px;
}

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

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

.entry-card,
.usage-card,
.contact-info-card {
  display: block;
  padding: 26px 24px;
  border: 1px solid rgba(81, 144, 255, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.entry-card strong,
.usage-card h3,
.contact-info-card h3 {
  display: block;
  color: #21417e;
  font-size: 1.28rem;
  margin: 0 0 12px;
}

.entry-card span,
.usage-card p,
.contact-info-card p {
  color: var(--text-soft);
  line-height: 1.85;
}

.contact-qrcode-card {
  text-align: center;
}

.contact-qrcode-image {
  width: min(100%, 220px);
  margin: 10px auto 14px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(27, 63, 136, 0.16);
}

.entry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.hardware-card {
  padding: 24px 22px 26px;
  border: 1px solid rgba(81, 144, 255, 0.12);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.hardware-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  margin-bottom: 10px;
}

.hardware-image img {
  max-height: 100%;
  object-fit: contain;
}

.partner-panel {
  align-items: center;
}

.partner-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
}

.partner-points article {
  padding-right: 16px;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: stretch;
}

.about-building img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.about-content {
  padding: 26px 28px;
  border: 1px solid rgba(81, 144, 255, 0.12);
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.about-lead {
  margin-top: 0;
  color: #2a4b87;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.8;
}

.about-stats,
.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-stats {
  margin-top: 28px;
}

.about-stats article,
.about-values article {
  padding: 18px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7faff 0%, #eef5ff 100%);
  text-align: center;
}

.about-stats strong,
.about-values strong {
  display: block;
  color: #285fc4;
}

.about-stats strong {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.about-stats span,
.about-values span {
  color: #6980a8;
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-values {
  margin-top: 16px;
}

.site-footer {
  background: linear-gradient(180deg, #0b1b3e 0%, #07132c 100%);
  color: rgba(224, 238, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr 0.8fr;
  gap: 22px;
  padding: 54px 0 28px;
}

.footer-brand strong,
.footer-col h3 {
  color: white;
}

.footer-brand strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.14rem;
}

.footer-icons {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  color: var(--cyan-300);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-col a,
.footer-col p {
  margin: 0 0 10px;
  color: rgba(224, 238, 255, 0.78);
  font-size: 0.95rem;
}

.footer-brand p {
  margin: 0;
  color: rgba(224, 238, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-qr .qr-box {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeaff 100%);
  color: #2b5fd0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-qr-image {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 16px;
  background: white;
  padding: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom-single {
  padding-top: 24px;
  justify-content: center;
}

.footer-bottom-centered {
  justify-content: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .inner-hero-grid,
  .product-panel,
  .service-panel,
  .partner-panel,
  .about-layout,
  .page-story-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 660px;
    padding-top: 50px;
  }

  .hero-slides {
    min-height: 660px;
  }

  .hero-slide {
    position: absolute;
  }

  .hero-slide.is-active {
    position: relative;
  }

  .hero-slide::before {
    background-position: center;
  }

  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(7, 19, 44, 0.78) 0%, rgba(7, 19, 44, 0.72) 26%, rgba(7, 19, 44, 0.56) 54%, rgba(7, 19, 44, 0.82) 100%);
  }

  .hero-copy {
    max-width: 100%;
    padding: 22px 0 16px;
  }

  .hardware-grid,
  .entry-grid,
  .page-usage-grid,
  .contact-page-grid,
  .page-card-grid-3,
  .page-card-grid-4,
  .about-stats,
  .about-values,
  .partner-points,
  .metric-grid,
  .product-card-grid-hardware {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .product-card-grid-software .product-card-media,
  .product-card-grid-software .product-card-body {
    order: initial;
  }

  .product-category-head,
  .section-product-hardware .product-category-head {
    padding-right: 84px;
  }

  .product-category-head::after {
    width: 180px;
    height: 180px;
    transform: translate(10%, -22%);
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 74px;
  }

  .logo-icon-image {
    height: 38px;
    max-width: 38px;
  }

  .logo-wordmark {
    line-height: 1;
  }

  .logo-wordmark strong {
    font-size: 1rem;
  }

  .logo-wordmark small {
    margin-top: 3px;
    font-size: 0.5rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 14px;
    background: rgba(8, 21, 48, 0.98);
    border: 1px solid rgba(123, 231, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav > a,
  .nav-parent-label {
    padding: 14px 4px;
  }

  .site-nav > a::after,
  .nav-parent-label::after {
    display: none;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item-row {
    justify-content: space-between;
  }

  .submenu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    margin-top: 2px;
    padding: 0 0 0 14px;
    border: 0;
    border-left: 1px solid rgba(123, 231, 255, 0.14);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .nav-item-has-children.is-submenu-open .nav-submenu {
    display: grid;
  }

  .nav-submenu a {
    padding: 10px 4px 10px 0;
  }

  .hero-points,
  .hardware-grid,
  .entry-grid,
  .page-usage-grid,
  .contact-page-grid,
  .page-card-grid-3,
  .page-card-grid-4,
  .about-stats,
  .about-values,
  .partner-points,
  .metric-grid,
  .product-card-grid-software,
  .product-card-grid-hardware,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 6px;
  }

  .footer-grid {
    gap: 14px;
    padding: 30px 0 18px;
  }

  .footer-brand,
  .footer-col {
    padding: 18px 18px 16px;
    border: 1px solid rgba(123, 231, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
  }

  .footer-brand strong {
    margin-bottom: 10px;
    font-size: 1.02rem;
    line-height: 1.5;
  }

  .footer-col h3 {
    margin-bottom: 10px;
    font-size: 0.96rem;
  }

  .footer-brand p,
  .footer-col a,
  .footer-col p {
    font-size: 0.92rem;
    line-height: 1.72;
    word-break: break-word;
  }

  .footer-col a:last-child,
  .footer-col p:last-child {
    margin-bottom: 0;
  }

  .footer-col.footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 8px;
  }

  .footer-col.footer-links h3 {
    width: 100%;
    margin-bottom: 2px;
  }

  .footer-col.footer-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid rgba(123, 231, 255, 0.18);
    border-radius: 999px;
    background: rgba(123, 231, 255, 0.08);
    white-space: nowrap;
  }

  .footer-icons {
    margin-top: 14px;
  }

  .footer-qr {
    align-items: center;
    text-align: center;
  }

  .footer-qr-image {
    width: min(132px, 38vw);
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 4px auto 8px;
    padding: 8px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 0 28px;
    text-align: center;
  }

  .footer-bottom p {
    line-height: 1.6;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    white-space: normal;
  }

  .hero-copy h2 {
    font-size: 1.3rem;
  }

  .product-copy h3,
  .service-copy h3,
  .hardware-card h3,
  .product-card-body h3 {
    font-size: 1.36rem;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-slider-controls {
    bottom: 14px;
    padding-bottom: 0;
  }

  .hero-grid,
  .hero-slides {
    min-height: 620px;
  }

  .product-category-head {
    padding-top: 24px;
  }

  .product-section-shell {
    margin-bottom: 20px;
  }

  .product-section-band {
    padding: 22px 20px 24px;
    border-radius: 24px;
  }

  .page-story-card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .page-story-media img {
    min-height: 320px;
    border-radius: 24px;
  }

  .product-category-head::before {
    width: 58px;
  }

  .product-category-head::after {
    width: 132px;
    height: 132px;
    transform: translate(6%, -18%);
  }
}
