:root {
  --ink: #07172f;
  --ink-2: #0d2345;
  --blue: #165dff;
  --sky: #0f8cea;
  --red: #da251c;
  --paper: #f3f6fb;
  --text: #16181a;
  --muted: #495770;
  --line: #e5e8ed;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.support-process-icon svg {
  width: 54px;
  height: 54px;
}

.support-cert-icon svg {
  width: 46px;
  height: 46px;
}

.about-values-icon svg {
  width: 40px;
  height: 40px;
}

.about-cert-icon svg {
  width: 42px;
  height: 42px;
}

.about-org-icon svg {
  width: 36px;
  height: 36px;
}

.about-industry-icon svg {
  width: 38px;
  height: 38px;
}

.ssl-product-empty-icon svg {
  width: 80px;
  height: 80px;
  color: #234b7c;
  margin-bottom: 15px;
}

a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container-main {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
}
.section-pad {
  padding: 88px 0;
}
.section-kicker {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}
.section-title {
  font-size: clamp(28px, 3.1vw, 36px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 1px;
}
.section-desc {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  max-width: 780px;
}
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}
.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(22, 93, 255, 0.26);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #0e52e8;
}
.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 68px;
  color: #fff;
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease;
}
.site-header.is-solid,
.site-header:hover {
  color: #1f2937;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}
.logo-dark {
  opacity: 0;
}
.site-header.is-solid .logo-light,
.site-header:hover .logo-light {
  opacity: 0;
}
.site-header.is-solid .logo-dark,
.site-header:hover .logo-dark {
  opacity: 1;
}
.nav-link {
  position: relative;
  height: 68px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  font-size: 15px;
  white-space: nowrap;
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--blue);
  transition: all 0.22s ease;
}
.nav-link:hover:after {
  left: 10px;
  width: calc(100% - 20px);
}
.nav-link.active:after {
  left: 10px;
  width: calc(100% - 20px);
}
.nav-menu {
  position: relative;
}
.nav-menu.is-current > .nav-link:after {
  left: 10px;
  width: calc(100% - 20px);
}
.nav-caret {
  margin-left: 6px;
  font-size: 11px;
  transition: transform 0.2s ease;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  display: grid;
  min-width: 216px;
  padding: 8px;
  border: 1px solid #dbe7f5;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(12, 48, 93, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.nav-dropdown a {
  padding: 11px 12px;
  color: #24466f;
  font-size: 14px;
  text-decoration: none;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}
.nav-dropdown a:hover {
  color: #0a63d8;
  background: #eef6ff;
}
.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-menu:hover .nav-caret,
.nav-menu:focus-within .nav-caret {
  transform: rotate(180deg);
}
.mobile-panel {
  position: fixed;
  top: 68px;
  right: 0;
  bottom: 0;
  z-index: 90;
  width: min(320px, 78vw);
  color: #fff;
  background: rgba(7, 23, 47, 0.98);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.22);
}
.mobile-panel.open {
  transform: translateX(0);
}

.hero {
  position: relative;
  min-height: 760px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 26%,
      rgba(22, 93, 255, 0.34),
      transparent 32%
    ),
    linear-gradient(135deg, #07172f 0%, #0b244d 52%, #06101f 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.75)
  );
}
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, #fff 88%);
}
.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.32;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.05);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 118px 0 98px;
}
.hero-title {
  max-width: 760px;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: 1px;
}
.hero-desc {
  margin-top: 22px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.75vw, 21px);
  line-height: 1.9;
}
.hero-console {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.07)
  );
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.hero-console:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14),
    transparent 42%
  );
  pointer-events: none;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #26d07c;
  box-shadow: 0 0 16px rgba(38, 208, 124, 0.7);
}
.metric-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(6, 16, 31, 0.36);
  padding: 14px;
}
.flow-line {
  position: relative;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.flow-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 64%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sky), #fff);
  animation: pulseWidth 3s ease-in-out infinite;
}
@keyframes pulseWidth {
  0%,
  100% {
    width: 42%;
    opacity: 0.75;
  }
  50% {
    width: 82%;
    opacity: 1;
  }
}
.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -86px;
  padding-bottom: 44px;
}
.trust-box {
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(216, 226, 242, 0.9);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(244, 248, 255, 0.92)
  );
  box-shadow: 0 24px 70px rgba(18, 55, 108, 0.16);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.trust-box:before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: -56px;
  height: 96px;
  background: radial-gradient(
    ellipse at center,
    rgba(22, 93, 255, 0.18),
    transparent 62%
  );
  pointer-events: none;
}
.trust-box:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue),
    var(--sky),
    transparent
  );
}
.trust-item {
  position: relative;
  border-right: 1px solid rgba(216, 226, 242, 0.85);
}
.trust-item:last-child {
  border-right: 0;
}
.trust-num {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--blue);
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.capability-stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 18px 54px rgba(24, 55, 105, 0.1);
  overflow: hidden;
}
.capability-stage:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(22, 93, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 93, 255, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 64%);
  pointer-events: none;
}
.capability-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}
.cap-rail-item {
  position: relative;
  min-height: 128px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}
.cap-rail-item:last-child {
  border-right: 0;
}
.cap-rail-item:after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.cap-rail-item.active {
  background: linear-gradient(180deg, #eef5ff, #fff);
}
.cap-rail-item.active:after {
  transform: scaleX(1);
}
.cap-rail-index {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.capability-detail {
  position: relative;
  display: none;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  padding: 34px;
  align-items: center;
}
.capability-detail.active {
  display: grid;
}
.capability-map {
  position: relative;
  min-height: 310px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #07172f, #123b74);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.capability-map:before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cap-map-node {
  position: absolute;
  min-width: 92px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(7, 23, 47, 0.72);
  text-align: center;
  font-size: 12px;
}
.cap-map-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #07172f;
  font-weight: 700;
  background: radial-gradient(circle, #fff, #99d0ff 45%, #165dff);
  box-shadow: 0 0 50px rgba(22, 93, 255, 0.54);
}
.capability-overview {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f7faff);
  box-shadow: 0 20px 60px rgba(24, 55, 105, 0.1);
  overflow: hidden;
}
.capability-overview:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(22, 93, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 93, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 58%);
  pointer-events: none;
}
.capability-overview-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 34px;
  padding: 34px;
  align-items: stretch;
}
.cap-layer-list {
  display: grid;
  gap: 14px;
}
.cap-layer {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  min-height: 126px;
  padding: 22px;
  border: 1px solid #dce6f5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.cap-layer:hover {
  transform: translateX(4px);
  border-color: rgba(22, 93, 255, 0.34);
  box-shadow: 0 16px 38px rgba(24, 55, 105, 0.1);
}
.cap-layer-index {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(22, 93, 255, 0.24);
}
.cap-service-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.cap-service-matrix span {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 4px;
  background: #eef4ff;
  color: #38506d;
  font-size: 13px;
}
.cap-architecture-card {
  position: relative;
  min-height: 100%;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #07172f, #123b74);
  overflow: hidden;
  padding: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.cap-architecture-card:before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
}
.arch-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.arch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}
.arch-row strong {
  font-weight: 600;
}
.arch-row span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}
.cap-icon {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(135deg, #eef4ff, #fff);
  border: 1px solid #dbe7ff;
  font-size: 24px;
  font-weight: 600;
}
.cap-body {
  position: relative;
  z-index: 1;
  padding: 28px;
}
.cap-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.cap-list li {
  position: relative;
  padding-left: 18px;
}
.cap-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin: 0 6px 8px 0;
  border-radius: 3px;
  color: #38506d;
  background: #f1f5fb;
  font-size: 13px;
}

.solution-section {
  color: #fff;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(22, 93, 255, 0.24),
      transparent 30%
    ),
    linear-gradient(135deg, #061427 0%, #102d5a 54%, #07172f 100%);
}
.solution-layout {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 24px;
  align-items: start;
}
.solution-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.solution-tab {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  min-height: 132px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: left;
}
.solution-tab.active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(22, 93, 255, 0.28);
  transform: translateY(-3px);
}
.solution-tab small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
}
.solution-tab.active small {
  color: rgba(255, 255, 255, 0.78);
}
.product-tab-index {
  display: inline-flex;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.solution-stage {
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  overflow: hidden;
}
.solution-stage .solution-panel {
  display: none !important;
}
.solution-stage .solution-panel.active {
  display: block !important;
}
.product-panel-inner {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 0;
  min-height: 560px;
}
.product-copy {
  padding: 38px;
}
.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.product-feature {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px;
}
.product-screen {
  position: relative;
  min-height: 560px;
  padding: 26px;
  background: linear-gradient(
    180deg,
    rgba(15, 140, 234, 0.18),
    rgba(255, 255, 255, 0.04)
  );
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.product-screen:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
}
.mock-window {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 23, 47, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}
.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}
.mock-body {
  padding: 18px;
  display: grid;
  gap: 12px;
}
.mock-row {
  display: grid;
  grid-template-columns: 88px 1fr 54px;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 5px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.045);
}
.mock-line {
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.58),
    rgba(15, 140, 234, 0.82)
  );
}
.mock-pill {
  height: 20px;
  border-radius: 99px;
  background: rgba(22, 93, 255, 0.82);
}
.solution-visual {
  position: relative;
  min-height: 330px;
  background: linear-gradient(
    135deg,
    rgba(15, 140, 234, 0.28),
    rgba(255, 255, 255, 0.04)
  );
  overflow: hidden;
}
.solution-visual:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}
.orbit {
  position: absolute;
  inset: 72px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}
.core-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 126px;
  height: 126px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #fff, #9ed5ff 42%, #165dff);
  box-shadow: 0 0 46px rgba(22, 93, 255, 0.5);
  display: grid;
  place-items: center;
  color: #07172f;
  font-weight: 700;
}
.mini-node {
  position: absolute;
  min-width: 96px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(7, 23, 47, 0.72);
  color: #dceeff;
  font-size: 12px;
  text-align: center;
}
.ssl-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7faff);
  box-shadow: 0 14px 40px rgba(24, 55, 105, 0.08);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.ssl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(24, 55, 105, 0.14);
}
.ssl-card-head {
  padding: 22px;
  background:
    url("../images/product-ribbon-bg-v1.png") right bottom / 160px auto
      no-repeat,
    linear-gradient(90deg, #eef5ff, #f7faff);
}
.ssl-product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--blue);
  border: 1px solid #c5dafa;
  border-radius: 8px;
  background: #fff;
}
.ssl-product-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}
.check-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  top: 9px;
  border-radius: 50%;
  background: var(--blue);
}
.scan-box {
  border: 1px solid rgba(22, 93, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.scan-input {
  width: 100%;
  height: 46px;
  border: 1px solid #d8e2f2;
  border-radius: 4px;
  padding: 0 14px;
  outline: none;
  background: #fff;
}
.scan-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.12);
}

.eco-path {
  position: relative;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24, 55, 105, 0.09);
}
.path-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding-bottom: 24px;
}
.path-step:not(:last-child):after {
  content: "";
  position: absolute;
  left: 20px;
  top: 42px;
  bottom: 0;
  width: 1px;
  background: #d8e2f2;
}
.path-num {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.cert-tile {
  min-height: 158px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7faff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px 12px;
  text-align: center;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.cert-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(24, 55, 105, 0.12);
}
.cert-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  color: #1760ee;
  background: #eaf3ff;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.cert-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.9;
}
.cert-icon-recognition {
  color: #1760ee;
  background: #e8f1ff;
}
.cert-icon-software {
  color: #2877d7;
  background: #eaf6ff;
}
.cert-icon-maturity {
  color: #315fd2;
  background: #eef1ff;
}
.cert-icon-innovation {
  color: #0d84bb;
  background: #e7f7fb;
}
.cert-icon-iso {
  color: #177e9d;
  background: #e7f8f6;
}
.cert-icon-security {
  color: #4257c7;
  background: #eef0ff;
}
.cert-tile:hover .cert-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 20px rgba(26, 96, 210, 0.16);
}

.case-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(24, 55, 105, 0.07);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(24, 55, 105, 0.12);
}
.service-loop {
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #07172f, #113466);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(7, 23, 47, 0.22);
}
.loop-step {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  padding: 18px;
}
.news-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(24, 55, 105, 0.07);
}
.news-card-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e4e9f0;
}
.news-card img {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card:hover img {
  transform: scale(1.06);
}
.news-card-category {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px 13px;
  color: #fff;
  background: #1760ee;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
}
.news-card-title {
  display: -webkit-box;
  min-height: 3.5em;
  margin: 0;
  overflow: hidden;
  color: #1c2d45;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.cta-section {
  color: #fff;
  background: url("../images/solutions-deep-blue-v1.png") center bottom / cover
    no-repeat;
}
.site-footer {
  position: relative;
  background: #fff;
}
.site-footer:before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  opacity: 0.05;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(83, 158, 255, 0.75),
    transparent 66%
  );
  pointer-events: none;
}
.backtop {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 95;
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(22, 93, 255, 0.3);
  cursor: pointer;
}

/* Section headers */
.about-page main section header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.about-page main section header > p {
  margin: 0 0 12px;
  color: var(--about-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.about-page main section header h2 {
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(29px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
}
.about-page main section header > span {
  display: block;
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.8;
}

undefined @media (max-width: 768px) {
  .section-pad {
    padding: 62px 0;
  }
  .site-header {
    height: 64px;
  }
  .nav-phone {
    display: none;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-desc {
    font-size: 16px;
    line-height: 1.75;
  }
  .hero-content {
    padding: 104px 0 94px;
  }
  .hero-console {
    display: none;
  }
  .trust-strip {
    margin-top: -34px;
  }
  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .trust-item:last-child {
    border-bottom: 0;
  }
  .capability-detail {
    padding: 24px;
  }
  .capability-map {
    min-height: 240px;
  }
  .solution-stage {
    min-height: auto;
  }
  .solution-visual {
    min-height: 260px;
  }
  .core-node {
    width: 104px;
    height: 104px;
  }
  .mini-node {
    min-width: 82px;
    font-size: 11px;
  }
  .product-copy {
    padding: 26px;
  }
  .product-feature-grid {
    grid-template-columns: 1fr;
  }
}
/* Homepage redesign: capability blueprint + software product workspace */
.trust-strip {
  margin-top: -58px;
  padding-bottom: 74px;
}
.trust-box {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 54px rgba(13, 42, 84, 0.13);
}
.capability-overview {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  overflow: visible;
}
.capability-overview:before {
  display: none;
}
.capability-overview-inner {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 0;
  padding: 0;
  border-top: 1px solid #cfd9e8;
  border-bottom: 1px solid #cfd9e8;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 66%,
    #f1f6ff 66%,
    #edf4ff 100%
  );
}
.cap-layer-list {
  gap: 0;
}
.cap-layer {
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  min-height: 150px;
  padding: 27px 34px;
  border: 0;
  border-bottom: 1px solid #d9e2ef;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.cap-layer:last-child {
  border-bottom: 0;
}
.cap-layer:hover {
  transform: none;
  border-color: #d9e2ef;
  background: rgba(22, 93, 255, 0.028);
  box-shadow: inset 3px 0 0 var(--blue);
}
.cap-layer-index {
  width: 58px;
  height: auto;
  min-height: 58px;
  border: 1px solid rgba(22, 93, 255, 0.34);
  border-radius: 0;
  color: var(--blue);
  background: #fff;
  box-shadow: none;
  font-size: 16px;
}
.cap-service-matrix {
  margin-top: 17px;
}
.cap-service-matrix span {
  border-radius: 0;
  background: #f1f5fb;
  color: #405578;
}
.cap-architecture-card {
  min-height: 100%;
  padding: 34px 28px;
  border: 0;
  border-left: 1px solid #cfdbeb;
  border-radius: 0;
  color: #112c58;
  background: transparent;
  box-shadow: none;
}
.cap-architecture-card:before {
  opacity: 0.24;
}
.cap-architecture-card .text-white\/54 {
  color: #4c75ae !important;
}
.cap-architecture-card .text-white\/68 {
  color: #526a8d !important;
}
.cap-architecture-card h3 {
  color: #102c59;
}
.arch-stack {
  margin-top: 28px;
  gap: 0;
}
.arch-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 16px 0;
  border-bottom: 1px solid #cbd9eb;
  border-radius: 0;
  background: transparent;
}
.arch-row strong {
  color: var(--blue);
  font-size: 14px;
}
.arch-row span {
  color: #48658d;
  font-size: 13px;
}

.solution-section {
  position: relative;
  background: #071c3b;
}
.solution-section:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.solution-section .container-main {
  position: relative;
  z-index: 1;
}
.solution-layout {
  grid-template-columns: 296px minmax(0, 1fr);
  gap: 46px;
}
.solution-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}
.solution-tab {
  position: relative;
  min-height: 88px;
  padding: 15px 26px 15px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  box-shadow: none;
}
.solution-tab:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: #57a5ff;
  transition: width 0.24s ease;
}
.solution-tab:hover {
  color: #fff;
  background: transparent;
}
.solution-tab.active {
  transform: none;
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.19);
  box-shadow: none;
}
.solution-tab.active:after {
  width: 100%;
}
.solution-tab small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
}
.solution-tab.active small {
  color: rgba(255, 255, 255, 0.68);
}
.product-tab-index {
  margin-bottom: 6px;
  color: #79b9ff;
  font-size: 11px;
  letter-spacing: 1.3px;
}
.solution-stage {
  min-height: 520px;
  border: 1px solid rgba(144, 192, 255, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 24px 24px 0 rgba(58, 139, 255, 0.11);
  backdrop-filter: none;
  overflow: visible;
}
.product-panel-inner {
  min-height: 520px;
  grid-template-columns: minmax(0, 1fr) 370px;
}
.product-copy {
  padding: 42px;
}
.product-copy h3 {
  letter-spacing: 0;
}
.product-feature-grid {
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.product-feature {
  padding: 16px 14px 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
}
.product-feature:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding-right: 16px;
}
.product-feature:nth-child(even) {
  padding-left: 16px;
}
.product-screen {
  min-height: 520px;
  padding: 30px;
  border-left: 1px solid rgba(144, 192, 255, 0.24);
  background: linear-gradient(
    150deg,
    rgba(43, 137, 255, 0.28),
    rgba(16, 54, 108, 0.15)
  );
}
.product-screen:before {
  inset: 20px;
  border-color: rgba(255, 255, 255, 0.1);
}
.mock-window {
  border-radius: 2px;
}
.solution-tab:focus-visible {
  outline: 2px solid #8bc4ff;
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .trust-strip {
    margin-top: -36px;
    padding-bottom: 58px;
  }
  .capability-overview-inner {
    grid-template-columns: 1fr;
  }
  .cap-architecture-card {
    border-left: 0;
    border-top: 1px solid #cfdbeb;
  }
  .solution-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .solution-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
  }
  .solution-tab {
    min-height: 92px;
    padding-right: 0;
  }
  .product-panel-inner {
    grid-template-columns: 1fr;
  }
  .product-screen {
    min-height: 360px;
    border-left: 0;
    border-top: 1px solid rgba(144, 192, 255, 0.24);
  }
}
@media (max-width: 768px) {
  .cap-layer {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 0;
  }
  .cap-layer-index {
    width: 42px;
    min-height: 42px;
    font-size: 13px;
  }
  .cap-layer h3 {
    font-size: 21px;
  }
  .cap-architecture-card {
    padding: 28px 0;
  }
  .solution-tabs {
    grid-template-columns: 1fr;
  }
  .solution-stage {
    box-shadow: 12px 12px 0 rgba(58, 139, 255, 0.11);
  }
  .product-copy {
    padding: 28px 24px;
  }
  .product-screen {
    padding: 20px;
  }
  .product-feature:nth-child(odd) {
    border-right: 0;
    padding-right: 0;
  }
  .product-feature:nth-child(even) {
    padding-left: 0;
  }
}

/* SSL checker result dashboard */
.sslcheck-result-grade {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-left: auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
}
.sslcheck-report-label {
  display: block;
  margin-bottom: 5px;
  color: var(--sck-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.sslcheck-report-layout {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 28px;
}
.sslcheck-report-nav {
  align-self: start;
  position: sticky;
  top: 96px;
  display: grid;
  gap: 4px;
  padding: 7px;
  background: #f4f8fd;
  border: 1px solid var(--sck-line);
  border-radius: 8px;
}
.sslcheck-report-nav a {
  display: block;
  padding: 11px 12px;
  color: var(--sck-muted);
  border-radius: 5px;
  font-size: 13px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.sslcheck-report-nav a:hover,
.sslcheck-report-nav a.is-active {
  color: var(--sck-blue);
  background: #fff;
  box-shadow: 0 4px 14px rgba(22, 93, 255, 0.08);
}
.sslcheck-report-content {
  min-width: 0;
}
.sslcheck-report-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--sck-line);
  scroll-margin-top: 96px;
}
.sslcheck-report-section:first-child {
  margin-top: 0;
}
.sslcheck-report-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.sslcheck-report-section-head > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--sck-blue);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}
.sslcheck-report-section-head p {
  margin: 0 0 3px;
  color: var(--sck-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.sslcheck-report-section-head h2 {
  margin: 0;
  color: var(--sck-ink);
  font-size: 20px;
}
.sslcheck-certificate-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--sck-line);
  border-radius: 8px;
  background: var(--sck-line);
}
.sslcheck-certificate-summary > div {
  display: grid;
  gap: 6px;
  min-height: 74px;
  padding: 15px 17px;
  background: #fff;
}
.sslcheck-certificate-summary span {
  color: var(--sck-muted);
  font-size: 12px;
}
.sslcheck-certificate-summary b {
  overflow: hidden;
  color: var(--sck-ink);
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .sslcheck-report-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sslcheck-report-nav {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sslcheck-report-nav a {
    padding: 9px 5px;
    text-align: center;
    font-size: 12px;
  }
  .sslcheck-certificate-summary {
    grid-template-columns: 1fr;
  }
}
.sslcheck-result-overview {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 20px;
  background: linear-gradient(135deg, #f1f6ff, #fbfdff);
  border: 1px solid var(--sck-line);
  border-radius: 8px;
}
.sslcheck-score-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
  border-right: 1px solid var(--sck-line);
}
.sslcheck-score-panel span,
.sslcheck-score-panel small {
  color: var(--sck-muted);
  font-size: 12px;
}
.sslcheck-score-panel strong {
  margin: 5px 0 2px;
  font-size: 44px;
  line-height: 1;
}
.sslcheck-result-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}
.sslcheck-result-meta span,
.sslcheck-result-meta b {
  display: block;
}
.sslcheck-result-meta span {
  color: var(--sck-muted);
  font-size: 13px;
  line-height: 1.7;
}
.sslcheck-result-meta b {
  color: var(--sck-ink);
  font-size: 12px;
  font-weight: 600;
}
.sslcheck-result-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sslcheck-result-grid > article {
  min-height: 184px;
  padding: 20px;
  background: var(--sck-pale);
  border-radius: 8px;
}
.sslcheck-result-grid > article h3,
.sslcheck-diagnosis h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--sck-ink);
  font-size: 16px;
  font-weight: 700;
}
.sslcheck-result-grid > article h3 svg,
.sslcheck-diagnosis h3 svg {
  width: 19px;
  height: 19px;
  color: var(--sck-blue);
}
.sslcheck-status-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 12px;
  align-items: center;
  margin: 10px 0;
  color: var(--sck-muted);
  font-size: 13px;
}
.sslcheck-status-row span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sslcheck-status-row b {
  font-size: 13px;
  font-weight: 700;
}
.sslcheck-progress {
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
  border-radius: 99px;
  background: #dbe6f5;
}
.sslcheck-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
}
.sslcheck-result-grid > article p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0;
  color: var(--sck-muted);
  font-size: 13px;
}
.sslcheck-result-grid > article p b {
  color: var(--sck-ink);
  font-weight: 600;
  text-align: right;
}
.sslcheck-result-grid > article small {
  display: block;
  margin-top: 13px;
  color: #8396b2;
  font-size: 12px;
  line-height: 1.6;
}
.sslcheck-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 150px;
  color: var(--sck-muted);
}
.sslcheck-loading svg {
  width: 22px;
  height: 22px;
  color: var(--sck-blue);
  animation: sslcheck-spin 0.9s linear infinite;
}
@keyframes sslcheck-spin {
  to {
    transform: rotate(360deg);
  }
}
.sslcheck-submit.is-loading {
  opacity: 0.72;
  cursor: wait;
}
.sslcheck-diagnosis,
.sslcheck-recommendation {
  margin-top: 18px;
  padding: 22px;
  border-radius: 8px;
}
.sslcheck-diagnosis {
  background: #fffaf0;
  border: 1px solid #f3dfae;
}
.sslcheck-diagnosis h3 {
  color: #8a5b00;
}
.sslcheck-diagnosis h3 svg {
  color: #d97706;
}
.sslcheck-diagnosis ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #7a6748;
  font-size: 13px;
  line-height: 1.7;
}
.sslcheck-recommendation {
  background: #f1f6ff;
  border: 1px solid #d6e5fb;
}
.sslcheck-recommendation-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.sslcheck-recommendation-head p {
  margin: 0 0 5px;
  color: var(--sck-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.sslcheck-recommendation-head h3 {
  margin: 0;
  color: var(--sck-ink);
  font-size: 19px;
}
.sslcheck-recommendation-head > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--sck-blue);
  font-size: 13px;
}
.sslcheck-recommendation-head > a svg,
.sslcheck-product-mini em svg {
  width: 15px;
  height: 15px;
}
.sslcheck-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.sslcheck-product-mini {
  display: flex;
  flex-direction: column;
  min-height: 126px;
  padding: 17px;
  background: #fff;
  border: 1px solid #dbe7f7;
  border-radius: 6px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.sslcheck-product-mini:hover {
  border-color: #83b5f5;
  box-shadow: 0 10px 24px rgba(22, 93, 255, 0.1);
  transform: translateY(-2px);
}
.sslcheck-product-mini b {
  color: var(--sck-ink);
  font-size: 15px;
}
.sslcheck-product-mini span {
  margin-top: 7px;
  color: var(--sck-muted);
  font-size: 12px;
}
.sslcheck-product-mini em {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  color: var(--sck-blue);
  font-size: 12px;
  font-style: normal;
}
.sslcheck-recommendation-empty {
  margin: 0;
  color: var(--sck-muted);
  font-size: 13px;
}
@media (max-width: 768px) {
  .sslcheck-form-section {
    overflow: hidden;
  }
  .sslcheck-form-wrap,
  .sslcheck-form-section .scan-box,
  .sslcheck-result {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .sslcheck-result {
    padding: 16px;
    overflow: hidden;
  }
  .sslcheck-result-head {
    gap: 9px;
  }
  .sslcheck-result-head b {
    font-size: 17px;
  }
  .sslcheck-report-nav {
    width: 100%;
    box-sizing: border-box;
  }
  .sslcheck-report-nav a {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .sslcheck-input-row {
    width: 100%;
    max-width: 100%;
  }
  .sslcheck-input-row > * {
    min-width: 0;
    box-sizing: border-box;
    flex-basis: 100%;
  }
  .sslcheck-form-section .scan-input {
    width: 100%;
    flex: 0 0 100%;
  }
  .sslcheck-result-overview {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sslcheck-score-panel {
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid var(--sck-line);
  }
  .sslcheck-result-meta {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .sslcheck-result-grid,
  .sslcheck-recommendation-grid {
    grid-template-columns: 1fr;
  }
  .sslcheck-result-head {
    align-items: flex-start;
  }
  .sslcheck-result-grade {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  .sslcheck-recommendation-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Service support refinement: a clear delivery path with restrained visual weight. */
.support-page .support-hero-v2 {
  min-height: 600px;
  background: #061b38;
}
.support-page .support-hero-v2-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #061b38;
}
.support-page .support-hero-v2-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(3, 18, 43, 0.94) 0%,
    rgba(4, 30, 67, 0.78) 48%,
    rgba(3, 17, 39, 0.52) 100%
  );
}
.support-page .support-hero-v2-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}
.support-page .support-hero-v2::before,
.support-page .support-hero-v2::after {
  display: none;
}
.support-page .support-hero.support-hero-v2 .container-main {
  display: grid;
  flex-direction: initial;
  justify-content: initial;
  max-width: 1440px;
  min-height: 600px;
  margin: 0 auto;
  text-align: left;
}
.support-page .support-hero-v2-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 72px;
  max-width: 1440px;
  min-height: 600px;
  padding-top: 92px;
  padding-bottom: 70px;
  text-align: left;
}
.support-page .support-hero-v2-copy {
  max-width: 720px;
}
.support-page .support-hero-v2 .support-hero-eyebrow {
  color: #8fc5ff;
}
.support-page .support-hero-v2 h1 {
  color: #fff !important;
  font-size: clamp(38px, 4vw, 54px);
  letter-spacing: -0.03em;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.18);
}
.support-page .support-hero-v2 .support-hero-summary {
  margin-left: 0;
  color: rgba(234, 243, 255, 0.86);
  font-size: 17px;
}
.support-page .support-hero-v2 .support-hero-actions {
  justify-content: flex-start;
}
.support-page .support-hero-v2-proof {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  padding: 1px;
  background: rgba(111, 153, 211, 0.34);
}
.support-page .support-hero-v2-proof span {
  display: grid;
  gap: 7px;
  padding: 22px 24px;
  background: rgba(4, 25, 56, 0.72);
  border-left: 3px solid rgba(143, 197, 255, 0.42);
  border-right: 1px solid rgba(152, 199, 255, 0.18);
}
.support-page .support-hero-v2-proof span:first-child {
  border-left-color: #2f82ff;
}
.support-page .support-hero-v2-proof b {
  color: #fff;
  font-size: 18px;
}
.support-page .support-hero-v2-proof small {
  color: rgba(222, 237, 255, 0.72);
  font-size: 13px;
}
.support-page .support-hero-v2 .support-hero-actions a.primary {
  background: #1f6cff;
  box-shadow: 0 14px 30px rgba(0, 74, 190, 0.28);
}
.support-page .support-hero-v2 .support-hero-actions a.secondary {
  color: #e9f3ff;
  border-color: rgba(199, 225, 255, 0.56);
}
.support-page .support-hero-v2 .support-hero-actions a.secondary:hover {
  color: #082857;
  background: #fff;
  border-color: #fff;
}
.support-page .support-process-v2 {
  padding: 106px 0 112px;
  background: #f6f9fd;
}
.support-page .support-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.support-page .support-process-line {
  display: none;
}
.support-page .support-process-track article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  min-height: 196px;
  padding: 0 14px 22px;
  background: rgba(247, 251, 255, 0.82);
  border: 1px solid #d5e2f1;
  border-radius: 6px;
}
.support-page .support-process-track article::before {
  display: block;
  width: 16px;
  height: 16px;
  margin: 23px 0 22px 0;
  content: "";
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--support-blue);
  box-shadow: 0 0 0 1px #9fc1ed;
}
.support-page .support-process-track article:not(:last-child)::after {
  position: absolute;
  top: 30px;
  right: -17px;
  width: 17px;
  height: 1px;
  content: "";
  background: #b8cfea;
}
.support-page .support-process-track .support-process-num {
  position: absolute;
  top: 0;
  right: 10px;
  color: #b8cae2;
  font-size: 13px;
}
.support-page .support-process-track article i {
  width: 24px;
  height: 24px;
  margin-bottom: 18px;
  color: var(--support-blue);
}
.support-page .support-process-track article i svg {
  width: 24px !important;
  height: 24px !important;
}
.support-page .support-process-track article h3 {
  margin: 0 0 7px;
  font-size: 18px;
}
.support-page .support-process-track article p {
  margin: 0 0 14px;
  color: var(--support-muted);
  font-size: 13px;
}
.support-page .support-process-track article b {
  color: var(--support-blue);
  font-size: 13px;
  font-weight: 600;
}
.support-page .support-process-track article:hover::before {
  background: #fff;
  box-shadow:
    0 0 0 5px rgba(22, 93, 255, 0.12),
    0 0 0 1px var(--support-blue);
}
.support-page .support-capabilities {
  padding: 106px 0 112px;
  background: #eaf2fc;
}
.support-page .support-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.support-page .support-capability-grid a {
  position: relative;
  display: grid;
  gap: 24px;
  min-height: 190px;
  padding: 26px 24px;
  color: var(--support-ink);
  background: #fff;
  border: 1px solid var(--support-line);
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.support-page .support-capability-grid a:hover {
  border-color: #8bb5ec;
  box-shadow: 0 18px 34px rgba(22, 93, 255, 0.1);
  transform: translateY(-3px);
}
.support-page .support-capability-grid a > i {
  width: 30px;
  height: 30px;
  color: var(--support-blue);
}
.support-page .support-capability-grid a > span {
  display: grid;
  gap: 8px;
}
.support-page .support-capability-grid b {
  font-size: 18px;
}
.support-page .support-capability-grid small {
  color: var(--support-muted);
  font-size: 13px;
  line-height: 1.7;
}
.support-page .support-assurance-v2 {
  padding: 106px 0 112px;
  background: #fff;
}
.support-page .support-assurance-v2 .support-trust-grid {
  margin-bottom: 40px;
  padding: 0;
  border-top: 1px solid var(--support-line);
  border-bottom: 1px solid var(--support-line);
}
.support-page .support-assurance-v2 .support-trust-item {
  flex: 1;
  min-width: 180px;
  border-right: 1px solid var(--support-line);
}
.support-page .support-assurance-v2 .support-trust-item:last-child {
  border-right: 0;
}
.support-page .support-cert-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  color: var(--support-muted);
  font-size: 13px;
}
.support-page .support-cert-list span::before {
  margin-right: 8px;
  content: "✓";
  color: var(--support-blue);
  font-weight: 700;
}
.support-page .support-cta {
  background: linear-gradient(110deg, #0a2d60, #165dff);
}

/* Centered service entry tiles. */
.support-page .support-capability-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 220px;
  text-align: center;
}
.support-page .support-capability-grid a > i {
  width: 52px;
  height: 52px;
  color: var(--support-blue);
}
.support-page .support-capability-grid a > i svg {
  width: 52px !important;
  height: 52px !important;
}
.support-page .support-capability-grid a > span {
  justify-items: center;
  gap: 7px;
}
.support-page .support-capability-grid b {
  font-size: 19px;
}
.support-page .support-capability-grid small {
  max-width: 220px;
}

/* Keep service entry icons consistent with the About organization system. */
.support-page .support-capability-grid a {
  gap: 18px;
}
.support-page .support-capability-grid a .support-capability-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  color: var(--support-blue);
}
.support-page .support-capability-grid a .support-capability-icon svg {
  width: 36px !important;
  height: 36px !important;
}
.support-page .support-capability-grid a > span:not(.support-capability-icon) {
  display: grid;
  justify-items: center;
  gap: 7px;
}

/* Delivery path: continuous desktop rail, snake layout on tablet, vertical rail on mobile. */
.support-page .support-process-track {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
}
.support-page .support-process-track::before {
  position: absolute;
  top: 49px;
  right: 7%;
  left: 7%;
  height: 1px;
  content: "";
  background: #b8cfea;
}
.support-page .support-process-track article {
  min-height: 214px;
  padding: 0 14px 24px;
  background: #f7fbff;
  border: 1px solid #d5e2f1;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(22, 93, 255, 0.035);
}
.support-page .support-process-track article::before {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  margin: 23px 0 22px;
  border: 4px solid #f7fbff;
  box-shadow: 0 0 0 1px #8eb7e9;
}
.support-page .support-process-track article:not(:last-child)::after {
  display: none;
}
.support-page .support-process-track article h3 {
  font-size: 18px;
}
.support-page .support-process-track article p {
  min-height: 42px;
  margin-bottom: 12px;
  line-height: 1.65;
}
.support-page .support-process-track article b {
  display: block;
  padding-top: 10px;
  color: #4f6e93;
  border-top: 1px solid #dbe7f4;
  font-size: 12px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .support-page .support-process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 16px;
  }
  .support-page .support-process-track::before {
    display: none;
  }
  .support-page .support-process-track article:nth-of-type(4) {
    grid-column: 3;
    grid-row: 2;
  }
  .support-page .support-process-track article:nth-of-type(5) {
    grid-column: 2;
    grid-row: 2;
  }
  .support-page .support-process-track article:nth-of-type(6) {
    grid-column: 1;
    grid-row: 2;
  }
}
@media (max-width: 768px) {
  .support-page .support-hero-v2 {
    background-position: 64% center;
  }
  .support-page .support-hero-v2-media img {
    object-position: 64% center;
  }
  .support-page .support-process-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4px 0 4px 34px;
  }
  .support-page .support-process-track::before {
    display: block;
    top: 16px;
    right: auto;
    bottom: 16px;
    left: 13px;
    width: 1px;
    height: auto;
  }
  .support-page .support-process-track article,
  .support-page .support-process-track article:nth-of-type(4),
  .support-page .support-process-track article:nth-of-type(5),
  .support-page .support-process-track article:nth-of-type(6) {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    margin-bottom: 12px;
    padding: 18px 18px 18px 24px;
  }
  .support-page .support-process-track article::before {
    position: absolute;
    top: 24px;
    left: -30px;
    margin: 0;
  }
  .support-page .support-process-track article p {
    min-height: 0;
  }
  .support-page .support-process-track .support-process-num {
    top: 16px;
    right: 16px;
  }
}
@media (max-width: 1024px) {
  .support-page .support-hero-v2-inner {
    grid-template-columns: 1fr 280px;
    gap: 36px;
  }
  .support-page .support-process-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
  }
  .support-page .support-process-line {
    display: none;
  }
  .support-page .support-process-track article:nth-of-type(3)::after,
  .support-page .support-process-track article:nth-of-type(6)::after {
    display: none;
  }
  .support-page .support-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .support-page .support-hero-v2,
  .support-page .support-hero-v2-inner {
    min-height: 0;
  }
  .support-page .support-hero.support-hero-v2 .container-main {
    display: block;
    min-height: 0;
  }
  .support-page .support-hero-v2-inner {
    display: block;
    padding-top: 112px;
    padding-bottom: 64px;
  }
  .support-page .support-hero-v2 h1 {
    font-size: 35px;
  }
  .support-page .support-hero-v2 .support-hero-summary {
    font-size: 15px;
  }
  .support-page .support-hero-v2-proof {
    margin-top: 44px;
  }
  .support-page .support-process-v2,
  .support-page .support-capabilities,
  .support-page .support-assurance-v2 {
    padding: 74px 0;
  }
  .support-page .support-process-track {
    grid-template-columns: 1fr 1fr;
    gap: 18px 10px;
  }
  .support-page .support-process-track article {
    min-height: 176px;
    padding-left: 8px;
  }
  .support-page .support-process-track article::after {
    display: none;
  }
  .support-page .support-capability-grid {
    grid-template-columns: 1fr;
  }
  .support-page .support-assurance-v2 .support-trust-item {
    min-width: 50%;
    border-right: 0;
  }
  .support-page .support-cert-list {
    justify-content: flex-start;
    gap: 12px 22px;
  }
}
@media (max-width: 768px) {
  .support-page .support-process-v2 .support-process-track {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4px 0 4px 34px;
  }
  .support-page .support-process-v2 .support-process-track article,
  .support-page
    .support-process-v2
    .support-process-track
    article:nth-of-type(4),
  .support-page
    .support-process-v2
    .support-process-track
    article:nth-of-type(5),
  .support-page
    .support-process-v2
    .support-process-track
    article:nth-of-type(6) {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    margin-bottom: 12px;
    padding: 18px 18px 18px 24px;
  }
  .support-page .support-process-v2 .support-process-track article::after {
    display: none;
  }
  .support-page .support-process-v2 .support-process-track article::before {
    position: absolute;
    top: 24px;
    left: -30px;
    margin: 0;
  }
}

/* Process reference layout: numbered nodes and a quiet dashed service line. */
.support-page .support-process-v2 {
  padding: 92px 0 106px;
  background: #fff;
}
.support-page .support-process-v2 main section header,
.support-page .support-process-v2 > .container-main > header {
  max-width: 920px;
  margin-bottom: 58px;
}
.support-page .support-process-v2 > .container-main > header h2 {
  color: #102a4d;
  font-size: clamp(28px, 3vw, 38px);
}
.support-page .support-process-v2 > .container-main > header > span {
  max-width: 760px;
}
.support-page .support-process-track-reference {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
}
.support-page .support-process-track-reference::before {
  display: none;
}
.support-page .support-process-track-reference .support-process-line {
  position: absolute;
  z-index: 0;
  top: 30px;
  right: 10%;
  left: 10%;
  display: block;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    #b7c8de 0 4px,
    transparent 4px 8px
  );
}
.support-page .support-process-track-reference article,
.support-page .support-process-track-reference article:nth-of-type(4),
.support-page .support-process-track-reference article:nth-of-type(5),
.support-page .support-process-track-reference article:nth-of-type(6) {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 0;
  padding: 0 6px;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.support-page .support-process-track-reference article::before,
.support-page .support-process-track-reference article::after {
  display: none;
}
.support-page .support-process-track-reference .support-process-num {
  position: relative;
  top: auto;
  right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 26px;
  color: #284a73;
  background: #fff;
  border: 1px solid #e1e9f3;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(33, 66, 106, 0.12);
  font-size: 22px;
  font-weight: 400;
}
.support-page .support-process-track-reference article h3 {
  margin: 0 0 12px;
  color: #18395f;
  font-size: 17px;
  font-weight: 700;
}
.support-page .support-process-track-reference article p {
  min-height: 50px;
  margin: 0;
  color: #526b8b;
  font-size: 13px;
  line-height: 1.8;
}
.support-page
  .support-process-track-reference
  article:hover
  .support-process-num {
  color: #fff;
  background: var(--support-blue);
  border-color: var(--support-blue);
  box-shadow: 0 14px 28px rgba(22, 93, 255, 0.22);
}
@media (max-width: 1024px) {
  .support-page .support-process-track-reference {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }
  .support-page .support-process-track-reference .support-process-line {
    right: 8%;
    left: 8%;
  }
}
@media (max-width: 768px) {
  .support-page .support-process-v2 {
    padding: 72px 0 78px;
  }
  .support-page .support-process-track-reference {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 0 38px;
  }
  .support-page .support-process-track-reference .support-process-line {
    top: 30px;
    right: auto;
    bottom: 30px;
    left: 29px;
    width: 1px;
    height: auto;
    background: repeating-linear-gradient(
      180deg,
      #b7c8de 0 4px,
      transparent 4px 8px
    );
  }
  .support-page .support-process-track-reference article,
  .support-page .support-process-track-reference article:nth-of-type(4),
  .support-page .support-process-track-reference article:nth-of-type(5) {
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 20px;
    align-items: center;
    min-height: 126px;
    padding: 0;
    text-align: left;
  }
  .support-page .support-process-track-reference .support-process-num {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
  }
  .support-page .support-process-track-reference article h3 {
    grid-column: 2;
    margin: 0 0 6px;
  }
  .support-page .support-process-track-reference article p {
    grid-column: 2;
    min-height: 0;
    margin: 0;
  }
}
/* 2026 homepage direction: reference-led hero, product portfolio and solution architecture */
.legacy-hero,
.legacy-trust-strip,
#legacy-capability,
#legacy-solutions {
  display: none !important;
}
.jz-hero-carousel {
  position: relative;
  min-height: clamp(640px, 52vw, 760px);
  overflow: hidden;
  background: #edf5ff;
}
.jz-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.42s ease,
    visibility 0.42s ease;
  background: var(--jz-hero-image) center / cover no-repeat;
}
.jz-hero-slide.active {
  opacity: 1;
  visibility: visible;
}
.jz-hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 250, 255, 0.98) 0%,
    rgba(245, 250, 255, 0.9) 35%,
    rgba(245, 250, 255, 0.06) 70%
  );
}
.jz-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(640px, 52vw, 760px);
}
.jz-hero-copy {
  width: min(600px, 54%);
  padding-bottom: 54px;
}
.jz-hero-label,
.jz-section-kicker {
  margin: 0 0 17px;
  color: #1760ee;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}
.jz-hero-copy :is(h1, h2) {
  max-width: 600px;
  margin: 0;
  color: #0b1d3b;
  font-size: clamp(40px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}
.jz-hero-text {
  max-width: 525px;
  margin: 24px 0 0;
  color: #4e6280;
  font-size: 18px;
  line-height: 1.85;
}
.jz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.jz-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  height: 48px;
  padding: 0 24px;
  color: #fff;
  background: #1760ee;
  font-size: 15px;
  transition:
    transform 0.22s ease,
    background 0.22s ease;
}
.jz-hero-actions a:hover {
  transform: translateY(-2px);
  background: #0c4ed3;
}
.jz-hero-actions .is-outline {
  border: 1px solid #9ab3d5;
  color: #173763;
  background: rgba(255, 255, 255, 0.54);
}
.jz-hero-float {
  position: absolute;
  right: 2%;
  bottom: 146px;
  z-index: 1;
  display: flex;
  gap: 8px;
}
.jz-hero-float span {
  padding: 10px 14px;
  border: 1px solid rgba(20, 88, 193, 0.19);
  color: #2e65aa;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  box-shadow: 0 12px 26px rgba(39, 91, 164, 0.08);
}
.jz-hero-controls {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 72px;
  left: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  width: max-content;
  min-width: 0;
  transform: translateX(-50%);
}
.jz-hero-controls button {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.jz-hero-control-number {
  position: absolute;
  top: -17px;
  color: #5d7799;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 1.2px;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    color 0.28s ease;
}
.jz-hero-control-track {
  position: relative;
  display: block;
  width: 14px;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(38, 91, 155, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    box-shadow 0.28s ease;
}
.jz-hero-control-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1760ee, #53c7ff);
}
.jz-hero-controls button:hover .jz-hero-control-track {
  width: 18px;
  background: rgba(23, 96, 238, 0.52);
}
.jz-hero-controls button.active .jz-hero-control-number {
  color: #1760ee;
  opacity: 1;
  transform: translateY(0);
}
.jz-hero-controls button.active .jz-hero-control-track {
  width: 32px;
  height: 6px;
  background: rgba(23, 96, 238, 0.16);
  box-shadow: 0 7px 18px rgba(23, 96, 238, 0.18);
}
.jz-hero-controls button.active .jz-hero-control-track i {
  animation: jz-hero-pagination 6.2s linear both;
}
.jz-hero-slide .jz-hero-image {
  transform: scale(1.025);
  transition:
    transform 0.72s ease-out,
    filter 0.72s ease-out;
  will-change: transform;
}
.jz-hero-slide.active .jz-hero-image {
  animation: jz-hero-media-drift 7.4s cubic-bezier(0.15, 0.65, 0.25, 1) both;
}
.jz-hero-slide:before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(
    112deg,
    transparent 28%,
    rgba(255, 255, 255, 0.24) 49%,
    transparent 69%
  );
  transform: translateX(-58%);
  pointer-events: none;
}
.jz-hero-slide.active:before {
  animation: jz-hero-light-sweep 2.4s 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes jz-hero-pagination {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes jz-hero-media-drift {
  from {
    transform: scale(1.025) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.075) translate3d(-0.8%, -0.35%, 0);
  }
}
@keyframes jz-hero-light-sweep {
  0% {
    opacity: 0;
    transform: translateX(-58%);
  }
  18% {
    opacity: 0.76;
  }
  72% {
    opacity: 0.22;
  }
  100% {
    opacity: 0;
    transform: translateX(62%);
  }
}
.jz-hero-slide .jz-hero-copy.animate__animated {
  animation: none;
}
.jz-hero-slide .jz-hero-label,
.jz-hero-slide .jz-hero-copy :is(h1, h2),
.jz-hero-slide .jz-hero-text,
.jz-hero-slide .jz-hero-actions,
.jz-hero-slide .jz-hero-float span {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.42s ease,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.jz-hero-slide .jz-hero-float span {
  transform: translate3d(0, 16px, 0);
}
.jz-hero-slide.active .jz-hero-label,
.jz-hero-slide.active .jz-hero-copy :is(h1, h2),
.jz-hero-slide.active .jz-hero-text,
.jz-hero-slide.active .jz-hero-actions,
.jz-hero-slide.active .jz-hero-float span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.jz-hero-slide.active .jz-hero-label {
  transition-delay: 0.06s;
}
.jz-hero-slide.active .jz-hero-copy :is(h1, h2) {
  transition-delay: 0.13s;
}
.jz-hero-slide.active .jz-hero-text {
  transition-delay: 0.23s;
}
.jz-hero-slide.active .jz-hero-actions {
  transition-delay: 0.33s;
}
.jz-hero-slide.active .jz-hero-float span:nth-child(1) {
  transition-delay: 0.35s;
}
.jz-hero-slide.active .jz-hero-float span:nth-child(2) {
  transition-delay: 0.42s;
}
.jz-hero-slide.active .jz-hero-float span:nth-child(3) {
  transition-delay: 0.49s;
}
@media (prefers-reduced-motion: reduce) {
  .jz-hero-slide .jz-hero-label,
  .jz-hero-slide .jz-hero-copy :is(h1, h2),
  .jz-hero-slide .jz-hero-text,
  .jz-hero-slide .jz-hero-actions,
  .jz-hero-slide .jz-hero-float span,
  .jz-hero-controls button,
  .jz-hero-control-number,
  .jz-hero-control-track {
    transition: none;
  }
  .jz-hero-controls button.active .jz-hero-control-track i,
  .jz-hero-slide.active .jz-hero-image,
  .jz-hero-slide.active:before {
    animation: none;
  }
  .jz-hero-controls button.active .jz-hero-control-track i {
    width: 100%;
  }
}
.jz-core-strip {
  position: relative;
  z-index: 4;
  margin-top: -48px;
}
.jz-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(290px, 1.22fr);
  min-height: 126px;
  overflow: hidden;
  border: 1px solid #dce7f3;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(18, 55, 105, 0.14);
}
.jz-core-item,
.jz-core-contact {
  position: relative;
  display: block;
  min-width: 0;
  padding: 22px 42px 20px 26px;
  color: #1b3150;
  border-right: 1px solid #e1e9f2;
  transition: background 0.22s ease;
}
.jz-core-item > span,
.jz-core-contact > span {
  display: block;
  margin-bottom: 9px;
  color: #7a8ba2;
  font-size: 12px;
  line-height: 1;
}
.jz-core-item strong,
.jz-core-contact strong {
  display: block;
  color: #123764;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}
.jz-core-item p,
.jz-core-contact p {
  margin: 6px 0 0;
  color: #627997;
  font-size: 13px;
  line-height: 1.65;
}
.jz-core-item > i {
  position: absolute;
  top: 50%;
  right: 23px;
  color: #97a8bd;
  font-size: 18px;
  font-style: normal;
  transform: translateY(-50%);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.jz-core-item:hover {
  background: #f6faff;
}
.jz-core-item:hover > i {
  color: #1760ee;
  transform: translate(4px, -50%);
}
.jz-core-contact {
  padding-right: 26px;
  border-right: 0;
  background: #f2f8ff;
}
.jz-core-contact:after {
  position: absolute;
  right: -38px;
  bottom: -74px;
  width: 188px;
  height: 188px;
  border: 1px solid rgba(23, 96, 238, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.jz-core-contact strong {
  font-size: 18px;
}
.jz-core-contact p {
  max-width: 290px;
}
.jz-core-contact b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: #1760ee;
  font-size: 13px;
  font-weight: 650;
}
.jz-core-contact b i {
  font-size: 17px;
  font-style: normal;
  transition: transform 0.2s ease;
}
.jz-core-contact:hover b i {
  transform: translateX(4px);
}
.jz-product-section {
  background: #fff;
}
.jz-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 48px;
}
.jz-section-head h2 {
  max-width: 700px;
  margin: 0;
  color: #101f38;
  font-size: clamp(32px, 3.35vw, 48px);
  font-weight: 500;
  line-height: 1.24;
}
.jz-section-head > p {
  max-width: 390px;
  margin: 0 0 3px;
  color: #627089;
  font-size: 15px;
  line-height: 1.9;
}
.jz-product-rail {
  border-top: 1px solid #ccd7e6;
}
.jz-product-rail article {
  display: grid;
  grid-template-columns: 80px minmax(245px, 1.25fr) minmax(260px, 1fr) 110px;
  align-items: center;
  gap: 26px;
  min-height: 170px;
  border-bottom: 1px solid #dce3ed;
  transition:
    padding 0.24s ease,
    background 0.24s ease;
}
.jz-product-rail article:hover {
  padding-left: 16px;
  background: #f5f9ff;
}
.jz-product-no {
  color: #1760ee;
  font-size: 20px;
  font-weight: 700;
}
.jz-product-rail p {
  margin: 0 0 8px;
  color: #6a89b5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.jz-product-rail h3 {
  margin: 0;
  color: #132b50;
  font-size: 26px;
  font-weight: 500;
}
.jz-product-rail span {
  display: block;
  margin-top: 8px;
  color: #687892;
  font-size: 14px;
}
.jz-product-rail ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #52647f;
  font-size: 13px;
  line-height: 1.55;
  list-style: none;
}
.jz-product-rail li:before {
  content: "/";
  margin-right: 8px;
  color: #1760ee;
  font-weight: 700;
}
.jz-product-rail a,
.jz-solution-panel a {
  color: #1760ee;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.jz-product-rail i,
.jz-solution-panel i {
  margin-left: 8px;
  font-size: 20px;
  font-style: normal;
  vertical-align: -1px;
}
.jz-solution-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #071d40;
}
.jz-solution-section:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 90%);
}
.jz-solution-section .container-main {
  position: relative;
  z-index: 1;
}
.jz-section-head.is-light h2 {
  color: #fff;
}
.jz-section-head.is-light > p {
  color: #b8c8df;
}
.jz-section-head.is-light .jz-section-kicker {
  color: #83bcff;
}
.jz-solution-workbench {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  border-top: 1px solid rgba(180, 211, 255, 0.34);
  border-bottom: 1px solid rgba(180, 211, 255, 0.34);
}
.jz-solution-nav {
  display: grid;
  align-content: start;
  border-right: 1px solid rgba(180, 211, 255, 0.26);
}
.jz-solution-nav button {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 0 24px 0 0;
  border: 0;
  border-bottom: 1px solid rgba(180, 211, 255, 0.22);
  color: #a6b8d1;
  background: transparent;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.2s ease,
    padding 0.2s ease,
    background 0.2s ease;
}
.jz-solution-nav button:last-child {
  border-bottom: 0;
}
.jz-solution-nav button span {
  color: #6fa9f3;
  font-size: 12px;
  font-weight: 700;
}
.jz-solution-nav button.active {
  padding-left: 18px;
  color: #fff;
  background: rgba(61, 140, 255, 0.16);
}
.jz-solution-nav button:focus-visible {
  outline: 2px solid #86c1ff;
  outline-offset: -3px;
}
.jz-solution-panel {
  display: none;
  grid-template-columns: 82px minmax(0, 1fr) 270px;
  gap: 28px;
  min-height: 405px;
  padding: 46px 0 46px 48px;
}
.jz-solution-panel.active {
  display: grid;
}
.jz-solution-index {
  color: #70aeff;
  font-size: 25px;
  font-weight: 700;
}
.jz-solution-panel p {
  margin: 0;
  color: #7bb7ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.jz-solution-panel h3 {
  margin: 12px 0 15px;
  font-size: 34px;
  font-weight: 500;
}
.jz-solution-panel h4 {
  max-width: 440px;
  margin: 0;
  color: #dce8fa;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.jz-solution-panel ul {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  padding: 0;
  color: #b4c7e2;
  font-size: 13px;
  list-style: none;
}
.jz-solution-panel li:before {
  content: "+";
  margin-right: 9px;
  color: #76b3ff;
}
.jz-solution-panel a {
  color: #fff;
}
.jz-solution-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 272px;
  margin-right: 34px;
  border: 1px solid rgba(175, 211, 255, 0.28);
  background: radial-gradient(
    circle,
    rgba(54, 145, 255, 0.6),
    rgba(19, 66, 134, 0.14) 42%,
    transparent 44%
  );
}
.jz-solution-visual:before,
.jz-solution-visual:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(172, 211, 255, 0.34);
  border-radius: 50%;
}
.jz-solution-visual:before {
  width: 178px;
  height: 178px;
}
.jz-solution-visual:after {
  width: 228px;
  height: 228px;
  border-style: dashed;
}
.jz-solution-visual b {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  color: #0a2a58;
  background: #d7ebff;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 0 34px rgba(129, 194, 255, 0.8);
}
.jz-solution-visual span {
  position: absolute;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(181, 219, 255, 0.38);
  color: #cce4ff;
  background: #102e59;
  font-size: 11px;
}
.jz-solution-visual span:first-child {
  top: 26px;
  left: 14px;
}
.jz-solution-visual span:last-child {
  right: 12px;
  bottom: 26px;
}
@media (max-width: 1024px) {
  .jz-core-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .jz-core-brand {
    grid-column: span 3;
    min-height: 110px;
  }
  .jz-core-grid > a:nth-child(4) {
    border-left: 0;
  }
  .jz-hero-float {
    display: none;
  }
  .jz-product-rail article {
    grid-template-columns: 60px 1fr 150px;
  }
  .jz-product-rail ul {
    display: none;
  }
  .jz-solution-workbench {
    grid-template-columns: 1fr;
  }
  .jz-solution-nav {
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(180, 211, 255, 0.26);
  }
  .jz-solution-nav button {
    justify-content: center;
    padding: 0 8px;
    font-size: 15px;
  }
  .jz-solution-nav button.active {
    padding-left: 8px;
  }
  .jz-solution-panel {
    grid-template-columns: 64px minmax(0, 1fr) 230px;
    padding-left: 26px;
  }
}
@media (max-width: 768px) {
  .jz-hero-carousel,
  .jz-hero-inner {
    min-height: 560px;
  }
  .jz-hero-slide:after {
    background: linear-gradient(
      90deg,
      rgba(245, 250, 255, 0.97),
      rgba(245, 250, 255, 0.87)
    );
  }
  .jz-hero-copy {
    width: 100%;
    padding-bottom: 30px;
  }
  .jz-hero-copy :is(h1, h2) {
    font-size: 38px;
  }
  .jz-hero-text {
    font-size: 16px;
  }
  .jz-hero-controls {
    bottom: 26px;
  }
  .jz-core-strip {
    margin-top: 0;
  }
  .jz-core-grid {
    grid-template-columns: 1fr 1fr;
  }
  .jz-core-brand {
    grid-column: span 2;
  }
  .jz-core-grid > a {
    min-height: 130px;
    padding: 18px;
  }
  .jz-core-grid > a:nth-child(odd) {
    border-right: 0;
  }
  .jz-section-head {
    display: block;
    margin-bottom: 30px;
  }
  .jz-section-head > p {
    margin-top: 18px;
  }
  .jz-product-rail article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 24px 0;
  }
  .jz-product-rail article:hover {
    padding-left: 0;
  }
  .jz-product-rail a {
    grid-column: 2;
  }
  .jz-product-rail h3 {
    font-size: 23px;
  }
  .jz-solution-nav {
    grid-template-columns: 1fr 1fr;
  }
  .jz-solution-nav button {
    justify-content: flex-start;
    min-height: 62px;
    padding: 0 10px;
  }
  .jz-solution-panel,
  .jz-solution-panel.active {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }
  .jz-solution-index {
    display: none;
  }
  .jz-solution-panel h3 {
    font-size: 28px;
  }
  .jz-solution-visual {
    min-height: 230px;
    margin-right: 0;
  }
  .jz-solution-panel h4 {
    font-size: 15px;
  }
  .jz-hero-actions a {
    min-width: 132px;
  }
}
/* Screenshot-aligned product, solution and industry sections */
#legacy-jz-capability,
#legacy-jz-solutions {
  display: none !important;
}
.reference-product-section {
  background: #eef3fb;
}
.reference-section-title {
  max-width: 940px;
  margin: 0 auto 48px;
  text-align: center;
}
.reference-section-title h2 {
  margin: 0;
  color: #242a34;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.34;
}
.reference-section-title p {
  margin: 16px 0 0;
  color: #4b5565;
  font-size: 15px;
  line-height: 1.8;
}
.reference-section-title a {
  margin-left: 8px;
  color: #d71920;
}
.reference-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 28px;
}
.reference-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 42px 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  background: #fff url("../images/product-ribbon-bg-v1.png") center / cover
    no-repeat;
  box-shadow: 0 8px 20px rgba(77, 99, 130, 0.06);
  text-align: left;
}
.reference-product-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.48);
  pointer-events: none;
}
.reference-product-card > * {
  position: relative;
  z-index: 1;
}
.reference-product-card.featured {
  grid-column: span 2;
  min-height: 276px;
  background-position: center;
}
.reference-product-card.featured:after {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.16)
  );
}
.reference-product-card h3 {
  margin: 0;
  color: #2b3039;
  font-size: 23px;
  font-weight: 600;
}
.reference-product-card i {
  display: block;
  width: 40px;
  height: 2px;
  margin: 20px 0 56px;
  background: #d71920;
}
.reference-product-card strong {
  color: #252a32;
  font-size: 26px;
  font-weight: 600;
}
.reference-product-card strong:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  background: #d71920;
}
.reference-product-card p {
  margin: 8px 0 0;
  color: #8b5b62;
  font-size: 15px;
}
.reference-product-card a {
  align-self: flex-end;
  min-width: 180px;
  padding: 12px 26px;
  color: #fff;
  background: #d71920;
  font-size: 14px;
  text-align: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.reference-product-card a:hover {
  background: #b40e14;
  transform: translateY(-2px);
}
.reference-solutions-section {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: url("../images/solutions-datacenter-bg-v1.png") center / cover
    no-repeat;
}
.reference-solutions-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 24, 0.46);
}
.reference-section-title.is-white h2,
.reference-section-title.is-white p {
  color: #fff;
}
.reference-section-title.is-white a {
  color: #ff4a4f;
}
.reference-solution-cards {
  display: flex;
  align-items: stretch;
  gap: 20px;
  min-height: 454px;
}
.reference-solution-card {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 42px 24px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  color: #2e3440;
  background: #fff url("../images/product-ribbon-bg-v1.png") center / cover
    no-repeat;
  cursor: pointer;
  text-align: left;
  transition:
    flex 0.32s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.reference-solution-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
}
.reference-solution-card > * {
  position: relative;
  z-index: 1;
}
.reference-solution-card:hover,
.reference-solution-card.active {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
.reference-solution-card.active {
  flex: 1.9;
}
.reference-solution-label {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 40px;
  color: #d71920;
  border: 1px solid #f2c4c7;
  background: #fff7f7;
  font-size: 12px;
  font-weight: 700;
}
.reference-solution-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
.reference-solution-card p {
  max-height: 0;
  margin: 16px 0 0;
  overflow: hidden;
  color: #515965;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0;
  transition:
    max-height 0.28s ease,
    opacity 0.22s ease;
}
.reference-solution-card b {
  display: none;
  min-width: 180px;
  margin-top: auto;
  padding: 12px 24px;
  color: #fff;
  background: #d71920;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.reference-solution-card.active p {
  max-height: 90px;
  opacity: 1;
}
.reference-solution-card.active b {
  display: block;
}
.reference-solution-card:focus-visible {
  outline: 3px solid #ff8e92;
  outline-offset: 3px;
}
@media (max-width: 1024px) {
  .reference-product-card {
    padding: 30px;
  }
  .reference-solution-cards {
    gap: 12px;
  }
  .reference-solution-card {
    padding: 30px 18px;
  }
  .reference-solution-card h3 {
    font-size: 17px;
  }
  .reference-solution-card.active {
    flex: 1.55;
  }
}
@media (max-width: 768px) {
  .reference-section-title {
    margin-bottom: 30px;
  }
  .reference-section-title h2 {
    font-size: 30px;
  }
  .reference-product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reference-product-card,
  .reference-product-card.featured {
    grid-column: auto;
    min-height: 210px;
    padding: 28px;
  }
  .reference-product-card i {
    margin: 14px 0 34px;
  }
  .reference-product-card strong {
    font-size: 22px;
  }
  .reference-product-card.featured a {
    align-self: flex-start;
    margin-top: 20px;
  }
  .reference-solutions-section {
    min-height: auto;
  }
  .reference-solution-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
  }
  .reference-solution-card,
  .reference-solution-card.active {
    min-height: 220px;
    padding: 24px 18px;
  }
  .reference-solution-card.active {
    grid-column: span 2;
  }
  .reference-solution-label {
    margin-bottom: 24px;
  }
  .reference-solution-card b {
    min-width: 140px;
  }
}
/* Hero-to-service continuity: a restrained glass navigation band instead of a hard white divider */
.jz-hero-carousel::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(237, 245, 255, 0), #edf5ff 92%);
}
.jz-core-strip {
  z-index: 5;
  margin-top: 0;
  padding: 0 0 0;
  background: #edf5ff;
  height: 1px;
  overflow: visible;
}
.jz-core-grid {
  grid-template-columns: 1.35fr repeat(5, 1fr);
  min-height: 158px;
  border: 1px solid rgba(159, 185, 222, 0.54);
  border-radius: 8px;
  background: rgba(249, 252, 255, 0.82);
  box-shadow: 0 22px 46px rgba(32, 74, 134, 0.12);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transform: translateY(-78px);
  margin-bottom: -14px;
}
.jz-core-brand,
.jz-core-grid > a {
  position: relative;
  padding: 26px 24px;
  border-right: 1px solid rgba(172, 194, 224, 0.5);
}
.jz-core-brand {
  justify-content: center;
  background: #153f7d;
}
.jz-core-brand:after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(167, 204, 255, 0.35);
  border-radius: 50%;
}
.jz-core-eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 7px;
  color: #8dbdff !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.jz-core-brand b {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 26px;
  letter-spacing: 0;
}
.jz-core-brand span:last-child {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: #bcd5f8;
  font-size: 12px;
}
.jz-core-grid > a {
  justify-content: flex-start;
  color: #183a6c;
  background: transparent;
}
.jz-core-grid > a:before {
  display: none;
}
.jz-core-grid > a em {
  display: block;
  margin-bottom: 14px;
  color: #5d8dd0;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
}
.jz-core-grid > a strong {
  color: #163a70;
  font-size: 17px;
  font-weight: 600;
}
.jz-core-grid > a span {
  margin-top: 9px;
  color: #6680a6;
  font-size: 12px;
  line-height: 1.65;
}
.jz-core-grid > a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #2c79eb;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.jz-core-grid > a:hover {
  background: rgba(235, 244, 255, 0.86);
}
.jz-core-grid > a:hover:after {
  transform: scaleX(1);
}
@media (max-width: 1024px) {
  .jz-core-strip {
    height: 1px;
    margin-top: 0;
    padding-bottom: 0;
  }
  .jz-core-grid {
    transform: translateY(-52px);
    margin-bottom: -6px;
  }
  .jz-core-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .jz-core-brand {
    grid-column: span 3;
    min-height: 106px;
  }
  .jz-core-grid > a:nth-child(4) {
    border-left: 0;
  }
}
@media (max-width: 768px) {
  .jz-hero-carousel::after {
    height: 110px;
  }
  .jz-core-strip {
    height: auto;
    margin-top: 0;
    padding-bottom: 0;
  }
  .jz-core-grid {
    transform: none;
    margin-bottom: 0;
  }
  .jz-core-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: 6px;
  }
  .jz-core-brand {
    grid-column: span 2;
    min-height: 88px;
  }
  .jz-core-grid > a {
    min-height: 112px;
    padding: 16px;
  }
  .jz-core-grid > a:nth-child(odd) {
    border-right: 0;
  }
  .jz-core-grid > a em {
    margin-bottom: 10px;
  }
  .jz-core-grid > a strong {
    font-size: 16px;
  }
}
/* Solution gallery: blue active state inspired by the reference interaction */
.reference-solutions-section {
  background-position: center;
  background-color: #0a244b;
}
.reference-solutions-overlay {
  background: rgba(5, 27, 64, 0.62);
}
.reference-section-title.is-white a {
  color: #92c5ff;
}
.reference-solution-cards {
  gap: 18px;
}
.reference-solution-card {
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 10px;
  color: #153b70;
  background: #f7fbff url("../images/product-matrix-blue-flow-v1.png") center /
    cover no-repeat;
  box-shadow: 0 12px 28px rgba(0, 15, 42, 0.16);
  transition:
    flex 0.34s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.reference-solution-card:after {
  background: rgba(249, 252, 255, 0.9);
  transition: background-color 0.3s ease;
}
.reference-solution-card:hover,
.reference-solution-card.active {
  transform: translateY(-2px);
  border-color: rgba(170, 214, 255, 0.95);
  box-shadow: 0 22px 42px rgba(0, 13, 41, 0.3);
}
.reference-solution-card.active {
  flex: 1.9;
}
.reference-solution-card.active:after {
  background: rgba(238, 248, 255, 0.28);
}
.reference-solution-label {
  color: #1760ee;
  border-color: #c8ddff;
  background: #edf5ff;
}
.reference-solution-card h3 {
  color: #123a73;
}
.reference-solution-card p {
  color: #3e6594;
}
.reference-solution-card b {
  background: #1760ee;
}
.reference-solution-card.active b {
  box-shadow: 0 10px 20px rgba(23, 96, 238, 0.24);
}
.reference-solution-card:focus-visible {
  outline-color: #9dceff;
}
@media (max-width: 768px) {
  .reference-solution-cards {
    gap: 12px;
  }
  .reference-solution-card:hover,
  .reference-solution-card.active {
    transform: none;
  }
}
.reference-product-card,
.reference-product-card.featured {
  min-height: 380px;
}
.reference-product-card i {
  margin: 16px 0 28px;
}
.reference-product-features {
  margin: 16px 0 0;
  padding: 0;
  color: #58769c;
  font-size: 13px;
  line-height: 1.75;
  list-style: none;
}
.reference-product-features li {
  position: relative;
  padding-left: 12px;
}
.reference-product-features li:before {
  content: "";
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 4px;
  height: 4px;
  background: #1760ee;
}
.reference-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.reference-product-tags b {
  padding: 5px 9px;
  color: #356394;
  background: rgba(229, 240, 255, 0.78);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.reference-product-card:hover .reference-product-tags b,
.reference-product-card.featured .reference-product-tags b {
  color: #21568e;
  background: rgba(230, 242, 255, 0.7);
}
.reference-solution-points {
  display: block;
  max-height: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #5a7ca7;
  font-size: 13px;
  line-height: 1.8;
  list-style: none;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.24s ease,
    margin 0.3s ease;
}
.reference-solution-points li:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 8px 2px 0;
  background: #1760ee;
}
.reference-solution-card.active .reference-solution-points {
  max-height: 68px;
  margin: 14px 0 0;
  opacity: 1;
}
/* Solution workbench: dark scene, quiet cards, blue active state */
.reference-solutions-section {
  min-height: 680px;
  background: #10284e url("../images/solutions-deep-blue-v1.png") center / cover
    no-repeat;
  box-shadow: none;
}
.reference-solutions-overlay {
  background: rgba(7, 25, 56, 0.76);
}
.reference-solutions-section .reference-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  max-width: none;
  margin-bottom: 46px;
  text-align: left;
}
.reference-solutions-section .reference-section-title h2 {
  max-width: 700px;
  color: #fff;
  font-size: clamp(34px, 3.35vw, 48px);
  font-weight: 500;
  line-height: 1.22;
}
.reference-solutions-section .reference-section-title p {
  max-width: 390px;
  margin: 0 0 4px;
  color: rgba(218, 234, 255, 0.78);
  line-height: 1.9;
}
.reference-section-title.is-white a {
  color: #91c5ff;
}
.reference-solution-cards {
  gap: 16px;
  min-height: 438px;
}
.reference-solution-card {
  align-items: center;
  justify-content: center;
  min-height: 438px;
  border: 1px solid rgba(184, 216, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(9, 35, 76, 0.64);
  box-shadow: none;
  backdrop-filter: blur(10px);
  text-align: center;
  transition:
    flex 0.34s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.reference-solution-card:before {
  display: none;
}
.reference-solution-card:after {
  background: rgba(3, 20, 48, 0.16);
}
.reference-solution-card:hover,
.reference-solution-card.active {
  transform: none;
  border-color: rgba(126, 185, 255, 0.74);
  background: rgba(20, 66, 132, 0.82);
  box-shadow: 0 20px 40px rgba(0, 11, 31, 0.26);
}
.reference-solution-card.active {
  flex: 1.95;
}
.reference-solution-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 24px;
  border: 1px solid rgba(158, 203, 255, 0.7);
  background: rgba(26, 84, 162, 0.32);
  color: #b8dcff;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}
.reference-solution-icon:before {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}
.reference-solution-card.active .reference-solution-icon,
.reference-solution-card:hover .reference-solution-icon {
  border-color: #1760ee;
  background: #1760ee;
  color: #fff;
}
.reference-solution-card h3 {
  width: 100%;
  margin: 0;
  color: #f8fbff;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.reference-solution-card p {
  max-width: 340px;
  color: rgba(219, 237, 255, 0.82);
  text-align: center;
}
.reference-solution-card b {
  align-self: center;
  min-width: 154px;
  margin-right: auto;
  margin-left: auto;
  background: #1760ee;
  color: #fff;
  text-align: center;
}
.reference-solution-card:focus-visible {
  outline-color: #b8dcff;
}
@media (max-width: 1024px) {
  .reference-solutions-section .reference-section-title {
    display: block;
  }
  .reference-solutions-section .reference-section-title p {
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  .reference-solutions-section {
    min-height: auto;
    background-position: center top;
  }
  .reference-solution-card {
    min-height: 220px;
  }
  .reference-solution-icon {
    margin-bottom: 18px;
  }
}
/* Restored light card interaction on the original data-center scene */
.reference-solutions-section {
  min-height: 650px;
  background: #0b1b33 url("../images/solutions-datacenter-bg-v1.png") center /
    cover no-repeat;
}
.reference-solutions-overlay {
  background: rgba(9, 14, 24, 0.46);
}
.reference-solutions-section .reference-section-title {
  display: block;
  max-width: 940px;
  margin: 0 auto 48px;
  text-align: center;
}
.reference-solutions-section .reference-section-title h2 {
  max-width: none;
  color: #fff;
  font-size: clamp(32px, 3.35vw, 46px);
}
.reference-solutions-section .reference-section-title p {
  max-width: none;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}
.reference-section-title.is-white a {
  color: #9dcaff;
}
.reference-solution-cards {
  gap: 18px;
  min-height: 454px;
}
.reference-solution-card {
  align-items: center;
  justify-content: flex-start;
  min-height: 454px;
  border-color: rgba(255, 255, 255, 0.86);
  border-radius: 10px;
  color: #153b70;
  background: rgba(250, 253, 255, 0.82);
  box-shadow: 0 14px 30px rgba(0, 15, 42, 0.2);
  text-align: center;
}
.reference-solution-card:before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/solutions-blue-flow-v1.png");
  background-repeat: no-repeat;
  opacity: 0.16;
  pointer-events: none;
  transition: opacity 0.34s ease;
}
.reference-solution-card:nth-child(1):before {
  background-size: 500% 100%;
  background-position: left center;
}
.reference-solution-card:nth-child(2):before {
  background-size: 500% 100%;
  background-position: 25% center;
}
.reference-solution-card:nth-child(3):before {
  background-size: 500% 100%;
  background-position: center;
}
.reference-solution-card:nth-child(4):before {
  background-size: 500% 100%;
  background-position: 75% center;
}
.reference-solution-card:nth-child(5):before {
  background-size: 500% 100%;
  background-position: right center;
}
.reference-solution-card:after {
  background: rgba(250, 253, 255, 0.7);
}
.reference-solution-card.active:before,
.reference-solution-card:hover:before {
  opacity: 1;
}
.reference-solution-card.active:after {
  background: rgba(240, 249, 255, 0.28);
}
.reference-solution-card:hover,
.reference-solution-card.active {
  transform: translateY(-2px);
  border-color: rgba(130, 186, 255, 0.8);
  background: rgba(242, 249, 255, 0.55);
  box-shadow: 0 22px 42px rgba(0, 13, 41, 0.3);
}
.reference-solution-card.active {
  flex: 1.9;
}
.reference-solution-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 34px;
  border-color: #b8d7ff;
  background: rgba(239, 247, 255, 0.92);
  color: #1760ee;
}
.reference-solution-card.active .reference-solution-icon,
.reference-solution-card:hover .reference-solution-icon {
  border-color: #1760ee;
  background: #1760ee;
  color: #fff;
}
.reference-solution-card h3 {
  width: 100%;
  margin-top: 0;
  color: #123a73;
  text-align: center;
}
.reference-solution-card p {
  max-width: 280px;
  color: #466c9a;
  text-align: center;
}
.reference-solution-card b {
  align-self: center;
  min-width: 152px;
  margin-right: auto;
  margin-left: auto;
  background: #1760ee;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .reference-solution-card {
    min-height: 220px;
  }
  .reference-solution-icon {
    margin-bottom: 22px;
  }
}
.reference-solution-card {
  min-height: 470px;
}
.reference-solution-card:before {
  opacity: 0.28;
}
.reference-solution-card:after {
  background: rgba(250, 253, 255, 0.62);
}
.reference-solution-icon {
  display: grid;
  place-items: center;
  padding: 8px;
  background: rgba(242, 249, 255, 0.94);
}
.reference-solution-icon:before {
  display: none;
}
.reference-solution-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.reference-solution-card.active .reference-solution-icon,
.reference-solution-card:hover .reference-solution-icon {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(23, 96, 238, 0.2);
}
.reference-solution-kicker {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin-bottom: 12px;
  color: #5681b4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.4;
  text-align: center;
}
.reference-solution-points {
  max-height: 0;
}
.reference-solution-card.active .reference-solution-points {
  max-height: 112px;
  margin: 14px 0 0;
}
@media (max-width: 768px) {
  .reference-solution-card {
    min-height: 250px;
  }
  .reference-solution-kicker {
    margin-bottom: 8px;
  }
  .reference-solution-card.active .reference-solution-points {
    max-height: 124px;
  }
}
/* Refine the solution gallery density and material contrast */
.reference-solutions-section .reference-section-title {
  margin-bottom: 38px;
}
.reference-solutions-section .reference-section-title h2 {
  font-size: clamp(30px, 3vw, 36px);
}
.reference-solution-cards {
  min-height: 430px;
  gap: 16px;
}
.reference-solution-card {
  min-height: 430px;
  padding: 34px 22px;
  border-color: rgba(191, 218, 250, 0.74);
  background: rgba(226, 240, 255, 0.78);
  box-shadow: 0 12px 28px rgba(0, 14, 39, 0.18);
  backdrop-filter: blur(8px);
}
.reference-solution-card:after {
  background: rgba(247, 251, 255, 0.42);
}
.reference-solution-card:before {
  opacity: 0.24;
}
.reference-solution-card:hover,
.reference-solution-card.active {
  border-color: rgba(136, 194, 255, 0.9);
  background: rgba(241, 249, 255, 0.8);
  box-shadow: 0 20px 40px rgba(0, 13, 38, 0.28);
}
.reference-solution-card.active {
  flex: 1.82;
}
.reference-solution-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  padding: 7px;
  border-color: rgba(48, 124, 220, 0.38);
  background: rgba(26, 96, 210, 0.1);
  box-shadow: none;
}
.reference-solution-icon img {
  width: 26px;
  height: 26px;
}
.reference-solution-card.active .reference-solution-icon,
.reference-solution-card:hover .reference-solution-icon {
  border-color: rgba(23, 96, 238, 0.65);
  background: rgba(224, 240, 255, 0.92);
  box-shadow: 0 7px 16px rgba(23, 96, 238, 0.15);
}
.reference-solution-kicker {
  margin-bottom: 8px;
}
.reference-solution-card h3 {
  font-size: 19px;
}
.reference-solution-card p {
  display: block;
  max-height: 64px;
  margin: 12px 0 0;
  color: #416990;
  font-size: 13px;
  opacity: 1;
}
.reference-solution-card.active .reference-solution-points {
  margin-top: 12px;
}
.reference-solution-card.active b {
  margin-top: 22px;
}
.reference-solution-card:not(.active):before {
  background-image: url("../images/solution-card-idle-v1.png");
  background-size: cover;
  background-position: center;
  opacity: 0.86;
}
.reference-solution-card:not(.active):after {
  background: rgba(247, 252, 255, 0.18);
}
.reference-solution-card:not(.active) {
  background: rgba(229, 241, 255, 0.68);
}
@media (max-width: 768px) {
  .reference-solution-cards {
    min-height: auto;
  }
  .reference-solution-card {
    min-height: 240px;
    padding: 26px 18px;
  }
  .reference-solution-card p {
    max-height: 58px;
  }
  .reference-solution-card.active b {
    margin-top: 18px;
  }
}
/* Refined core service navigation */
@media (min-width: 769px) {
  .jz-core-grid {
    grid-template-columns: 1.24fr repeat(5, 1fr);
    min-height: 174px;
    border-color: rgba(148, 181, 223, 0.62);
    border-radius: 12px;
    background: #eaf3ff;
    box-shadow: 0 20px 44px rgba(25, 66, 122, 0.13);
  }
  .jz-core-brand,
  .jz-core-grid > a {
    padding: 30px 26px;
  }
  .jz-core-brand {
    background: #1760ee;
  }
  .jz-core-brand:after {
    top: 0;
    right: 0;
    bottom: 0;
    width: 42%;
    height: auto;
    border: 0;
    border-radius: 0;
    background: repeating-linear-gradient(
      135deg,
      rgba(161, 204, 255, 0.2) 0 1px,
      transparent 1px 13px
    );
  }
  .jz-core-eyebrow {
    margin-bottom: 9px;
    color: #9ac4ff !important;
  }
  .jz-core-brand b {
    font-size: 28px;
  }
  .jz-core-brand span:last-child {
    margin-top: 10px;
  }
  .jz-core-grid > a {
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(145deg, #fbfdff 0%, #edf5ff 100%);
    transition:
      background-color 0.28s ease,
      box-shadow 0.28s ease;
  }
  .jz-core-grid > a:before {
    display: none;
  }
  .jz-core-grid > a em {
    position: relative;
    z-index: 1;
    width: max-content;
    margin-bottom: 18px;
    color: #4d83c9;
    font-size: 10px;
    line-height: 1;
  }
  .jz-core-grid > a strong {
    position: relative;
    z-index: 1;
    font-size: 18px;
    letter-spacing: 0;
  }
  .jz-core-grid > a span {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    color: #6682a8;
    line-height: 1.7;
  }
  .jz-core-grid > a:after {
    display: none;
  }
  .jz-core-grid > a:hover {
    background-color: #1760ee;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  }
  .jz-core-grid > a:hover em,
  .jz-core-grid > a:focus-visible em {
    color: #bcd9ff;
  }
  .jz-core-grid > a:hover strong,
  .jz-core-grid > a:focus-visible strong {
    color: #fff;
  }
  .jz-core-grid > a:hover span,
  .jz-core-grid > a:focus-visible span {
    color: #d7e8ff;
  }
  .jz-core-grid > a:focus-visible {
    z-index: 1;
    outline: 2px solid #1760ee;
    outline-offset: -2px;
  }
}
/* Product matrix: use Jiuzhang blue and reveal one continuous background on hover */
.reference-product-section {
  background: #f7faff url("../images/solutions-blue-flow-v1.png") center / cover
    no-repeat;
}
.reference-product-section .reference-section-title a {
  color: #1760ee;
}
.reference-product-grid {
  position: relative;
  isolation: isolate;
  padding: 2px;
  border-radius: 12px;
  background: transparent;
}
.reference-product-card,
.reference-product-card.featured {
  border-color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(145deg, #ffffff 0%, #f1f7ff 100%);
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-image 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}
.reference-product-card:after,
.reference-product-card.featured:after {
  background: rgba(245, 250, 255, 0.32);
  opacity: 1;
  transition: opacity 0.32s ease;
}
.reference-product-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/product-matrix-blue-flow-v1.png");
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s ease;
}
.reference-product-card.featured:before {
  background-size: 150% 200%;
  background-position: left top;
}
.reference-product-card.featured:before {
  opacity: 1;
}
.reference-product-card:nth-child(2):before {
  background-size: 300% 200%;
  background-position: right top;
}
.reference-product-card:nth-child(3):before {
  background-size: 300% 200%;
  background-position: left bottom;
}
.reference-product-card:nth-child(4):before {
  background-size: 300% 200%;
  background-position: center bottom;
}
.reference-product-card:nth-child(5):before {
  background-size: 300% 200%;
  background-position: right bottom;
}
.reference-product-card:not(.featured):before {
  opacity: 0.2;
}
.reference-product-card h3,
.reference-product-card strong {
  color: #163b71;
}
.reference-product-card i,
.reference-product-card strong:before {
  background: #1760ee;
}
.reference-product-card p {
  color: #59749c;
}
.reference-product-action {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 46px;
  padding: 0 24px;
  background: #1760ee;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition:
    background-color 0.28s ease,
    opacity 0.28s ease,
    transform 0.28s ease;
}
.reference-product-card.featured .reference-product-action {
  align-self: flex-end;
}
.reference-product-card:not(.featured) .reference-product-action {
  min-width: auto;
  min-height: auto;
  margin-top: 22px;
  padding: 0;
  background: transparent;
  color: #1760ee;
  opacity: 0;
  transform: translateY(5px);
}
.reference-product-card:hover {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(23, 96, 238, 0.16);
}
.reference-product-card:hover:before,
.reference-product-card:focus-visible:before {
  opacity: 1;
}
.reference-product-card:not(.featured):hover:before,
.reference-product-card:not(.featured):focus-visible:before {
  opacity: 1;
}
.reference-product-card:hover:after {
  opacity: 0.06;
}
.reference-product-card.featured:after {
  opacity: 0.06;
}
.reference-product-card:hover h3,
.reference-product-card:hover strong {
  color: #0d3470;
}
.reference-product-card:hover p {
  color: #376aab;
}
.reference-product-card.featured p {
  color: #376aab;
}
.reference-product-card:hover .reference-product-action {
  background: #1259d6;
}
.reference-product-card:not(.featured):hover .reference-product-action,
.reference-product-card:not(.featured):focus-visible .reference-product-action {
  background: transparent;
  opacity: 1;
  transform: translateY(0);
}
.reference-product-card:focus-visible {
  border-color: #1760ee;
  box-shadow: 0 0 0 3px rgba(23, 96, 238, 0.18);
  outline: 0;
}
@media (max-width: 768px) {
  .reference-product-grid {
    padding: 1px;
    border-radius: 8px;
  }
  .reference-product-card,
  .reference-product-card.featured {
    min-height: auto;
    background: rgba(251, 253, 255, 0.9);
  }
}

/* Customer cases: one immersive story, with a calm industry switcher. */
.case-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 76px;
  background-color: #102d58;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 24, 52, 0.78) 0%,
      rgba(8, 36, 71, 0.47) 54%,
      rgba(6, 27, 55, 0.42) 100%
    ),
    var(--case-image);
  background-size: cover;
  background-position: center;
  transition: background-image 0.45s ease;
}
.case-section:before {
  position: absolute;
  inset: 0;
  background: rgba(2, 15, 35, 0.16);
  content: "";
  pointer-events: none;
}
.case-section:after {
  display: none;
}
.case-section .container-main {
  position: relative;
  z-index: 1;
}
.case-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.case-heading .section-title {
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
.case-heading .section-desc {
  margin-left: auto;
  margin-right: auto;
  color: rgba(232, 243, 255, 0.86);
}
.case-showcase.mt-10 {
  margin-top: 32px;
}
.case-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.66fr) minmax(0, 1.34fr);
  gap: 0;
  overflow: visible;
  isolation: isolate;
}
.case-showcase:before,
.case-showcase:after {
  display: none;
}
.case-feature-stage {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}
.case-feature {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition:
    opacity 0.38s ease,
    transform 0.5s ease;
}
.case-feature:before {
  display: none;
}
.case-feature.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.case-feature-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  padding: 28px 34px 34px;
  color: #fff;
}
.case-feature-topline {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
  color: #9bcbff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-align: right;
}
.case-feature-topline span:first-child {
  display: none;
}
.case-feature-content {
  position: relative;
  max-width: 500px;
  margin-top: 88px;
  padding-top: 18px;
  text-align: right;
}
.case-feature-content:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 3px;
  background: #4da2ff;
  content: "";
}
.case-feature-kicker {
  margin: 0 0 11px;
  color: #84c3ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.case-feature h3 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  line-height: 1.24;
  font-weight: 600;
}
.case-feature h3 + p {
  margin: 17px 0 19px;
  color: rgba(241, 248, 255, 0.9);
  font-size: 15px;
  line-height: 1.9;
}
.case-feature-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.case-feature-tags span {
  background: rgba(158, 207, 255, 0.16);
  padding: 6px 10px;
  color: #ecf7ff;
  font-size: 12px;
}
.case-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  margin-left: auto;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.case-feature-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  background: rgba(158, 207, 255, 0.18);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.case-feature-link:hover span {
  transform: translateX(4px);
  background: #1760ee;
}
.case-selector {
  position: relative;
  z-index: 1;
  order: -1;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  margin: 0 28px 0 0;
  overflow: hidden;
  background: transparent;
}
.case-selector-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 23px;
  align-items: center;
  gap: 12px;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid rgba(196, 224, 251, 0.18);
  padding: 22px 18px;
  background: transparent;
  text-align: left;
  color: #e9f5ff;
  transition:
    color 0.24s ease,
    padding 0.24s ease;
}
.case-selector-item:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 0;
  background: #4da2ff;
  content: "";
  transform: translateY(-50%);
  transition: height 0.24s ease;
}
.case-selector-item:last-child {
  border-bottom: 0;
}
.case-selector-index {
  color: #9dc9ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.case-selector-item strong,
.case-selector-item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.case-selector-item strong {
  color: #f5faff;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
}
.case-selector-item small {
  margin-top: 5px;
  color: #b9d5f7;
  font-size: 12px;
  opacity: 0.58;
  transition: opacity 0.24s ease;
}
.case-selector-item i {
  color: #b8d9fb;
  font-size: 18px;
  font-style: normal;
  transition: transform 0.24s ease;
}
.case-selector-item:hover,
.case-selector-item.active {
  background: transparent;
  color: #fff;
  padding-left: 24px;
}
.case-selector-item:hover:before,
.case-selector-item.active:before {
  height: 52%;
}
.case-selector-item.active strong {
  color: #fff;
}
.case-selector-item:hover small,
.case-selector-item.active small {
  opacity: 1;
}
.case-selector-item:hover .case-selector-index,
.case-selector-item.active .case-selector-index,
.case-selector-item:hover strong,
.case-selector-item.active strong,
.case-selector-item:hover small,
.case-selector-item.active small,
.case-selector-item:hover i,
.case-selector-item.active i {
  color: #fff;
}
.case-selector-item:hover i,
.case-selector-item.active i {
  transform: translateX(4px);
}
.case-selector-item:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid #78b6ff;
  outline-offset: -3px;
}
.case-outcomes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 24px;
  padding-top: 17px;
}
.case-outcomes:before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(184, 218, 252, 0.34);
  content: "";
}
.case-outcome {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  min-height: 70px;
  overflow: hidden;
  border-radius: 3px;
  padding: 12px 14px 10px;
  background: rgba(7, 39, 81, 0.56);
  transition:
    transform 0.24s ease,
    background 0.24s ease;
}
.case-outcome:before {
  display: none;
}
.case-outcome:after {
  display: none;
}
.case-outcome:hover {
  transform: translateY(-2px);
  background: rgba(20, 81, 163, 0.66);
}
.case-outcome-index {
  flex: 0 0 auto;
  color: #82bcff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.55;
}
.case-outcome b,
.case-outcome span {
  display: block;
}
.case-outcome b {
  color: #f1f8ff;
  font-size: 15px;
  font-weight: 600;
}
.case-outcome div > span {
  margin-top: 7px;
  color: #bdd8f6;
  font-size: 12px;
  line-height: 1.65;
}
@media (max-width: 960px) {
  .case-showcase {
    grid-template-columns: 1fr;
  }
  .case-feature-stage {
    min-height: 410px;
  }
  .case-selector {
    order: initial;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin: 0 0 14px;
  }
  .case-selector-item:nth-child(2) {
    border-bottom: 1px solid #e7edf5;
  }
  .case-selector-item:nth-child(odd) {
    border-right: 1px solid #e7edf5;
  }
}
@media (max-width: 640px) {
  .case-feature-stage {
    min-height: 440px;
  }
  .case-feature-copy {
    padding: 21px 21px 25px;
  }
  .case-feature-copy {
    align-items: flex-start;
  }
  .case-feature-topline {
    justify-content: flex-start;
    text-align: left;
  }
  .case-feature-content {
    margin-top: 66px;
  }
  .case-feature-content {
    text-align: left;
  }
  .case-feature-content:before {
    right: auto;
    left: 0;
  }
  .case-feature-tags {
    justify-content: flex-start;
  }
  .case-feature-link {
    margin-left: 0;
  }
  .case-feature-topline {
    font-size: 10px;
    letter-spacing: 0.7px;
  }
  .case-feature-topline span:last-child {
    display: none;
  }
  .case-feature h3 {
    font-size: 27px;
  }
  .case-feature h3 + p {
    margin: 13px 0 16px;
    font-size: 14px;
    line-height: 1.75;
  }
  .case-selector {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    margin: 0;
  }
  .case-selector-item {
    min-height: 88px;
    padding: 15px 17px;
  }
  .case-selector-item:nth-child(2) {
    border-bottom: 1px solid #e7edf5;
  }
  .case-selector-item:nth-child(odd) {
    border-right: 0;
  }
  .case-selector-item strong {
    font-size: 15px;
  }
  .case-section {
    padding-bottom: 52px;
  }
  .case-outcomes {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 20px;
  }
  .case-outcome {
    min-height: 88px;
    padding: 12px;
    gap: 10px;
  }
}

/* Keep the underlying photography visible after stylesheet extraction. */
.jz-hero-slide:after {
  background: linear-gradient(
    90deg,
    rgba(245, 250, 255, 0.95) 0%,
    rgba(245, 250, 255, 0.78) 34%,
    rgba(245, 250, 255, 0.18) 68%,
    rgba(245, 250, 255, 0.03) 100%
  );
}
.case-section {
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 24, 52, 0.58) 0%,
      rgba(8, 36, 71, 0.34) 54%,
      rgba(6, 27, 55, 0.28) 100%
    ),
    var(--case-image);
}
.case-section:before {
  background: rgba(2, 15, 35, 0.08);
}

/* Shared inner-page framework */
.page-body {
  min-width: 320px;
  background: #f4f7fc;
  color: #13233f;
}
.page-body .site-header {
  color: #1f2937;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}
.page-body .site-header .logo-light {
  opacity: 0;
}
.page-body .site-header .logo-dark {
  opacity: 1;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 152px 0 72px;
  color: #fff;
  background: linear-gradient(120deg, #071d43 0%, #0e4d9d 58%, #1487db 100%);
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 20, 48, 0.72), rgba(8, 57, 126, 0.26)),
    url("../images/solutions-deep-blue-v1.png") center/cover;
  opacity: 0.38;
}
.page-hero .container-main {
  position: relative;
}
.page-kicker {
  margin: 0 0 14px;
  color: #9fcbff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.15;
}
.page-hero p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}
.page-section {
  padding: 76px 0;
}
.page-section-title {
  max-width: 720px;
  margin-bottom: 34px;
}
.page-section-title h2 {
  margin: 0;
  color: #0b3471;
  font-size: clamp(28px, 3vw, 36px);
}
.page-section-title p {
  margin: 12px 0 0;
  color: #526887;
  line-height: 1.85;
}
.page-layout {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}
.page-side-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid #dce6f4;
  background: #fff;
  box-shadow: 0 12px 30px rgba(27, 67, 122, 0.07);
}
.page-side-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  color: #234570;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s ease;
}
.page-side-nav a:before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 10px;
  background: #1f6fff;
  border-radius: 50%;
  opacity: 0.45;
}
.page-side-nav a:hover,
.page-side-nav a.active {
  color: #075fd0;
  background: #eaf4ff;
}
.page-side-nav a.active:before {
  opacity: 1;
}
.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.page-product-card,
.page-info-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 30px;
  border: 1px solid #dce6f4;
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 75, 130, 0.07);
  text-decoration: none;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.page-product-card:hover,
.page-info-card:hover {
  transform: translateY(-5px);
  border-color: #8dbfff;
  box-shadow: 0 22px 42px rgba(20, 88, 178, 0.14);
}
.page-product-card.is-wide {
  grid-column: span 2;
  min-height: 250px;
  background: linear-gradient(135deg, #fff 15%, #edf6ff 100%);
}
.page-card-index {
  color: #1d70e8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.page-product-card h3,
.page-info-card h3 {
  margin: 24px 0 10px;
  color: #073b7d;
  font-size: 24px;
}
.page-product-card p,
.page-info-card p {
  margin: 0;
  color: #546b8e;
  line-height: 1.8;
}
.page-card-link {
  margin-top: auto;
  padding-top: 22px;
  color: #1267dd;
  font-size: 14px;
  font-weight: 700;
}
.page-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.page-solution-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 34px;
  color: #fff;
  background: #0e4287;
  text-decoration: none;
}
.page-solution-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(4, 25, 64, 0.1),
    rgba(9, 87, 186, 0.84)
  );
  transition: opacity 0.25s ease;
}
.page-solution-card:hover:before {
  opacity: 0.78;
}
.page-solution-card > * {
  position: relative;
}
.page-solution-card h3 {
  margin: 30px 0 12px;
  font-size: 28px;
}
.page-solution-card p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.85;
}
.page-list {
  display: grid;
  gap: 16px;
}
.page-list-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 114px;
  padding: 22px 26px;
  border-bottom: 1px solid #d7e3f2;
  background: #fff;
  text-decoration: none;
  transition: 0.22s ease;
}
.page-list-item:hover {
  padding-left: 34px;
  background: #edf6ff;
}
.page-list-item b {
  color: #1768d7;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.page-list-item h3 {
  margin: 0 0 5px;
  color: #0b3975;
  font-size: 20px;
}
.page-list-item p {
  margin: 0;
  color: #5d7190;
  font-size: 14px;
}
.page-list-item span {
  color: #1768d7;
  font-size: 20px;
}
.page-cta {
  padding: 52px;
  color: #fff;
  background: linear-gradient(120deg, #0a2d63, #146be0);
}
.page-cta h2 {
  margin: 0;
  font-size: 34px;
}
.page-cta p {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, 0.8);
}
.page-cta a {
  display: inline-flex;
  padding: 12px 20px;
  color: #0b428e;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
}
@media (max-width: 900px) {
  .page-hero {
    padding: 124px 0 54px;
  }
  .page-section {
    padding: 52px 0;
  }
  .page-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-side-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-product-card.is-wide {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .page-card-grid,
  .page-solution-grid {
    grid-template-columns: 1fr;
  }
  .page-product-card.is-wide {
    grid-column: auto;
  }
  .page-side-nav {
    grid-template-columns: 1fr;
  }
  .page-product-card,
  .page-info-card {
    min-height: 210px;
    padding: 24px;
  }
  .page-cta {
    padding: 34px 25px;
  }
  .page-list-item {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 18px;
  }
}

/* Primary navigation refinement */
.site-primary-nav {
  gap: 2px;
  height: 100%;
}
.site-header .nav-link {
  height: 68px;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.site-header .nav-link:after {
  right: auto;
  bottom: 8px;
  height: 2px;
  border-radius: 99px;
}
.site-header .nav-link:hover,
.site-header .nav-link.active,
.site-header .nav-menu.is-current > .nav-link {
  color: #0d64dd;
}
.site-header .nav-menu {
  display: flex;
  align-items: stretch;
}
.site-header .nav-dropdown {
  top: calc(100% - 7px);
  left: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 510px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(170, 198, 232, 0.72);
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(11, 55, 111, 0.16);
}
.site-header .nav-dropdown:before {
  content: "产品服务";
  position: absolute;
  top: -31px;
  left: -1px;
  padding: 9px 13px;
  color: #fff;
  background: #0f67dc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.site-header .nav-dropdown a {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 88px;
  padding: 18px 14px;
  border-right: 1px solid #e5eef9;
  color: #224c7e;
}
.site-header .nav-dropdown a:last-child {
  border-right: 0;
}
.site-header .nav-dropdown a b {
  color: #0a4d9d;
  font-size: 15px;
  font-weight: 700;
}
.site-header .nav-dropdown a small {
  color: #6c83a2;
  font-size: 12px;
  line-height: 1.55;
}
.site-header .nav-dropdown a:hover {
  background: linear-gradient(135deg, #edf7ff, #f7fbff);
}
.site-header .nav-dropdown a:hover b {
  color: #126ae4;
}
.site-header .nav-dropdown a:hover:after {
  content: "→";
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #1671ea;
}
@media (max-width: 1200px) {
  .site-header .nav-link {
    padding: 0 10px;
    font-size: 14px;
  }
}

/* Refined enterprise navigation */
.site-header .container-main {
  justify-content: flex-start;
}
.site-primary-nav {
  margin-left: 32px;
}
.site-header .nav-link {
  padding: 0 15px;
  color: inherit;
  font-weight: 500;
}
.site-header .nav-link:after {
  bottom: 11px;
  width: 0;
  background: currentColor;
}
.site-header .nav-link:hover:after,
.site-header .nav-link.active:after,
.site-header .nav-menu.is-current > .nav-link:after {
  left: 15px;
  width: calc(100% - 30px);
}
.nav-actions {
  margin-left: auto;
  gap: 14px;
}
.nav-miniapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s ease;
}
.nav-miniapp span {
  font-size: 15px;
  line-height: 1;
}
.nav-miniapp:hover {
  border-color: #1667da;
  color: #1667da;
  background: rgba(22, 103, 218, 0.06);
}
.nav-mega-menu,
.nav-compact-menu {
  position: absolute;
  z-index: 3;
  top: calc(100% - 4px);
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.nav-mega-menu {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  width: 650px;
  border: 1px solid #dbe7f4;
  background: #fff;
  box-shadow: 0 20px 45px rgba(11, 51, 104, 0.15);
}
.nav-mega-intro {
  display: flex;
  flex-direction: column;
  min-height: 168px;
  padding: 24px 22px;
  color: #fff;
  background: #0a3e82;
}
.nav-mega-intro span {
  color: #8ec4ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.nav-mega-intro b {
  margin-top: 14px;
  font-size: 22px;
}
.nav-mega-intro p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.65;
}
.nav-mega-intro a {
  margin-top: auto;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}
.nav-mega-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 14px;
}
.nav-mega-links a {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 138px;
  padding: 14px;
  color: #183f70;
  text-decoration: none;
  transition: background 0.18s ease;
}
.nav-mega-links a + a {
  border-left: 1px solid #e5edf7;
}
.nav-mega-links a:hover {
  background: #f1f7ff;
}
.nav-mega-links strong {
  color: #0c4f9e;
  font-size: 15px;
}
.nav-mega-links small {
  color: #6b7f9c;
  font-size: 12px;
  line-height: 1.65;
}
.nav-compact-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 360px;
  padding: 9px;
  border: 1px solid #dbe7f4;
  background: #fff;
  box-shadow: 0 20px 45px rgba(11, 51, 104, 0.15);
}
.nav-compact-menu a {
  padding: 12px 13px;
  color: #22486f;
  font-size: 14px;
  text-decoration: none;
  transition: 0.18s ease;
}
.nav-compact-menu a:hover {
  color: #0e64db;
  background: #eef6ff;
}
.nav-menu:hover .nav-mega-menu,
.nav-menu:focus-within .nav-mega-menu,
.nav-menu:hover .nav-compact-menu,
.nav-menu:focus-within .nav-compact-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.site-header .nav-dropdown {
  display: none;
}
@media (max-width: 1280px) {
  .site-primary-nav {
    margin-left: 20px;
  }
  .site-header .nav-link {
    padding: 0 10px;
  }
  .site-header .nav-link:hover:after,
  .site-header .nav-link.active:after,
  .site-header .nav-menu.is-current > .nav-link:after {
    left: 10px;
    width: calc(100% - 20px);
  }
  .nav-actions {
    gap: 10px;
  }
}

/* Navigation island: stronger brand presence, restrained information density */
.site-header {
  height: 78px;
}
.site-header .container-main {
  height: 78px;
}
.site-header .container-main > a[aria-label="九章数科"] {
  display: flex;
  align-items: center;
  height: 42px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}
.site-primary-nav {
  gap: 5px;
  margin-left: 22px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 39, 83, 0.22);
  backdrop-filter: blur(14px);
}
.site-header .nav-link {
  height: 46px;
  padding: 0 15px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.015em;
}
.site-header .nav-link:after {
  display: block;
}
.site-header .nav-link:hover {
  color: #fff;
  background: #1769dc;
  box-shadow: 0 8px 18px rgba(5, 50, 113, 0.22);
}
.site-header .nav-link.active,
.site-header .nav-menu.is-current > .nav-link {
  background: transparent;
  box-shadow: none;
}
.nav-caret {
  margin-left: 8px;
  color: currentColor;
  font-size: 10px;
}
.nav-actions {
  gap: 12px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.nav-miniapp {
  min-height: 36px;
  padding: 0 13px;
  border-color: rgba(255, 255, 255, 0.76);
  color: #fff;
  font-weight: 600;
}
.nav-miniapp:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
.site-header .nav-phone {
  color: #fff;
  letter-spacing: 0.02em;
}
.nav-mega-menu,
.nav-compact-menu {
  top: calc(100% + 10px);
  border: 0;
  box-shadow: 0 22px 52px rgba(2, 30, 73, 0.28);
}
.nav-mega-menu {
  width: 700px;
  border-top: 3px solid #1a71e8;
}
.nav-mega-intro {
  position: relative;
  min-height: 176px;
  padding: 27px 24px;
  background: linear-gradient(145deg, #062a61, #126bdc);
  overflow: hidden;
}
.nav-mega-intro:after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -54px;
  width: 152px;
  height: 152px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 25px rgba(255, 255, 255, 0.06),
    0 0 0 50px rgba(255, 255, 255, 0.04);
}
.nav-mega-intro > * {
  position: relative;
  z-index: 1;
}
.nav-mega-intro b {
  font-size: 24px;
  letter-spacing: 0.03em;
}
.nav-mega-links {
  padding: 16px;
  background: #fff;
}
.nav-mega-links a {
  min-height: 144px;
  padding: 17px 15px;
}
.nav-mega-links a:hover {
  background: linear-gradient(180deg, #f1f7ff, #fff);
}
.nav-mega-links strong {
  font-size: 16px;
}
.nav-compact-menu {
  width: 388px;
  padding: 12px;
  border-top: 3px solid #1a71e8;
}
.nav-compact-menu a {
  position: relative;
  padding: 13px 15px;
  font-weight: 600;
}
.nav-compact-menu a:hover {
  padding-left: 21px;
}
.nav-compact-menu a:hover:after {
  content: "→";
  position: absolute;
  right: 14px;
  color: #1269df;
}
.page-body .site-header {
  border-bottom: 1px solid #e3ebf5;
  box-shadow: 0 4px 20px rgba(13, 49, 94, 0.06);
}
.page-body .site-header .container-main > a[aria-label="九章数科"] {
  border-right-color: #dbe6f3;
}
.page-body .site-primary-nav {
  border-color: #dbe7f4;
  background: #f7faff;
  backdrop-filter: none;
}
.page-body .site-header .nav-link {
  color: #173b6a;
}
.page-body .site-header .nav-link:hover {
  color: #fff;
  background: #1769dc;
}
.page-body .nav-actions {
  border-left-color: #dbe6f3;
}
.page-body .nav-miniapp {
  border-color: #a9bdd6;
  color: #17487f;
}
.page-body .nav-miniapp:hover {
  border-color: #1769dc;
  color: #1769dc;
  background: #f0f7ff;
}
.page-body .site-header .nav-phone {
  color: #1c467a;
}
.site-header.is-solid .container-main > a[aria-label="九章数科"],
.site-header:hover .container-main > a[aria-label="九章数科"] {
  border-right-color: #dbe6f3;
}
.site-header.is-solid .site-primary-nav,
.site-header:hover .site-primary-nav {
  border-color: #dbe7f4;
  background: #f7faff;
  backdrop-filter: none;
}
.site-header.is-solid .nav-link,
.site-header:hover .nav-link {
  color: #173b6a;
}
.site-header.is-solid .nav-link:hover,
.site-header:hover .nav-link:hover {
  color: #fff;
  background: #1769dc;
}
.site-header.is-solid .nav-actions,
.site-header:hover .nav-actions {
  border-left-color: #dbe6f3;
}
.site-header.is-solid .nav-miniapp,
.site-header:hover .nav-miniapp {
  border-color: #a9bdd6;
  color: #17487f;
}
.site-header.is-solid .nav-miniapp:hover,
.site-header:hover .nav-miniapp:hover {
  border-color: #1769dc;
  color: #1769dc;
  background: #f0f7ff;
}
.site-header.is-solid .nav-phone,
.site-header:hover .nav-phone {
  color: #1c467a;
}
@media (max-width: 1280px) {
  .site-header .container-main > a[aria-label="九章数科"] {
    padding-right: 18px;
  }
  .site-primary-nav {
    margin-left: 14px;
    gap: 1px;
    padding: 5px;
  }
  .site-header .nav-link {
    padding: 0 11px;
    font-size: 14px;
  }
  .nav-actions {
    padding-left: 12px;
  }
}
@media (max-width: 1023px) {
  .site-header,
  .site-header .container-main {
    height: 68px;
  }
  .site-header .container-main > a[aria-label="九章数科"] {
    height: 36px;
    padding-right: 0;
    border-right: 0;
  }
  .mobile-panel {
    top: 68px;
  }
}

/* Original menu pattern: clean white bar with full-width product panel */
.original-site-header,
.original-site-header.is-solid,
.original-site-header:hover {
  height: 60px;
  color: #1c2638;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 3px 14px rgba(19, 55, 100, 0.07);
  backdrop-filter: blur(10px);
}
.original-site-header .container-main {
  height: 60px;
  justify-content: flex-start;
}
.original-site-header .container-main > a[aria-label="九章数科"],
.original-site-header.is-solid .container-main > a[aria-label="九章数科"],
.original-site-header:hover .container-main > a[aria-label="九章数科"] {
  height: 38px;
  padding-right: 28px;
  border-right-color: #dce5f1;
}
.original-site-header .logo-light {
  opacity: 0;
}
.original-site-header .logo-dark {
  opacity: 1;
}
.original-primary-nav {
  height: 100%;
  margin-left: 16px;
}
.original-site-header .nav-link,
.original-site-header.is-solid .nav-link,
.original-site-header:hover .nav-link {
  position: relative;
  height: 60px;
  padding: 0 17px;
  color: #1a2332;
  background: transparent;
  box-shadow: none;
  font-size: 16px;
  font-weight: 500;
}
.original-site-header .nav-link:after {
  display: block;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  border-radius: 0;
  background: #1682ee;
  transition:
    width 0.2s ease,
    left 0.2s ease;
}
.original-site-header .nav-link:hover,
.original-site-header .nav-link.active,
.original-site-header .nav-menu.is-current > .nav-link,
.original-site-header.is-solid .nav-link:hover,
.original-site-header.is-solid .nav-link.active,
.original-site-header.is-solid .nav-menu.is-current > .nav-link,
.original-site-header:hover .nav-link:hover,
.original-site-header:hover .nav-link.active,
.original-site-header:hover .nav-menu.is-current > .nav-link {
  color: #1682ee;
  background: transparent;
  box-shadow: none;
}
.original-site-header .nav-link:hover:after,
.original-site-header .nav-link.active:after,
.original-site-header .nav-menu.is-current > .nav-link:after {
  left: 17px;
  width: calc(100% - 34px);
}
.nav-original-panel {
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 79;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background: #fff;
  box-shadow: 0 14px 28px rgba(12, 54, 107, 0.12);
  transition:
    max-height 0.26s ease,
    opacity 0.18s ease;
}
.nav-original-products:hover .nav-original-panel,
.nav-original-products:focus-within .nav-original-panel {
  max-height: 390px;
  opacity: 1;
  pointer-events: auto;
}
.nav-original-panel-inner {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  min-height: 292px;
  padding: 16px 0;
}
.nav-original-side {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 0 16px 0 0;
  border-right: 1px solid #e4ebf3;
}
.nav-original-side button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  color: #263748;
  background: transparent;
  font: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: 0.18s ease;
}
.nav-original-side button span {
  color: #7e8da0;
  font-size: 22px;
  font-weight: 300;
}
.nav-original-side button:hover,
.nav-original-side button.active {
  color: #1382f0;
  background: #edf7ff;
}
.nav-original-side button:hover span,
.nav-original-side button.active span {
  color: #1382f0;
}
.nav-original-content {
  min-width: 0;
  padding-left: 25px;
}
.nav-product-pane {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-content: start;
}
.nav-product-pane.active {
  display: grid;
}
.nav-product-pane a {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 136px;
  padding: 18px;
  border: 1px solid #e6edf5;
  background: linear-gradient(135deg, #fbfdff, #f2f6fa);
  box-shadow: 0 6px 18px rgba(29, 80, 142, 0.07);
  color: #45576d;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.nav-product-pane a:hover {
  transform: translateY(-3px);
  border-color: #c0ddf8;
  box-shadow: 0 12px 24px rgba(31, 108, 187, 0.15);
}
.nav-product-pane b {
  color: #1085f2;
  font-size: 17px;
}
.nav-product-pane span {
  font-size: 13px;
  line-height: 1.65;
}
.nav-product-pane:not(:first-child) {
  grid-template-columns: repeat(2, minmax(0, 290px));
}
.original-site-header ~ .mobile-panel {
  top: 60px;
}
@media (max-width: 1023px) {
  .original-site-header,
  .original-site-header.is-solid,
  .original-site-header:hover,
  .original-site-header .container-main {
    height: 64px;
  }
  .original-site-header .container-main > a[aria-label="九章数科"],
  .original-site-header.is-solid .container-main > a[aria-label="九章数科"],
  .original-site-header:hover .container-main > a[aria-label="九章数科"] {
    border-right: 0;
  }
  .original-site-header ~ .mobile-panel {
    top: 64px;
  }
}

/* Keep the full product menu visible at every viewport height. */
.nav-original-panel {
  display: none;
  height: auto;
  max-height: none;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: none;
}
.nav-original-products:hover .nav-original-panel,
.nav-original-products:focus-within .nav-original-panel {
  display: block;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.nav-original-panel {
  z-index: 200;
}
body.product-menu-open .nav-original-panel {
  display: block;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.nav-original-panel-inner {
  min-height: 0;
  padding: 16px 0 22px;
}
.nav-product-pane a {
  min-height: 112px;
}
@media (max-height: 520px) and (min-width: 1024px) {
  .nav-original-panel-inner {
    padding-top: 10px;
    padding-bottom: 12px;
  }
  .nav-original-side button {
    min-height: 40px;
  }
  .nav-product-pane {
    gap: 12px;
  }
  .nav-product-pane a {
    min-height: 96px;
    padding: 13px;
  }
}

/* SSL panel follows the original link-menu pattern instead of product cards. */
.nav-product-pane.nav-cert-pane {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.nav-cert-pane section {
  padding: 18px;
  border: 1px solid #e6edf5;
  background: linear-gradient(135deg, #fbfdff, #f2f6fa);
  box-shadow: 0 6px 18px rgba(29, 80, 142, 0.07);
}
.nav-cert-pane section > b {
  display: block;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e3eaf2;
  color: #1085f2;
  font-size: 17px;
}
.nav-cert-pane section > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 14px;
}
.nav-product-pane.nav-cert-pane a {
  display: block;
  min-height: 0;
  padding: 7px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #283849;
  font-size: 14px;
  line-height: 1.45;
}
.nav-product-pane.nav-cert-pane a:hover {
  transform: none;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #1085f2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* These URLs live in the stylesheet, so their paths resolve from assets/css. */
.jz-hero-carousel.swiper {
  height: clamp(640px, 52vw, 760px);
  min-height: 0;
}
.jz-hero-carousel.swiper .swiper-wrapper {
  height: 100%;
}
.jz-hero-carousel.swiper .swiper-slide {
  position: relative;
  inset: auto;
  height: 100%;
  visibility: visible;
  opacity: 1;
  background: #edf5ff;
}
.jz-hero-image,
.jz-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jz-hero-slide.is-video {
  background: #edf5ff;
}
.jz-hero-slide.is-video:after {
  background: linear-gradient(
    90deg,
    rgba(245, 250, 255, 0.96) 0%,
    rgba(245, 250, 255, 0.78) 38%,
    rgba(245, 250, 255, 0.18) 72%,
    rgba(245, 250, 255, 0.04) 100%
  );
}
.case-section {
  --case-image: url("../images/case-education-v1.png");
}

@media (max-width: 767px) {
  .jz-hero-controls {
    bottom: 24px;
    gap: 3px;
  }
  .jz-hero-controls button {
    width: 32px;
    font-size: 11px;
  }
}

.header-service-tools {
  display: flex;
  align-self: stretch;
  align-items: center;
  margin-left: auto;
  border-left: 1px solid #e0e8f2;
}
.header-phone-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 22px;
  color: #25334a;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.header-phone-action svg {
  width: 17px;
  height: 17px;
  color: #1760ee;
  stroke-width: 1.8;
}
.header-account-entry {
  display: inline-flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 0 20px;
  color: #fff;
  background: #1760ee;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.header-account-entry:hover {
  color: #fff;
  background: #0b52d6;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}
@media (max-width: 1280px) {
  .header-phone-action {
    padding: 0 14px;
    font-size: 14px;
  }
  .header-account-entry {
    min-width: 96px;
    padding: 0 14px;
    font-size: 14px;
  }
}

.seo-topic-section {
  background: #f4f8fd;
  border-top: 1px solid #e3edf8;
  border-bottom: 1px solid #e3edf8;
}
.seo-topic-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.seo-topic-heading .section-desc {
  margin: 16px auto 0;
}
.seo-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d9e5f2;
  border-left: 1px solid #d9e5f2;
}
.seo-topic-grid a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: start;
  min-height: 144px;
  padding: 24px 22px;
  border-right: 1px solid #d9e5f2;
  border-bottom: 1px solid #d9e5f2;
  color: #173b6a;
  background: rgba(255, 255, 255, 0.44);
  transition:
    background 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}
.seo-topic-grid a > span {
  padding-top: 3px;
  color: #1760ee;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}
.seo-topic-grid strong {
  display: block;
  color: #143866;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.4;
}
.seo-topic-grid p {
  margin: 9px 0 0;
  color: #607693;
  font-size: 14px;
  line-height: 1.75;
}
.seo-topic-grid i {
  padding-top: 3px;
  color: #9ab0cc;
  font-size: 18px;
  font-style: normal;
  transition:
    color 0.24s ease,
    transform 0.24s ease;
}
.seo-topic-grid a:hover {
  background: #fff;
  box-shadow: 0 15px 30px rgba(34, 83, 141, 0.1);
  transform: translateY(-3px);
}
.seo-topic-grid a:hover i {
  color: #1760ee;
  transform: translateX(4px);
}
.seo-topic-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: #1760ee;
  font-size: 15px;
  font-weight: 650;
}
.seo-topic-all span {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.seo-topic-all:hover span {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .seo-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .seo-topic-heading {
    margin-bottom: 28px;
    text-align: left;
  }
  .seo-topic-heading .section-desc {
    margin-left: 0;
  }
  .seo-topic-grid {
    grid-template-columns: 1fr;
  }
  .seo-topic-grid a {
    min-height: 0;
    padding: 19px 16px;
  }
}

/* Homepage quick insight strip */
.jz-core-strip {
  z-index: 5;
  height: 1px;
  margin-top: 0;
  padding: 0;
  overflow: visible;
  background: #edf5ff;
}
.jz-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(310px, 1.2fr);
  min-height: 126px;
  margin-bottom: -10px;
  overflow: hidden;
  border: 1px solid #dce7f2;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(22, 66, 121, 0.12);
  transform: translateY(-62px);
}
.jz-core-grid > .jz-core-item,
.jz-core-grid > .jz-core-contact {
  display: block;
  min-width: 0;
  padding: 22px 42px 20px 26px;
  border-right: 1px solid #e2eaf3;
  background: #fff;
}
.jz-core-grid > .jz-core-item > span,
.jz-core-grid > .jz-core-contact > span {
  margin: 0 0 9px;
  color: #71839b;
  font-size: 12px;
}
.jz-core-grid > .jz-core-item strong,
.jz-core-grid > .jz-core-contact strong {
  color: #123a69;
  font-size: 17px;
  font-weight: 650;
}
.jz-core-grid > .jz-core-item p,
.jz-core-grid > .jz-core-contact p {
  margin: 6px 0 0;
  color: #607793;
  font-size: 13px;
  line-height: 1.65;
}
.jz-core-grid > .jz-core-item:after {
  display: none;
}
.jz-core-grid > .jz-core-item:hover {
  background: #f8fbff;
}
.jz-core-grid > .jz-core-contact {
  padding-right: 26px;
  border-right: 0;
  background: #f4f9ff;
}
.jz-core-grid > .jz-core-contact:after {
  right: -38px;
  bottom: -74px;
  display: block;
}
.jz-core-grid > .jz-core-contact strong {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .jz-core-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    transform: translateY(-44px);
  }
  .jz-core-grid > .jz-core-contact {
    border-top: 1px solid #e2eaf3;
  }
}
@media (max-width: 768px) {
  .jz-core-strip {
    height: auto;
  }
  .jz-core-grid {
    margin-bottom: 0;
    transform: none;
  }
  .jz-core-grid > .jz-core-item,
  .jz-core-grid > .jz-core-contact {
    min-height: 112px;
    padding: 17px 28px 16px 16px;
  }
  .jz-core-grid > .jz-core-item p,
  .jz-core-grid > .jz-core-contact p {
    display: none;
  }
  .jz-core-grid > .jz-core-contact strong {
    font-size: 16px;
  }
}

/* Full-width core service strip */
.jz-core-strip {
  z-index: 5;
  height: 1px;
  margin-top: 0;
  background: #edf5ff;
}
.jz-core-grid.container-main {
  display: grid;
  grid-template-columns: 1.18fr repeat(5, minmax(0, 1fr));
  width: 100%;
  max-width: none;
  min-height: 124px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(170, 196, 228, 0.76);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 17px 38px rgba(21, 64, 119, 0.1);
  transform: translateY(-56px);
}
.jz-core-grid > .jz-core-brand,
.jz-core-grid > a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 18px clamp(20px, 2vw, 38px);
  overflow: hidden;
  border-right: 1px solid rgba(188, 207, 229, 0.8);
}
.jz-core-grid > .jz-core-brand {
  color: #fff;
  background: #1760ee;
}
.jz-core-brand:after {
  right: -22px;
  bottom: -72px;
  width: 168px;
  height: 168px;
  border-color: rgba(182, 215, 255, 0.3);
}
.jz-core-grid > a {
  isolation: isolate;
  color: #183a6c;
  background: rgba(255, 255, 255, 0.94);
  transition: color 0.42s ease;
}
.jz-core-grid > a:before {
  display: none;
}
.jz-core-grid > a:after {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  height: auto;
  content: "";
  background: linear-gradient(135deg, #1760ee 0%, #1760ee 58%, #2377f2 100%);
  opacity: 0;
  transform: translateY(104%) scale(1.04);
  transform-origin: bottom center;
  pointer-events: none;
  will-change: transform, opacity;
  transition:
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.58s ease;
}
.jz-core-grid > a em {
  position: relative;
  display: block;
  z-index: 1;
  margin: 0 0 9px;
  color: #4d83c9;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.26s ease;
}
.jz-core-grid > a strong {
  position: relative;
  z-index: 1;
  color: #163a70;
  font-size: 18px;
  font-weight: 650;
  transition: color 0.26s ease;
}
.jz-core-grid > a span {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  color: #6682a8;
  font-size: 12px;
  line-height: 1.55;
  transition: color 0.26s ease;
}
.jz-core-grid > a:hover,
.jz-core-grid > a:focus-visible {
  color: #fff;
}
.jz-core-grid > a:hover:after,
.jz-core-grid > a:focus-visible:after {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.jz-core-grid > a:hover em,
.jz-core-grid > a:focus-visible em {
  color: #b9d8ff;
}
.jz-core-grid > a:hover strong,
.jz-core-grid > a:focus-visible strong {
  color: #fff;
}
.jz-core-grid > a:hover span,
.jz-core-grid > a:focus-visible span {
  color: #d9eaff;
}
.jz-core-grid > a:focus-visible {
  z-index: 1;
  outline: 2px solid #1760ee;
  outline-offset: -2px;
}
@media (max-width: 1024px) {
  .jz-core-grid.container-main {
    grid-template-columns: 1.18fr repeat(3, minmax(0, 1fr));
    transform: translateY(-42px);
  }
  .jz-core-grid > a:nth-child(5) {
    border-left: 0;
  }
}
@media (max-width: 768px) {
  .jz-core-strip {
    height: auto;
  }
  .jz-core-grid.container-main {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    transform: none;
  }
  .jz-core-grid > .jz-core-brand {
    grid-column: span 2;
    min-height: 76px;
  }
  .jz-core-grid > .jz-core-brand,
  .jz-core-grid > a {
    min-height: 96px;
    padding: 14px;
  }
  .jz-core-grid > a:nth-child(odd) {
    border-right: 0;
  }
  .jz-core-grid > a em {
    margin-bottom: 8px;
  }
  .jz-core-grid > a strong {
    font-size: 16px;
  }
  .jz-core-grid > a span {
    font-size: 12px;
  }
}

/* Product channel */
.product-channel {
  color: #102c57;
  background: #fff;
}
.product-channel-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #edf5ff;
}
.product-channel-hero:before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(250, 253, 255, 0.99) 0%,
    rgba(249, 253, 255, 0.96) 43%,
    rgba(242, 249, 255, 0.8) 58%,
    rgba(235, 247, 255, 0.22) 78%,
    rgba(235, 247, 255, 0.08) 100%
  );
}
.product-channel-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.82;
}
.product-channel-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  padding: 122px 0 82px;
}
.product-channel-hero-copy {
  width: min(690px, 58%);
}
.product-channel-kicker,
.product-channel-heading p {
  margin: 0 0 16px;
  color: #1760ee;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.product-channel-hero h1 {
  margin: 0;
  color: #102b57;
  font-size: clamp(38px, 3.4vw, 48px);
  font-weight: 650;
  line-height: 1.18;
  letter-spacing: 0;
}
.product-channel-hero-copy > p:not(.product-channel-kicker) {
  max-width: 570px;
  margin: 28px 0 0;
  color: #496b97;
  font-size: 17px;
  line-height: 1.9;
}
.product-channel-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}
.product-channel-hero-system {
  position: absolute;
  top: 50%;
  right: 0;
  width: 470px;
  height: 320px;
  transform: translateY(-45%);
}
.product-channel-hero-system:before {
  position: absolute;
  inset: 42px 32px 16px;
  content: "";
  border: 1px solid rgba(61, 133, 221, 0.24);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.36),
    rgba(231, 245, 255, 0.08)
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.product-channel-hero-system:after {
  position: absolute;
  top: 112px;
  right: 85px;
  bottom: 61px;
  left: 90px;
  content: "";
  border-top: 1px solid rgba(42, 121, 219, 0.38);
  border-bottom: 1px solid rgba(42, 121, 219, 0.22);
  transform: skewY(-16deg);
}
.product-system-caption {
  position: absolute;
  top: 14px;
  right: 36px;
  color: #3a78c4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
}
.product-system-core {
  position: absolute;
  z-index: 2;
  top: 103px;
  left: 151px;
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 170px;
  padding: 22px 10px 19px;
  color: #13457e;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(89, 157, 237, 0.52);
  box-shadow: 0 14px 30px rgba(33, 108, 192, 0.13);
  backdrop-filter: blur(8px);
}
.product-system-core img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.product-system-core b {
  font-size: 16px;
  font-weight: 700;
}
.product-system-core small,
.product-system-node small {
  color: #6d91ba;
  font-size: 11px;
}
.product-system-node {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 26px 1fr;
  column-gap: 8px;
  align-items: center;
  width: 166px;
  padding: 11px 13px;
  color: #1e568f;
  background: rgba(248, 252, 255, 0.78);
  border: 1px solid rgba(133, 183, 239, 0.46);
  box-shadow: 0 9px 20px rgba(43, 108, 180, 0.08);
  backdrop-filter: blur(7px);
}
.product-system-node i {
  grid-row: span 2;
  color: #1e72dc;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.product-system-node span {
  font-size: 14px;
  font-weight: 700;
}
.product-system-node-a {
  top: 52px;
  left: 0;
}
.product-system-node-b {
  right: 0;
  bottom: 54px;
}
.product-system-node-c {
  bottom: 0;
  left: 30px;
}
.product-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding: 15px 22px;
  color: #fff;
  background: #1760ee;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(23, 96, 238, 0.22);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}
.product-button-primary:hover {
  color: #fff;
  background: #0d4fd0;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(23, 96, 238, 0.3);
}
.product-button-primary span,
.product-button-text span {
  font-size: 19px;
  line-height: 1;
}
.product-button-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #234d85;
  font-size: 14px;
  font-weight: 700;
}
.product-button-text:hover {
  color: #1760ee;
}
.product-channel-switch {
  position: relative;
  z-index: 2;
  margin-top: -60px;
}
.product-channel-switch .container-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce8f8;
  box-shadow: 0 18px 45px rgba(31, 77, 132, 0.12);
}
.product-channel-switch a {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 17px;
  row-gap: 3px;
  align-content: center;
  min-height: 120px;
  padding: 22px 38px;
  color: #254c80;
  border-right: 1px solid #e1ebf8;
  transition:
    color 0.32s ease,
    background 0.32s ease;
}
.product-channel-switch a:last-child {
  border-right: 0;
}
.product-channel-switch :is(i, svg) {
  grid-row: span 2;
  display: block;
  width: 54px;
  min-width: 54px;
  height: 54px;
  padding: 13px;
  color: #1760ee;
  border: 1px solid #b8d4f8;
  background: linear-gradient(145deg, #fff, #eaf4ff);
  box-shadow: 0 8px 18px rgba(40, 109, 187, 0.1);
}
.product-channel-switch span {
  grid-column: 2;
  min-width: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.product-channel-switch small {
  grid-column: 2;
  min-width: 0;
  margin: 0;
  color: #7691b2;
  font-size: 13px;
  line-height: 1.45;
  white-space: normal;
}
.product-channel-switch a:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: #1760ee;
  transform: scaleX(0);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-channel-switch a:hover,
.product-channel-switch a.active {
  color: #fff;
  background: #1760ee;
}
.product-channel-switch a:hover :is(i, svg),
.product-channel-switch a.active :is(i, svg) {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.product-channel-switch a:hover small,
.product-channel-switch a.active small {
  color: #dbeaff;
}
.product-channel-switch a:hover:after,
.product-channel-switch a.active:after {
  background: #8ac7ff;
  transform: scaleX(1);
}
.product-channel-suite {
  padding-bottom: 130px;
  background: #fff;
}
.product-channel-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  margin-bottom: 52px;
}
.product-channel-heading h2 {
  margin: 0;
  color: #102b57;
  font-size: clamp(29px, 3.1vw, 46px);
  font-weight: 650;
  line-height: 1.25;
}
.product-channel-heading > span {
  max-width: 430px;
  padding-bottom: 4px;
  color: #587698;
  font-size: 15px;
  line-height: 1.85;
}
.product-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-channel-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 28px 30px;
  overflow: hidden;
  color: #153968;
  background: linear-gradient(145deg, #f8fbff, #eff6ff);
  border: 1px solid #dbe9f8;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}
.product-channel-card:after {
  position: absolute;
  z-index: 0;
  right: -45px;
  bottom: -88px;
  width: 260px;
  height: 180px;
  content: "";
  background: url("../images/product-matrix-blue-flow-v1.png") center/cover
    no-repeat;
  opacity: 0.22;
  transform: rotate(-8deg);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-channel-card:hover {
  color: #153968;
  background: #fff;
  border-color: #a6cbfb;
  box-shadow: 0 20px 42px rgba(25, 75, 131, 0.13);
  transform: translateY(-7px);
}
.product-channel-card:hover:after {
  opacity: 0.48;
  transform: rotate(-2deg) translate(-12px, -7px);
}
.product-channel-card > * {
  position: relative;
  z-index: 1;
}
.product-channel-feature {
  grid-row: span 2;
  min-height: 574px;
  padding: 36px 40px;
  color: #fff;
  background: #1a63ba;
  border: 0;
  justify-content: flex-start;
}
.product-channel-feature:before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(
    160deg,
    rgba(22, 87, 171, 0.98),
    rgba(44, 120, 211, 0.94)
  );
}
.product-channel-feature:after {
  display: block;
  right: -96px;
  bottom: -62px;
  width: 650px;
  height: 370px;
  background: url("../images/product-matrix-blue-flow-v1.png") right
    bottom/cover no-repeat;
  opacity: 0.24;
  transform: none;
  mix-blend-mode: screen;
}
.product-channel-feature:hover {
  color: #fff;
  background: #10376e;
  border: 0;
  box-shadow: 0 24px 50px rgba(19, 69, 134, 0.25);
}
.product-channel-ha {
  grid-column: span 2;
}
.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card-top span {
  color: #5a83b6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
}
.product-card-top :is(i, svg) {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #1760ee;
  background: #fff;
  border: 1px solid #cbe0f9;
}
.product-channel-feature .product-card-top span {
  color: #a8d1ff;
}
.product-channel-feature .product-card-top :is(i, svg) {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}
.product-channel-card h3 {
  margin: 0 0 14px;
  color: #123d77;
  font-size: 23px;
  font-weight: 650;
  line-height: 1.3;
}
.product-channel-card p {
  max-width: 520px;
  margin: 0;
  color: #59789b;
  font-size: 14px;
  line-height: 1.8;
}
.product-channel-feature h3,
.product-channel-feature p {
  color: #fff;
}
.product-channel-feature p {
  color: #d6e8ff;
}
.product-channel-feature .product-card-top {
  margin-bottom: 54px;
}
.product-channel-feature > div:nth-child(2) {
  max-width: 440px;
}
.product-channel-feature ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}
.product-channel-feature li {
  padding: 7px 10px;
  color: #dceeff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
}
.product-channel-feature .product-card-more {
  margin-top: 22px;
}
.product-card-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.product-card-tags li {
  padding: 6px 9px;
  color: #4776ab;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #cfe1f6;
  font-size: 12px;
  line-height: 1;
}
.product-channel-card:hover .product-card-tags li {
  color: #1760ee;
  border-color: #a9cff8;
}
.product-ha-specs {
  max-width: 550px;
}

/* Product-specific background language: each product keeps its own visual cue. */
#zhishu:after {
  background-image: url("../images/product-zhishu-hub-bg.png");
  background-position: right bottom;
  opacity: 0.56;
  mix-blend-mode: normal;
}
#team:after,
#ops:after,
#ha:after {
  inset: 0;
  width: auto;
  height: auto;
  background-size: cover;
  background-position: right bottom;
  transform: none;
}
#team:after {
  background-image: url("../images/solution-card-idle-v1.png");
  opacity: 0.3;
  -webkit-mask-image: linear-gradient(135deg, transparent 38%, #000 100%);
  mask-image: linear-gradient(135deg, transparent 38%, #000 100%);
}
#ops:after {
  background-image: url("../images/solutions-datacenter-bg-v1.png");
  opacity: 0.12;
  filter: sepia(0.16) hue-rotate(164deg) saturate(1.2);
  -webkit-mask-image: linear-gradient(135deg, transparent 46%, #000 100%);
  mask-image: linear-gradient(135deg, transparent 46%, #000 100%);
}
#ha:after {
  background-image: url("../images/solutions-blue-flow-v1.png");
  opacity: 0.34;
  -webkit-mask-image: linear-gradient(135deg, transparent 42%, #000 100%);
  mask-image: linear-gradient(135deg, transparent 42%, #000 100%);
}
#zhishu:hover:after {
  opacity: 0.68;
  transform: translate(-12px, -6px);
}
#team:hover:after {
  opacity: 0.4;
  transform: scale(1.03);
}
#ops:hover:after {
  opacity: 0.17;
  transform: scale(1.03);
}
#ha:hover:after {
  opacity: 0.44;
  transform: scale(1.025);
}
.product-card-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: #1760ee;
  font-size: 13px;
}
.product-card-more span {
  font-size: 18px;
  transition: transform 0.25s ease;
}
.product-channel-card:hover .product-card-more span {
  transform: translateX(4px);
}
.product-channel-feature .product-card-more {
  color: #fff;
}
.product-channel-switch a:focus-visible,
.product-channel-card:focus-visible,
.product-foundation-grid a:focus-visible {
  z-index: 3;
  outline: 3px solid #1760ee;
  outline-offset: 3px;
}
#software,
#security,
#domain {
  scroll-margin-top: 84px;
}
.product-channel-foundation {
  padding: 110px 0 120px;
  background: #0c2a57;
}
.product-channel-heading-light h2 {
  color: #fff;
}
.product-channel-heading-light p {
  color: #79b7ff;
}
.product-channel-heading-light > span {
  color: #b7d2f2;
}
.product-foundation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.product-foundation-grid a {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 220px;
  padding: 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(163, 205, 255, 0.24);
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}
.product-foundation-grid a:hover {
  color: #fff;
  background: rgba(41, 120, 226, 0.3);
  border-color: rgba(176, 216, 255, 0.56);
  transform: translateY(-5px);
}
.product-foundation-grid > a > :is(i, svg) {
  width: 58px;
  height: 58px;
  padding: 15px;
  color: #9fd0ff;
  border: 1px solid rgba(159, 208, 255, 0.36);
}
.product-foundation-grid span {
  color: #8cc7ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}
.product-foundation-grid h3 {
  margin: 10px 0;
  font-size: 25px;
  font-weight: 650;
}
.product-foundation-grid p {
  margin: 0;
  color: #c1d9f2;
  font-size: 14px;
  line-height: 1.8;
}
.product-foundation-grid b {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #fff;
  font-size: 13px;
}
.product-foundation-grid em {
  font-size: 20px;
  font-style: normal;
  transition: transform 0.25s ease;
}
.product-foundation-grid a:hover em {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .product-channel-hero {
    min-height: 560px;
  }
  .product-channel-hero-inner {
    min-height: 560px;
    padding: 120px 0 85px;
  }
  .product-channel-hero-copy {
    width: 70%;
  }
  .product-channel-hero-system {
    display: none;
  }
  .product-channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-channel-feature {
    grid-row: auto;
    grid-column: span 2;
    min-height: 420px;
  }
  .product-channel-ha {
    grid-column: auto;
  }
}
@media (max-width: 768px) {
  .product-channel-hero {
    min-height: 540px;
  }
  .product-channel-hero:before {
    background: linear-gradient(
      180deg,
      rgba(250, 253, 255, 0.96),
      rgba(243, 250, 255, 0.88)
    );
  }
  .product-channel-hero-art {
    object-position: 62% center;
    opacity: 0.67;
  }
  .product-channel-hero-inner {
    min-height: 540px;
    padding: 96px 0 66px;
  }
  .product-channel-hero-copy {
    width: 100%;
  }
  .product-channel-hero h1 {
    font-size: 39px;
  }
  .product-channel-hero-copy > p:not(.product-channel-kicker) {
    font-size: 15px;
    line-height: 1.8;
  }
  .product-channel-hero-actions {
    gap: 18px;
    margin-top: 30px;
  }
  .product-button-primary {
    gap: 22px;
    padding: 14px 16px;
  }
  .product-channel-switch {
    margin-top: 0;
  }
  .product-channel-switch .container-main {
    grid-template-columns: 1fr;
  }
  .product-channel-switch a {
    min-height: 82px;
    padding: 14px 20px;
    border-right: 0;
    border-bottom: 1px solid #e1ebf8;
  }
  .product-channel-switch a:last-child {
    border-bottom: 0;
  }
  .product-channel-suite {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .product-channel-heading {
    display: block;
    margin-bottom: 34px;
  }
  .product-channel-heading > span {
    display: block;
    margin-top: 16px;
    font-size: 14px;
  }
  .product-channel-grid {
    grid-template-columns: 1fr;
  }
  .product-channel-feature,
  .product-channel-ha {
    grid-column: auto;
    min-height: 440px;
  }
  .product-channel-card {
    min-height: 270px;
    padding: 26px;
  }
  .product-channel-feature {
    padding: 30px;
  }
  .product-channel-foundation {
    padding: 76px 0;
  }
  .product-foundation-grid {
    grid-template-columns: 1fr;
  }
  .product-foundation-grid a {
    grid-template-columns: 52px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 26px;
  }
  .product-foundation-grid > a > :is(i, svg) {
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .product-foundation-grid h3 {
    font-size: 21px;
  }
  .product-foundation-grid b {
    grid-column: 2;
  }
}

/* The shared header aligns with the page content width. */
.original-site-header > .container-main,
.nav-original-panel > .nav-original-panel-inner.container-main {
  width: min(1440px, calc(100% - 32px));
}

/* Product detail pages */
.product-detail-page {
  background: #fff;
  color: #102d59;
}
.product-detail-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #0b3266;
}
.product-detail-hero:before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(7, 31, 68, 0.96) 0%,
    rgba(10, 48, 100, 0.91) 40%,
    rgba(9, 46, 96, 0.58) 67%,
    rgba(8, 46, 97, 0.24) 100%
  );
}
.product-detail-hero:after {
  position: absolute;
  z-index: 1;
  right: 10%;
  bottom: -200px;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(161, 210, 255, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(136, 196, 255, 0.05),
    0 0 0 140px rgba(136, 196, 255, 0.035);
}
.product-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  transform: scale(1.02);
}
.product-detail-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: 114px 0 56px;
  color: #fff;
}
.product-detail-crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9cc9ff;
  font-size: 13px;
}
.product-detail-crumb a {
  color: #d7ebff;
}
.product-detail-crumb span {
  color: rgba(196, 225, 255, 0.55);
}
.product-detail-hero-copy {
  max-width: 670px;
  margin: auto 0;
}
.product-detail-hero-copy > p,
.detail-kicker {
  margin: 0 0 18px;
  color: #7fc2ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.9px;
}
.product-detail-hero-copy h1 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.2vw, 62px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0;
}
.product-detail-hero-line {
  width: 74px;
  height: 3px;
  margin: 28px 0 17px;
  background: #54adff;
}
.product-detail-hero-copy > span {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 650;
}
.product-detail-hero-copy strong {
  display: block;
  margin-top: 12px;
  color: #b9daff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}
.product-detail-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  padding: 15px 18px;
  margin-top: 34px;
  color: #fff;
  background: #1760ee;
  box-shadow: 0 14px 32px rgba(0, 65, 176, 0.33);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.28s ease,
    background 0.28s ease;
}
.product-detail-main-cta:hover {
  color: #fff;
  background: #3383ff;
  transform: translateY(-3px);
}
.product-detail-main-cta em {
  font-size: 20px;
  font-style: normal;
}
.product-detail-hero-stats {
  display: flex;
  align-self: flex-end;
  gap: 0;
  margin-top: auto;
  border-top: 1px solid rgba(188, 223, 255, 0.32);
}
.product-detail-hero-stats div {
  display: flex;
  flex-direction: column;
  min-width: 170px;
  padding: 16px 24px 0;
  border-left: 1px solid rgba(188, 223, 255, 0.22);
}
.product-detail-hero-stats b {
  color: #fff;
  font-size: 26px;
  line-height: 1;
}
.product-detail-hero-stats span {
  margin-top: 7px;
  color: #aed4ff;
  font-size: 12px;
}
.product-detail-subnav {
  position: relative;
  z-index: 4;
  margin-top: -30px;
}
.product-detail-subnav .container-main {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 62px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dbe9f7;
  box-shadow: 0 12px 28px rgba(18, 57, 112, 0.12);
}
.product-detail-subnav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 27px;
  color: #547499;
  font-size: 14px;
  font-weight: 650;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}
.product-detail-subnav a:after {
  position: absolute;
  right: 27px;
  bottom: 0;
  left: 27px;
  height: 3px;
  content: "";
  background: #1760ee;
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.product-detail-subnav a:hover,
.product-detail-subnav a.active {
  color: #1760ee;
  background: #f4f9ff;
}
.product-detail-subnav a.active:after {
  opacity: 1;
  transform: none;
}
.product-detail-intro {
  padding-top: 120px;
  padding-bottom: 120px;
}
.product-detail-intro-grid {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.82fr);
  gap: 12%;
  align-items: start;
}
.product-detail-intro h2,
.product-detail-section-head h2,
.product-detail-flow-heading h2 {
  margin: 0;
  color: #102e5c;
  font-size: clamp(31px, 3.3vw, 48px);
  font-weight: 700;
  line-height: 1.24;
}
.product-detail-intro-copy {
  padding-top: 37px;
}
.product-detail-intro-copy p {
  margin: 0 0 18px;
  color: #58799f;
  font-size: 16px;
  line-height: 1.9;
}
.product-detail-intro-copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: #1760ee;
  font-size: 14px;
  font-weight: 700;
}
.product-detail-intro-copy a span {
  font-size: 20px;
}
.product-detail-capabilities {
  padding: 110px 0 120px;
  background: #f4f8fd;
}
.product-detail-section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.product-detail-section-head p {
  margin: 0 0 17px;
  color: #1760ee;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
}
.product-detail-section-head > span {
  display: block;
  max-width: 610px;
  margin: 19px auto 0;
  color: #5a789e;
  font-size: 15px;
  line-height: 1.85;
}
.product-detail-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.product-detail-capability-grid article {
  min-height: 360px;
  padding: 28px;
  color: #153d72;
  background: #fff;
  border: 1px solid #dbe9f7;
  box-shadow: 0 12px 25px rgba(30, 78, 135, 0.045);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}
.product-detail-capability-grid article:hover {
  border-color: #a9cef9;
  box-shadow: 0 20px 42px rgba(30, 78, 135, 0.13);
  transform: translateY(-8px);
}
.product-detail-capability-grid :is(i, svg) {
  display: block;
  width: 47px;
  height: 47px;
  padding: 12px;
  margin-bottom: 34px;
  color: #1760ee;
  background: #f0f7ff;
  border: 1px solid #c6def8;
}
.product-detail-capability-grid span {
  color: #6293c8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.product-detail-capability-grid h3 {
  margin: 14px 0 12px;
  color: #123d77;
  font-size: 21px;
  font-weight: 700;
}
.product-detail-capability-grid p {
  min-height: 76px;
  margin: 0;
  color: #5b7da2;
  font-size: 14px;
  line-height: 1.8;
}
.product-detail-capability-grid ul {
  padding: 18px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid #e4eef9;
  list-style: none;
}
.product-detail-capability-grid li {
  position: relative;
  padding-left: 14px;
  margin: 8px 0;
  color: #2e6199;
  font-size: 13px;
}
.product-detail-capability-grid li:before {
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  content: "";
  background: #2580ed;
}
.product-detail-features {
  padding-top: 112px;
  padding-bottom: 112px;
  background: #fff;
}
.product-detail-features-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #dce8f6;
}
.product-detail-features-heading h2 {
  margin: 0;
  color: #102e5c;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.25;
}
.product-detail-features-heading > span {
  padding: 9px 13px;
  color: #1760ee;
  background: #eef6ff;
  font-size: 13px;
  font-weight: 700;
}
.product-detail-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid #dce8f6;
}
.product-detail-feature-list article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  min-height: 160px;
  padding: 30px 28px;
  border-right: 1px solid #dce8f6;
  border-bottom: 1px solid #dce8f6;
  transition: background 0.3s ease;
}
.product-detail-feature-list article:hover {
  background: #f4f9ff;
}
.product-detail-feature-list b {
  color: #1760ee;
  font-size: 16px;
  line-height: 1.3;
}
.product-detail-feature-list h3 {
  margin: 0 0 9px;
  color: #123d77;
  font-size: 20px;
  font-weight: 700;
}
.product-detail-feature-list p {
  margin: 0;
  color: #5a7da3;
  font-size: 14px;
  line-height: 1.8;
}
.product-detail-architecture {
  padding-top: 112px;
  padding-bottom: 120px;
  background: #f3f7fc;
}
.product-detail-architecture-list {
  max-width: 1120px;
  padding: 26px 28px 20px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid #e0eaf5;
}
.product-detail-architecture-list > article {
  position: relative;
  padding: 0 0 28px 28px;
  border-left: 3px solid #3c88f5;
}
.product-detail-architecture-list > article:last-child {
  padding-bottom: 0;
}
.product-detail-architecture-list > article > header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 15px -39px;
}
.product-detail-architecture-list > article > header span {
  width: 18px;
  height: 18px;
  background: #3c88f5;
  border: 4px solid #eaf3ff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #3c88f5;
}
.product-detail-architecture-list h3 {
  margin: 0;
  color: #123d77;
  font-size: 20px;
  font-weight: 700;
}
.product-detail-architecture-list > article > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-detail-architecture-list section {
  min-height: 126px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e3edf8;
  box-shadow: 0 9px 18px rgba(27, 76, 132, 0.04);
}
.product-detail-architecture-list section:hover {
  border-color: #aecff4;
  box-shadow: 0 14px 26px rgba(27, 76, 132, 0.1);
}
.product-detail-architecture-list :is(i, svg) {
  width: 27px;
  height: 27px;
  color: #2a7def;
}
.product-detail-architecture-list h4 {
  margin: 11px 0 5px;
  color: #143e76;
  font-size: 16px;
  font-weight: 700;
}
.product-detail-architecture-list p {
  margin: 0;
  color: #5c7fa4;
  font-size: 13px;
  line-height: 1.65;
}
.product-detail-highlights {
  padding: 104px 0 110px;
  color: #fff;
  background: linear-gradient(135deg, #0d3266, #124d9c);
}
.product-detail-highlights header {
  max-width: 1120px;
  margin: 0 auto 46px;
  text-align: center;
}
.product-detail-highlights header p {
  margin: 0 0 16px;
  color: #82c4ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}
.product-detail-highlights header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(31px, 3.1vw, 46px);
  font-weight: 700;
}
.product-detail-highlight-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 350px;
  background: rgba(0, 23, 60, 0.22);
  border: 1px solid rgba(159, 211, 255, 0.25);
}
.product-detail-highlight-tabs {
  display: flex;
  flex-direction: column;
  padding: 14px;
  border-right: 1px solid rgba(159, 211, 255, 0.21);
}
.product-detail-highlight-tabs button {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 19px 17px;
  color: #c3e1ff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(159, 211, 255, 0.16);
  font-size: 16px;
  font-weight: 650;
  text-align: left;
  transition:
    color 0.28s ease,
    background 0.28s ease;
}
.product-detail-highlight-tabs button:last-child {
  border-bottom: 0;
}
.product-detail-highlight-tabs button.active,
.product-detail-highlight-tabs button:hover {
  color: #fff;
  background: #2774dd;
}
.product-detail-highlight-tabs :is(i, svg) {
  width: 25px;
  height: 25px;
}
.product-detail-highlight-panel {
  position: relative;
  padding: 48px 58px;
}
.product-detail-highlight-panel:after {
  position: absolute;
  right: 40px;
  bottom: 24px;
  width: 154px;
  height: 154px;
  content: "";
  border: 1px solid rgba(154, 211, 255, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 0 27px rgba(154, 211, 255, 0.05),
    0 0 0 54px rgba(154, 211, 255, 0.025);
}
.product-detail-highlight-panel article {
  display: none;
  position: relative;
  z-index: 1;
  max-width: 650px;
}
.product-detail-highlight-panel article.active {
  display: block;
  animation: product-detail-fade 0.38s ease both;
}
.product-detail-highlight-panel span {
  color: #8dcaff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
}
.product-detail-highlight-panel h3 {
  margin: 22px 0 16px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}
.product-detail-highlight-panel p {
  margin: 0;
  color: #c9e5ff;
  font-size: 16px;
  line-height: 1.95;
}
.product-detail-highlight-panel article > :is(i, svg) {
  position: absolute;
  right: -245px;
  top: 50%;
  width: 80px;
  height: 80px;
  padding: 19px;
  color: #a8daff;
  border: 1px solid rgba(168, 218, 255, 0.42);
  transform: translateY(-50%);
}
@keyframes product-detail-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.product-detail-flow {
  background: #fff;
}
.product-detail-flow > .container-main {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 88px;
  align-items: center;
}
.product-detail-flow-heading > span {
  display: block;
  margin-top: 23px;
  color: #607fa2;
  font-size: 15px;
  line-height: 1.85;
}
.product-detail-flow-board {
  position: relative;
  min-height: 490px;
  padding: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, #103c78, #0a2856);
  box-shadow: 0 25px 50px rgba(17, 56, 106, 0.18);
}
.product-detail-flow-board:before {
  position: absolute;
  top: -130px;
  right: -90px;
  width: 400px;
  height: 400px;
  content: "";
  border: 1px solid rgba(154, 210, 255, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(154, 210, 255, 0.05),
    0 0 0 140px rgba(154, 210, 255, 0.025);
}
.product-detail-flow-board:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 56%;
  content: "";
  background:
    linear-gradient(135deg, transparent 30%, rgba(39, 119, 215, 0.28)),
    url("../images/solution-card-idle-v1.png") right bottom/cover no-repeat;
  opacity: 0.75;
}
.product-detail-flow-rail {
  position: absolute;
  z-index: 1;
  top: 118px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: rgba(151, 205, 255, 0.5);
}
.product-detail-flow-board article {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: calc(50% - 4px);
  min-height: 214px;
  padding: 25px;
  vertical-align: top;
  color: #fff;
}
.product-detail-flow-board article:nth-of-type(even) {
  margin-top: 88px;
}
.product-detail-flow-board article > b {
  position: absolute;
  top: 17px;
  right: 19px;
  color: #8ec8ff;
  font-size: 13px;
}
.product-detail-flow-board :is(i, svg) {
  width: 46px;
  height: 46px;
  padding: 12px;
  color: #a4d4ff;
  background: rgba(126, 196, 255, 0.12);
  border: 1px solid rgba(167, 214, 255, 0.32);
}
.product-detail-flow-board h3 {
  margin: 24px 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.product-detail-flow-board p {
  max-width: 205px;
  margin: 0;
  color: #c7e4ff;
  font-size: 13px;
  line-height: 1.75;
}
.product-detail-scenes {
  padding: 115px 0 125px;
  color: #fff;
  background: #0a2a57;
}
.product-detail-section-head-light h2 {
  color: #fff;
}
.product-detail-section-head-light p {
  color: #79c2ff;
}
.product-detail-section-head-light > span {
  color: #b6d3ef;
}
.product-detail-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.product-detail-scene-grid article {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(146, 202, 255, 0.22);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.product-detail-scene-grid article:before {
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(106, 181, 255, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(106, 181, 255, 0.04);
}
.product-detail-scene-grid article:hover {
  background: rgba(34, 110, 213, 0.28);
  transform: translateY(-6px);
}
.product-detail-scene-grid span {
  color: #83c5ff;
  font-size: 12px;
  font-weight: 800;
}
.product-detail-scene-grid h3 {
  margin: 35px 0 14px;
  color: #fff;
  font-size: 23px;
  font-weight: 700;
}
.product-detail-scene-grid p {
  max-width: 340px;
  margin: 0;
  color: #c4dcf2;
  font-size: 14px;
  line-height: 1.8;
}
.product-detail-scene-grid a {
  position: absolute;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.product-detail-scene-grid b {
  font-size: 19px;
}
.product-detail-contact {
  padding: 66px 0;
  background: #1760ee;
}
.product-detail-contact .container-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.product-detail-contact p {
  margin: 0 0 12px;
  color: #bfe1ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
}
.product-detail-contact h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.5vw, 37px);
  font-weight: 700;
}
.product-detail-contact a {
  display: flex;
  align-items: center;
  gap: 30px;
  min-width: 206px;
  padding: 18px 22px;
  color: #1760ee;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}
.product-detail-contact a span {
  margin-left: auto;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .product-detail-capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail-architecture-list > article > div {
    grid-template-columns: 1fr;
  }
  .product-detail-highlight-layout {
    grid-template-columns: 240px 1fr;
  }
  .product-detail-highlight-panel article > :is(i, svg) {
    display: none;
  }
  .product-detail-flow > .container-main {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}
@media (max-width: 768px) {
  .product-detail-hero {
    min-height: 620px;
  }
  .product-detail-hero:before {
    background: linear-gradient(
      180deg,
      rgba(7, 31, 68, 0.96),
      rgba(10, 48, 100, 0.84)
    );
  }
  .product-detail-hero-inner {
    min-height: 620px;
    padding: 96px 0 30px;
  }
  .product-detail-hero-copy {
    margin: 70px 0 auto;
  }
  .product-detail-hero-copy h1 {
    font-size: 41px;
  }
  .product-detail-hero-stats {
    align-self: stretch;
  }
  .product-detail-hero-stats div {
    min-width: 0;
    flex: 1;
    padding: 14px 10px 0;
  }
  .product-detail-hero-stats b {
    font-size: 20px;
  }
  .product-detail-hero-stats span {
    font-size: 11px;
  }
  .product-detail-subnav {
    margin-top: 0;
    overflow-x: auto;
    background: #fff;
    border-bottom: 1px solid #dbe9f7;
  }
  .product-detail-subnav .container-main {
    justify-content: flex-start;
    min-height: 52px;
    padding: 0;
    box-shadow: none;
    border: 0;
  }
  .product-detail-subnav a {
    flex: 0 0 auto;
    padding: 0 16px;
    font-size: 13px;
  }
  .product-detail-subnav a:after {
    right: 16px;
    left: 16px;
  }
  .product-detail-intro {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .product-detail-intro-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .product-detail-intro-copy {
    padding-top: 28px;
  }
  .product-detail-capabilities {
    padding: 76px 0;
  }
  .product-detail-section-head {
    margin-bottom: 34px;
    text-align: left;
  }
  .product-detail-section-head > span {
    margin-left: 0;
  }
  .product-detail-capability-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-capability-grid article {
    min-height: 0;
  }
  .product-detail-capability-grid p {
    min-height: 0;
  }
  .product-detail-features {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .product-detail-features-heading {
    display: block;
  }
  .product-detail-features-heading > span {
    display: inline-block;
    margin-top: 17px;
  }
  .product-detail-feature-list {
    grid-template-columns: 1fr;
  }
  .product-detail-feature-list article {
    min-height: 0;
    padding: 25px 18px;
  }
  .product-detail-architecture {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .product-detail-architecture-list {
    padding: 18px;
  }
  .product-detail-architecture-list > article {
    padding-left: 18px;
  }
  .product-detail-architecture-list > article > header {
    margin-left: -29px;
  }
  .product-detail-highlights {
    padding: 76px 0;
  }
  .product-detail-highlight-layout {
    grid-template-columns: 1fr;
  }
  .product-detail-highlight-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding: 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(159, 211, 255, 0.21);
  }
  .product-detail-highlight-tabs button {
    flex: 0 0 auto;
    padding: 12px;
    border: 0;
    font-size: 13px;
  }
  .product-detail-highlight-tabs button span {
    white-space: nowrap;
  }
  .product-detail-highlight-tabs :is(i, svg) {
    width: 20px;
    height: 20px;
  }
  .product-detail-highlight-panel {
    min-height: 280px;
    padding: 34px 25px;
  }
  .product-detail-highlight-panel h3 {
    font-size: 26px;
  }
  .product-detail-highlight-panel p {
    font-size: 14px;
  }
  .product-detail-flow > .container-main {
    gap: 32px;
  }
  .product-detail-flow-board {
    min-height: 0;
    padding: 12px;
  }
  .product-detail-flow-rail {
    display: none;
  }
  .product-detail-flow-board article,
  .product-detail-flow-board article:nth-of-type(even) {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 24px;
    margin: 0;
    border-bottom: 1px solid rgba(154, 210, 255, 0.23);
  }
  .product-detail-flow-board article:last-child {
    border: 0;
  }
  .product-detail-flow-board h3 {
    margin: 15px 0 7px;
  }
  .product-detail-scenes {
    padding: 76px 0;
  }
  .product-detail-scene-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-contact {
    padding: 48px 0;
  }
  .product-detail-contact .container-main {
    display: block;
  }
  .product-detail-contact a {
    margin-top: 28px;
    width: max-content;
  }
}

/* Product detail visual system: a calmer editorial rhythm with denser information surfaces. */
.product-detail-hero {
  min-height: 690px;
  background: #061e43;
}
.product-detail-hero:before {
  background: linear-gradient(
    90deg,
    rgba(5, 25, 58, 0.96) 0%,
    rgba(8, 41, 88, 0.9) 42%,
    rgba(10, 54, 112, 0.58) 71%,
    rgba(6, 39, 89, 0.22) 100%
  );
}
.product-detail-hero:after {
  right: 7%;
  bottom: -245px;
  width: 760px;
  height: 760px;
  border-color: rgba(143, 209, 255, 0.2);
  box-shadow:
    0 0 0 72px rgba(119, 193, 255, 0.045),
    0 0 0 144px rgba(119, 193, 255, 0.025);
}
.product-detail-hero-inner {
  min-height: 690px;
  padding-top: 132px;
  padding-bottom: 48px;
}
.product-detail-hero-copy {
  max-width: 720px;
}
.product-detail-hero-copy h1 {
  max-width: 690px;
  font-size: clamp(46px, 4vw, 64px);
  letter-spacing: 0.01em;
}
.product-detail-hero-copy strong {
  max-width: 560px;
  color: #c9e4ff;
}
.product-detail-hero-overview {
  max-width: 620px;
  padding-left: 18px;
  margin-top: 22px;
  color: #d6eaff;
  border-left: 2px solid rgba(122, 193, 255, 0.8);
  font-size: 15px;
  line-height: 1.85;
}
.product-detail-main-cta {
  min-width: 208px;
  padding: 16px 20px;
  background: #1b69f4;
}
.product-detail-hero-stats {
  padding: 4px 0 0;
  background: linear-gradient(90deg, transparent, rgba(7, 35, 77, 0.28));
  border-top-color: rgba(186, 222, 255, 0.2);
}
.product-detail-hero-stats div {
  min-width: 186px;
  padding: 18px 28px 4px;
}
.product-detail-subnav {
  margin-top: -31px;
}
.product-detail-subnav .container-main {
  justify-content: flex-start;
  min-height: 64px;
  padding: 0 22px;
  border-color: #d8e8f7;
  box-shadow: 0 14px 34px rgba(17, 61, 116, 0.1);
}
.product-detail-subnav a {
  padding: 0 24px;
}
.product-detail-intro {
  padding-top: 132px;
  padding-bottom: 128px;
}
.product-detail-intro-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
  gap: 11%;
}
.product-detail-intro h2 {
  max-width: 680px;
}
.product-detail-intro-copy {
  position: relative;
  padding: 29px 0 0 30px;
  border-left: 2px solid #2380ed;
}
.product-detail-intro-copy:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 12px;
  height: 12px;
  content: "";
  background: #2380ed;
  border-radius: 50%;
}
.product-detail-intro-copy p {
  margin-bottom: 15px;
}
.product-detail-capabilities {
  position: relative;
  padding: 118px 0 126px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #092652, #0c3e82 58%, #0d4c9d);
}
.product-detail-capabilities:before {
  position: absolute;
  top: -240px;
  right: -130px;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(172, 220, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(172, 220, 255, 0.035),
    0 0 0 140px rgba(172, 220, 255, 0.018);
}
.product-detail-capabilities .container-main {
  position: relative;
  z-index: 1;
}
.product-detail-capabilities .product-detail-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.7fr);
  column-gap: 12%;
  max-width: none;
  margin-bottom: 56px;
  text-align: left;
}
.product-detail-capabilities .product-detail-section-head p {
  grid-column: 1;
  margin-bottom: 13px;
  color: #85c5ff;
}
.product-detail-capabilities .product-detail-section-head h2 {
  grid-column: 1;
  color: #fff;
}
.product-detail-capabilities .product-detail-section-head > span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 440px;
  margin: 0;
  color: #bfdfff;
}
.product-detail-capability-grid {
  gap: 0;
  border-top: 1px solid rgba(178, 221, 255, 0.28);
  border-left: 1px solid rgba(178, 221, 255, 0.22);
}
.product-detail-capability-grid article {
  min-height: 320px;
  padding: 31px 29px 25px;
  color: #fff;
  background: rgba(6, 33, 76, 0.16);
  border: 0;
  border-right: 1px solid rgba(178, 221, 255, 0.22);
  border-bottom: 1px solid rgba(178, 221, 255, 0.22);
  box-shadow: none;
}
.product-detail-capability-grid article:hover {
  background: rgba(63, 140, 239, 0.22);
  border-color: rgba(178, 221, 255, 0.35);
  box-shadow: none;
  transform: translateY(-6px);
}
.product-detail-capability-grid :is(i, svg) {
  width: 49px;
  height: 49px;
  padding: 12px;
  margin-bottom: 31px;
  color: #a8d8ff;
  background: rgba(139, 205, 255, 0.1);
  border-color: rgba(166, 215, 255, 0.38);
}
.product-detail-capability-grid span {
  color: #9bcfff;
}
.product-detail-capability-grid h3 {
  color: #fff;
}
.product-detail-capability-grid p {
  min-height: 72px;
  color: #c1e0ff;
}
.product-detail-capability-grid ul {
  border-top-color: rgba(178, 221, 255, 0.22);
}
.product-detail-capability-grid li {
  color: #c8e4ff;
}
.product-detail-capability-grid li:before {
  background: #6dc0ff;
}
.product-detail-features {
  padding-top: 124px;
  padding-bottom: 124px;
}
.product-detail-features-heading {
  align-items: center;
  padding-bottom: 26px;
}
.product-detail-feature-list {
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #dce8f6;
}
.product-detail-feature-list article {
  grid-template-columns: 47px 1fr;
  gap: 14px;
  min-height: 148px;
  padding: 26px 24px;
}
.product-detail-feature-list article:hover {
  background: linear-gradient(135deg, #f6faff, #edf6ff);
}
.product-detail-feature-list b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #1760ee;
  background: #eaf3ff;
  font-size: 12px;
}
.product-detail-feature-list h3 {
  margin: 4px 0 8px;
  font-size: 18px;
}
.product-detail-feature-list p {
  font-size: 13px;
  line-height: 1.75;
}
.product-detail-architecture {
  padding-top: 120px;
  padding-bottom: 126px;
}
.product-detail-architecture-list {
  padding: 34px 38px 26px;
  background: transparent;
  border: 0;
}
.product-detail-architecture-list > article {
  padding: 0 0 33px 32px;
}
.product-detail-architecture-list section {
  min-height: 130px;
  padding: 22px;
  border-color: #dce9f6;
  box-shadow: none;
}
.product-detail-architecture-list section:hover {
  background: #f8fbff;
  border-color: #91bff2;
  box-shadow: none;
}
.product-detail-highlights {
  padding: 116px 0;
  background: linear-gradient(125deg, #082a59, #0d4f9f);
}
.product-detail-highlight-layout {
  min-height: 330px;
  background: rgba(2, 27, 66, 0.25);
  border-color: rgba(163, 215, 255, 0.28);
}
.product-detail-highlight-tabs {
  padding: 12px;
}
.product-detail-highlight-tabs button {
  padding: 20px 18px;
}
.product-detail-highlight-panel {
  padding: 54px 60px;
}
.product-detail-flow {
  padding-top: 124px;
  padding-bottom: 124px;
}
.product-detail-scenes {
  padding-top: 120px;
  padding-bottom: 124px;
  background: linear-gradient(135deg, #082650, #0a3674);
}

@media (max-width: 1024px) {
  .product-detail-capabilities .product-detail-section-head {
    grid-template-columns: 1fr;
  }
  .product-detail-capabilities .product-detail-section-head > span {
    grid-column: 1;
    grid-row: auto;
    margin-top: 18px;
  }
  .product-detail-feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .product-detail-hero,
  .product-detail-hero-inner {
    min-height: 650px;
  }
  .product-detail-hero-inner {
    padding-top: 96px;
  }
  .product-detail-hero-copy h1 {
    font-size: 40px;
  }
  .product-detail-hero-overview {
    margin-top: 18px;
    font-size: 14px;
  }
  .product-detail-subnav {
    margin-top: 0;
  }
  .product-detail-intro {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .product-detail-intro-copy {
    padding-left: 20px;
  }
  .product-detail-capabilities {
    padding: 76px 0;
  }
  .product-detail-capabilities .product-detail-section-head {
    display: block;
  }
  .product-detail-capabilities .product-detail-section-head > span {
    margin-top: 17px;
  }
  .product-detail-capability-grid {
    border-right: 1px solid rgba(178, 221, 255, 0.22);
  }
  .product-detail-capability-grid article {
    min-height: 0;
  }
  .product-detail-features {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .product-detail-feature-list {
    grid-template-columns: 1fr;
  }
  .product-detail-architecture {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .product-detail-architecture-list {
    padding: 18px;
  }
  .product-detail-highlights {
    padding: 76px 0;
  }
  .product-detail-flow {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .product-detail-scenes {
    padding-top: 76px;
    padding-bottom: 76px;
  }
}

/* Static software product detail page */
.product-static-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background: #061f48;
}
.product-static-hero:before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    90deg,
    rgba(4, 22, 54, 0.98) 0%,
    rgba(5, 34, 78, 0.93) 43%,
    rgba(8, 56, 116, 0.62) 70%,
    rgba(9, 71, 144, 0.22) 100%
  );
}
.product-static-hero:after {
  position: absolute;
  right: 5%;
  bottom: -260px;
  z-index: 1;
  width: 760px;
  height: 760px;
  content: "";
  border: 1px solid rgba(159, 214, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(104, 183, 255, 0.045),
    0 0 0 144px rgba(104, 183, 255, 0.025);
}
.product-static-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.product-static-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 70px;
  min-height: 690px;
  padding-top: 106px;
  padding-bottom: 54px;
}
.product-static-crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: #b7d8ff;
  font-size: 13px;
}
.product-static-crumb a {
  color: #d9edff;
}
.product-static-crumb b {
  color: #fff;
  font-weight: 600;
}
.product-static-hero-copy {
  max-width: 760px;
}
.product-static-hero-copy h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}
.product-static-hero-copy h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0;
}
.product-static-lead {
  max-width: 690px;
  margin: 28px 0 0;
  padding-left: 18px;
  color: #d3e8ff;
  border-left: 2px solid rgba(108, 191, 255, 0.82);
  font-size: 16px;
  line-height: 1.9;
}
.product-static-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}
.product-static-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 172px;
  min-height: 50px;
  padding: 0 22px;
  color: #d8ecff;
  border: 1px solid rgba(176, 220, 255, 0.36);
  font-size: 14px;
  font-weight: 700;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}
.product-static-hero-actions a.primary {
  color: #fff;
  background: #1a6cff;
  border-color: #1a6cff;
  box-shadow: 0 18px 38px rgba(5, 76, 177, 0.24);
}
.product-static-hero-actions a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(214, 238, 255, 0.64);
}
.product-static-hero-panel {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: rgba(179, 221, 255, 0.2);
  border: 1px solid rgba(179, 221, 255, 0.24);
  box-shadow: 0 24px 70px rgba(0, 16, 42, 0.23);
  backdrop-filter: blur(8px);
}
.product-static-hero-panel div {
  padding: 25px 26px;
  background: rgba(5, 28, 66, 0.72);
}
.product-static-hero-panel span {
  display: block;
  margin-bottom: 10px;
  color: #7fc6ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.product-static-hero-panel strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}
.product-static-hero-panel p {
  margin: 0;
  color: #c7def5;
  font-size: 13px;
  line-height: 1.75;
}
.product-static-subnav {
  position: relative;
  z-index: 5;
  margin-top: -32px;
}
.product-static-subnav .container-main {
  display: flex;
  min-height: 64px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #d8e8f7;
  box-shadow: 0 16px 36px rgba(18, 58, 112, 0.11);
}
.product-static-subnav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: #244d7f;
  font-size: 14px;
  font-weight: 700;
}
.product-static-subnav a:after {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 3px;
  content: "";
  background: #176fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}
.product-static-subnav a:hover {
  color: #176fff;
}
.product-static-subnav a:hover:after {
  transform: scaleX(1);
}
.product-static-section-head {
  max-width: 860px;
  margin: 0 auto 52px;
  text-align: center;
}
.product-static-section-head p {
  margin: 0 0 13px;
  color: #116cff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.product-static-section-head h2 {
  margin: 0;
  color: #082b60;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}
.product-static-section-head > span {
  display: block;
  max-width: 650px;
  margin: 18px auto 0;
  color: #45658d;
  font-size: 15px;
  line-height: 1.85;
}
/*.product-static-section-head-row {*/
/*  display: flex;*/
/*  align-items: end;*/
/*  justify-content: space-between;*/
/*  gap: 60px;*/
/*  max-width: none;*/
/*  text-align: left;*/
/*}*/
.product-static-section-head-row > span {
  max-width: 470px;
  margin: 0;
}
.product-static-capabilities {
  background: #fff;
}
.product-static-capability-layout {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  border-top: 1px solid #d8e7f7;
  border-left: 1px solid #d8e7f7;
}
.product-static-capability-layout article {
  position: relative;
  min-height: 360px;
  padding: 36px 30px 32px;
  overflow: hidden;
  background: #f7fbff;
  border-right: 1px solid #d8e7f7;
  border-bottom: 1px solid #d8e7f7;
  transition:
    background 0.28s ease,
    transform 0.28s ease;
}
.product-static-capability-layout article:after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  content: "";
  background: radial-gradient(
    circle,
    rgba(41, 128, 239, 0.16),
    transparent 68%
  );
}
.product-static-capability-layout article.active {
  color: #fff;
  background: linear-gradient(145deg, #0b397a, #1769dc);
}
.product-static-capability-layout article.active:after {
  background: radial-gradient(
    circle,
    rgba(126, 204, 255, 0.25),
    transparent 68%
  );
}
.product-static-capability-layout article:hover {
  transform: translateY(-6px);
  background: #eef7ff;
}
.product-static-capability-layout article.active:hover {
  background: linear-gradient(145deg, #0d438c, #1a73ee);
}
.product-static-capability-layout :is(i, svg) {
  width: 48px;
  height: 48px;
  padding: 12px;
  margin-bottom: 34px;
  color: #176fff;
  border: 1px solid #bdd7f8;
  background: #fff;
}
.product-static-capability-layout article.active :is(i, svg) {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}
.product-static-capability-layout span {
  display: block;
  margin-bottom: 15px;
  color: #527dae;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.product-static-capability-layout article.active span {
  color: #bde0ff;
}
.product-static-capability-layout h3 {
  margin: 0 0 13px;
  color: #082b60;
  font-size: 24px;
  font-weight: 800;
}
.product-static-capability-layout article.active h3 {
  color: #fff;
}
.product-static-capability-layout p {
  margin: 0;
  color: #45658d;
  font-size: 14px;
  line-height: 1.85;
}
.product-static-capability-layout article.active p {
  color: #d8ecff;
}
.product-static-features {
  background: #f4f8fd;
}
.product-static-feature-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-static-feature-groups section {
  min-height: 410px;
  padding: 32px;
  background: #fff;
  border: 1px solid #dce8f5;
  box-shadow: 0 18px 42px rgba(21, 62, 118, 0.06);
}
.product-static-feature-groups h3 {
  margin: 0 0 24px;
  color: #082b60;
  font-size: 24px;
  font-weight: 800;
}
.product-static-feature-groups ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-static-feature-groups li {
  position: relative;
  padding-left: 19px;
}
.product-static-feature-groups li:before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #176fff;
}
.product-static-feature-groups b {
  display: block;
  margin-bottom: 6px;
  color: #102f5f;
  font-size: 16px;
  font-weight: 800;
}
.product-static-feature-groups span {
  display: block;
  color: #536e92;
  font-size: 13px;
  line-height: 1.75;
}
.product-static-feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-static-feature-cards article {
  position: relative;
  min-height: 218px;
  padding: 30px 24px 26px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(145deg, #fff, #f6faff);
  border: 1px solid #dce8f5;
  box-shadow: 0 16px 38px rgba(19, 63, 120, 0.055);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}
.product-static-feature-cards article:before {
  position: absolute;
  inset: auto -34px -64px auto;
  width: 150px;
  height: 150px;
  content: "";
  background: radial-gradient(
    circle,
    rgba(26, 108, 255, 0.13),
    transparent 68%
  );
}
.product-static-feature-cards article:hover {
  transform: translateY(-6px);
  border-color: #a9cdf8;
  background: linear-gradient(145deg, #fff, #eef7ff);
  box-shadow: 0 22px 48px rgba(19, 83, 160, 0.1);
}
.product-static-feature-cards :is(i, svg, img) {
  width: 52px;
  height: 52px;
  padding: 12px;
  margin: 0 auto 20px;
  color: #176fff;
  background: linear-gradient(145deg, #eef6ff, #fff);
  border: 1px solid #b9d7ff;
  box-shadow: 0 12px 26px rgba(23, 111, 255, 0.12);
}
.product-static-feature-cards h3 {
  margin: 0 0 12px;
  color: #082b60;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
}
.product-static-feature-cards p {
  margin: 0 auto;
  color: #425f85;
  font-size: 13px;
  line-height: 1.8;
}
.product-static-architecture {
  background: #fff;
}
.product-static-architecture-board {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(135deg, #f5f9ff, #eef6ff);
  border: 1px solid #d9e8f8;
}
.product-static-architecture-board article {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 94px;
  padding: 18px 24px;
  background: #fff;
  border: 1px solid #dce8f5;
}
.product-static-architecture-board article span {
  color: #176fff;
  font-size: 20px;
  font-weight: 800;
}
.product-static-architecture-board article div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-static-architecture-board b {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #214a7b;
  background: #f4f9ff;
  border: 1px solid #d9e9fb;
  font-size: 14px;
  font-weight: 700;
}
.product-static-architecture-image {
    max-width: 980px;
  margin: 0 auto;
  padding: 26px;
  background: linear-gradient(135deg, #f6faff, #eef6ff);
  border: 1px solid #d9e8f8;
  box-shadow: 0 18px 46px rgba(19, 63, 120, 0.06);
}
.product-static-architecture-image img {
  display: block;
  width: 100%;
  height: auto;
  background: #f7f9fc;
  border: 1px solid #e4edf7;
  box-shadow: 0 12px 28px rgba(16, 48, 92, 0.06);
}
.product-static-scenes {
  color: #fff;
  background: linear-gradient(135deg, #082650, #0a3674);
}
.product-static-scenes .product-static-section-head p,
.product-static-scenes .product-static-section-head h2 {
  color: #fff;
}
.product-static-scenes .product-static-section-head > span {
  color: #c6ddf3;
}
.product-static-scenes .product-static-section-head-row {
  display: block;
  text-align: center;
}
.product-static-scenes .product-static-section-head-row > div {
  display: inline-block;
}
.product-static-scenes .product-static-team-cases,
.product-static-scenes .product-static-team-cases .team-cases,
.product-static-scenes .product-static-team-cases .team-case-grid {
  padding: 0;
  background: transparent;
}
.product-static-scenes .team-product-page .team-case-card:hover {
  transform: none;
}
.product-static-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-static-scene-grid a {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(154, 211, 255, 0.2);
  transition:
    background 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease;
}
.product-static-scene-grid a:after {
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(132, 200, 255, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(132, 200, 255, 0.04);
}
.product-static-scene-grid a:hover {
  transform: translateY(-6px);
  background: rgba(38, 118, 220, 0.25);
  border-color: rgba(173, 224, 255, 0.38);
}
.product-static-scene-grid span {
  color: #8ccbff;
  font-size: 12px;
  font-weight: 800;
}
.product-static-scene-grid h3 {
  margin: 38px 0 14px;
  color: #fff;
  font-size: 23px;
  font-weight: 800;
}
.product-static-scene-grid p {
  max-width: 360px;
  margin: 0;
  color: #c7def5;
  font-size: 14px;
  line-height: 1.85;
}
.product-static-scene-grid b {
  position: absolute;
  bottom: 28px;
  left: 30px;
  color: #fff;
  font-size: 13px;
}
.product-static-contact {
  padding: 66px 0;
  background: #1760ee;
}
.product-static-contact .container-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.product-static-contact p {
  margin: 0 0 12px;
  color: #bfe1ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.product-static-contact h2 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0;
}
.product-static-contact a {
  display: flex;
  align-items: center;
  gap: 30px;
  min-width: 206px;
  padding: 18px 22px;
  color: #1760ee;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}
.product-static-contact a span {
  margin-left: auto;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .product-static-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .product-static-hero-panel {
    max-width: 680px;
  }
  .product-static-capability-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-static-feature-groups,
  .product-static-scene-grid {
    grid-template-columns: 1fr;
  }
  .product-static-feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-static-section-head-row {
    display: block;
  }
  .product-static-section-head-row > span {
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  .product-static-hero,
  .product-static-hero-inner {
    min-height: 0;
  }
  .product-static-hero-inner {
    padding-top: 104px;
    padding-bottom: 58px;
  }
  .product-static-hero-copy h1 {
    font-size: 38px;
  }
  .product-static-hero-copy h2 {
    font-size: 27px;
  }
  .product-static-lead {
    font-size: 14px;
  }
  .product-static-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .product-static-hero-actions a {
    width: 100%;
  }
  .product-static-subnav {
    margin-top: 0;
    overflow-x: auto;
    background: #fff;
    border-bottom: 1px solid #dbe9f7;
  }
  .product-static-subnav .container-main {
    min-height: 52px;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  .product-static-subnav a {
    flex: 0 0 auto;
    padding: 0 16px;
    font-size: 13px;
  }
  .product-static-section-head {
    margin-bottom: 34px;
    text-align: left;
  }
  .product-static-section-head h2 {
    font-size: 30px;
  }
  .product-static-section-head > span {
    margin-left: 0;
  }
  .product-static-capability-layout {
    grid-template-columns: 1fr;
  }
  .product-static-capability-layout article {
    min-height: 0;
  }
  .product-static-feature-groups section {
    min-height: 0;
    padding: 24px;
  }
  .product-static-feature-cards {
    grid-template-columns: 1fr;
  }
  .product-static-feature-cards article {
    min-height: 0;
    padding: 26px 22px;
    text-align: left;
  }
  .product-static-feature-cards :is(i, svg) {
    margin: 0 0 18px;
  }
  .product-static-architecture-board {
    padding: 14px;
  }
  .product-static-architecture-board article {
    grid-template-columns: 1fr;
  }
  .product-static-architecture-board article div {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-static-architecture-image {
    padding: 10px;
    overflow-x: auto;
  }
  .product-static-architecture-image img {
    min-width: 760px;
  }
  .product-static-contact .container-main {
    display: block;
  }
  .product-static-contact h2 {
    font-size: 28px;
  }
  .product-static-contact a {
    width: max-content;
    margin-top: 26px;
  }
}

/* SMART TEAM PRODUCT PAGE */
.team-product-page {
  --team-blue: #165dff;
  --team-deep: #082857;
  --team-ink: #102a4d;
  --team-muted: #5c708c;
  --team-line: #dbe5f1;
  --team-pale: #f4f8fd;
  overflow-x: hidden;
  color: var(--team-ink);
  background: #fff;
  scroll-behavior: smooth;
}
.team-product-page .site-header.is-solid {
  height: 72px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e3eaf3;
  box-shadow: 0 5px 18px rgba(13, 46, 85, 0.06);
}
.team-product-page .team-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background-color: #f5f9ff;
  background-image:
    linear-gradient(rgba(22, 93, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 93, 255, 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
}
.team-product-page .team-hero:before {
  position: absolute;
  top: 112px;
  right: 7%;
  width: 380px;
  height: 380px;
  content: "";
  border: 1px solid rgba(22, 93, 255, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(22, 93, 255, 0.045),
    0 0 0 110px rgba(22, 93, 255, 0.025);
}
.team-product-page .team-hero:after {
  position: absolute;
  top: 205px;
  right: 15%;
  width: 190px;
  height: 190px;
  content: "";
  background: radial-gradient(circle at 35% 30%, #72b8ff, #165dff 55%, #0a3a9c);
  border-radius: 50%;
  box-shadow: 0 26px 60px rgba(22, 93, 255, 0.3);
}
.team-product-page .team-hero .container-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  padding-top: 112px;
  padding-bottom: 70px;
}
.team-product-page .team-hero .container-main > p:first-child,
.team-product-page main section header > p,
.team-product-page .team-overview .container-main > p:first-child,
.team-product-page .team-cta p {
  margin: 0 0 14px;
  color: var(--team-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}
.team-product-page .team-hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--team-ink);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 720;
  line-height: 1.16;
}
.team-product-page .team-hero .container-main > p:nth-of-type(2) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--team-muted);
  font-size: 18px;
  line-height: 1.8;
}
.team-product-page .team-hero a,
.team-product-page .team-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: max-content;
  min-width: 190px;
  padding: 15px 18px;
  margin-top: 34px;
  color: #fff;
  background: var(--team-blue);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(22, 93, 255, 0.2);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.team-product-page .team-hero a:hover,
.team-product-page .team-cta a:hover {
  color: #fff;
  background: #0d4ddc;
  transform: translateY(-2px);
}
.team-product-page .team-subnav {
  position: sticky;
  z-index: 20;
  top: 72px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--team-line);
  box-shadow: 0 8px 20px rgba(18, 55, 96, 0.06);
  scrollbar-width: none;
}
.team-product-page .team-subnav::-webkit-scrollbar {
  display: none;
}
.team-product-page .team-subnav .container-main {
  display: flex;
  min-width: max-content;
}
.team-product-page .team-subnav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 26px;
  color: #526b89;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}
.team-product-page .team-subnav a:after {
  position: absolute;
  right: 26px;
  bottom: 0;
  left: 26px;
  height: 3px;
  content: "";
  background: var(--team-blue);
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.team-product-page .team-subnav a:hover,
.team-product-page .team-subnav a.active {
  color: var(--team-blue);
}
.team-product-page .team-subnav a.active:after {
  opacity: 1;
  transform: none;
}
.team-product-page main section:not(.team-hero):not(.team-cta) {
  scroll-margin-top: 130px;
}
.team-product-page .team-overview {
  padding: 108px 0 104px;
  background: #fff;
}
.team-product-page .team-overview .container-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 9%;
  align-items: start;
}
.team-product-page .team-overview .container-main > p:first-child {
  grid-column: 1 / -1;
}
.team-product-page .team-overview h2,
.team-product-page main section header h2 {
  margin: 0;
  color: var(--team-ink);
  font-size: clamp(29px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
}
.team-product-page .team-overview .container-main > p:last-child {
  padding: 22px 0 22px 28px;
  margin: 0;
  color: var(--team-muted);
  border-left: 2px solid var(--team-blue);
  font-size: 16px;
  line-height: 1.95;
}
.team-product-page .team-value {
  padding: 102px 0 110px;
  background: var(--team-pale);
}
.team-product-page main section header {
  max-width: 780px;
  margin-bottom: 48px;
}
.team-product-page .team-value .container-main > div,
.team-product-page .team-scenes .container-main > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.team-product-page .team-value article,
.team-product-page .team-scenes article {
  min-height: 220px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--team-line);
  border-radius: 6px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.team-product-page .team-value article:hover,
.team-product-page .team-scenes article:hover {
  border-color: #a8c7f4;
  box-shadow: 0 18px 36px rgba(25, 69, 117, 0.1);
  transform: translateY(-4px);
}
.team-product-page .team-value h3,
.team-product-page .team-scenes h3 {
  margin: 50px 0 14px;
  color: var(--team-ink);
  font-size: 20px;
  font-weight: 700;
}
.team-product-page .team-value p,
.team-product-page .team-scenes p {
  margin: 0;
  color: var(--team-muted);
  font-size: 14px;
  line-height: 1.85;
}
.team-product-page .team-architecture {
  position: relative;
  padding: 108px 0 116px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #071f46, var(--team-deep) 58%, #0c3e82);
}
.team-product-page .team-architecture:before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 640px;
  height: 640px;
  content: "";
  border: 1px solid rgba(137, 196, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(137, 196, 255, 0.03),
    0 0 0 144px rgba(137, 196, 255, 0.018);
}
.team-product-page .team-architecture .container-main {
  position: relative;
  z-index: 1;
}
.team-product-page .team-architecture header > p {
  color: #79bfff;
}
.team-product-page .team-architecture header h2 {
  color: #fff;
}
.team-product-page [role="tablist"] {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  overflow-x: auto;
}
.team-product-page [data-team-architecture-tab] {
  flex: 0 0 auto;
  min-width: 128px;
  padding: 13px 22px;
  color: #bcd7f4;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(161, 207, 255, 0.22);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 650;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.team-product-page [data-team-architecture-tab].active {
  color: #fff;
  background: var(--team-blue);
  border-color: var(--team-blue);
}
.team-product-page [data-team-architecture-panel] {
  padding: 20px;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(163, 211, 255, 0.22);
  border-radius: 6px;
}
.team-product-page.team-enhanced [data-team-architecture-panel]:not(.active) {
  display: none;
}
.team-product-page [data-team-architecture-panel] img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  cursor: zoom-in;
}
.team-product-page [data-team-architecture-panel] p {
  margin: 17px 4px 1px;
  color: #c6dff7;
  font-size: 14px;
  line-height: 1.75;
}
.team-product-page .team-features {
  padding: 108px 0 116px;
  background: #fff;
}
.team-product-page [data-team-feature-stage] {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  align-items: center;
  min-height: 430px;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--team-pale);
  border: 1px solid var(--team-line);
  border-radius: 6px;
}
.team-product-page [data-team-feature-stage] > p {
  padding: 30px;
  color: var(--team-muted);
}
.team-product-page [data-team-feature-stage] button {
  position: relative;
  align-self: stretch;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: #eaf1fa;
  cursor: zoom-in;
}
.team-product-page [data-team-feature-stage] button:after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 10px;
  content: "放大查看";
  color: #fff;
  background: rgba(8, 40, 87, 0.78);
  border-radius: 4px;
  font-size: 12px;
}
.team-product-page [data-team-feature-stage] img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}
.team-product-page [data-team-feature-stage] > div {
  padding: 34px;
}
.team-product-page [data-team-feature-title] {
  margin: 0 0 15px;
  color: var(--team-ink);
  font-size: 24px;
}
.team-product-page [data-team-feature-copy] {
  margin: 0;
  color: var(--team-muted);
  font-size: 15px;
  line-height: 1.9;
}
.team-product-page .team-features article {
  min-width: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--team-line);
  border-radius: 4px;
}
.team-product-page .team-features article > button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #eef3f9;
  border: 2px solid transparent;
  border-radius: 4px;
}
.team-product-page .team-features article > button.active {
  border-color: var(--team-blue);
}
.team-product-page .team-features article img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.team-product-page .team-features article h3 {
  margin: 12px 2px 6px;
  color: var(--team-ink);
  font-size: 14px;
  line-height: 1.5;
}
.team-product-page .team-features article p {
  margin: 0 2px;
  color: var(--team-muted);
  font-size: 12px;
  line-height: 1.65;
}
.team-product-page .team-scenes {
  padding: 104px 0 112px;
  background: var(--team-pale);
}
.team-product-page .team-scenes article {
  min-height: 240px;
}
.team-product-page .team-cta {
  padding: 72px 0;
  color: #fff;
  background: var(--team-blue);
}
.team-product-page .team-cta .container-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
.team-product-page .team-cta p {
  grid-column: 1;
  margin-bottom: 9px;
  color: #c9e2ff;
}
.team-product-page .team-cta h2 {
  grid-column: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.6vw, 38px);
}
.team-product-page .team-cta a {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--team-blue);
  background: #fff;
  box-shadow: none;
}
.team-product-page .team-cta a:hover {
  color: #0d4ddc;
  background: #f4f8ff;
}
.team-product-page :is(a, button, [role="button"]):focus-visible,
.team-lightbox :is(button):focus-visible {
  outline: 3px solid #165dff;
  outline-offset: 3px;
}
.team-lightbox {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  padding: 52px 24px 24px;
  color: #102a4d;
  background: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(2, 20, 48, 0.42);
}
.team-lightbox::backdrop {
  background: rgba(2, 17, 42, 0.78);
  backdrop-filter: blur(4px);
}
.team-lightbox:not(.is-open) {
  display: none;
}
.team-lightbox form {
  position: absolute;
  top: 12px;
  right: 14px;
}
.team-lightbox form button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: #102a4d;
  border-radius: 4px;
  font-size: 24px;
  line-height: 1;
}
.team-lightbox h2 {
  margin: 0 50px 18px 0;
  color: #102a4d;
  font-size: 20px;
}
.team-lightbox img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #edf3fa;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .team-product-page .team-hero:before {
    right: -80px;
  }
  .team-product-page .team-hero:after {
    right: 5%;
    opacity: 0.72;
  }
  .team-product-page .team-hero .container-main > * {
    max-width: 58%;
  }
  .team-product-page .team-overview .container-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .team-product-page [data-team-feature-stage] {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .team-product-page .team-hero,
  .team-product-page .team-hero .container-main {
    min-height: 560px;
  }
  .team-product-page .team-hero .container-main {
    padding-top: 112px;
    padding-bottom: 58px;
  }
  .team-product-page .team-hero:before {
    top: 215px;
    right: -135px;
    width: 310px;
    height: 310px;
    opacity: 0.45;
  }
  .team-product-page .team-hero:after {
    top: 290px;
    right: -15px;
    width: 140px;
    height: 140px;
    opacity: 0.32;
  }
  .team-product-page .team-hero .container-main > * {
    max-width: 100%;
  }
  .team-product-page .team-hero h1 {
    font-size: 34px;
  }
  .team-product-page .team-hero .container-main > p:nth-of-type(2) {
    max-width: 88%;
    font-size: 15px;
  }
  .team-product-page .team-subnav {
    top: 72px;
  }
  .team-product-page .team-subnav .container-main {
    width: auto;
  }
  .team-product-page .team-subnav a {
    min-height: 52px;
    padding: 0 17px;
    font-size: 13px;
  }
  .team-product-page .team-subnav a:after {
    right: 17px;
    left: 17px;
  }
  .team-product-page .team-overview,
  .team-product-page .team-value,
  .team-product-page .team-architecture,
  .team-product-page .team-features,
  .team-product-page .team-scenes {
    padding: 74px 0;
  }
  .team-product-page main section header {
    margin-bottom: 32px;
  }
  .team-product-page .team-overview .container-main > p:last-child {
    padding: 16px 0 16px 18px;
    font-size: 14px;
  }
  .team-product-page .team-value .container-main > div,
  .team-product-page .team-scenes .container-main > div {
    grid-template-columns: 1fr;
  }
  .team-product-page .team-value article,
  .team-product-page .team-scenes article {
    min-height: 0;
    padding: 24px;
  }
  .team-product-page .team-value h3,
  .team-product-page .team-scenes h3 {
    margin-top: 24px;
  }
  .team-product-page [role="tablist"] {
    padding-bottom: 2px;
  }
  .team-product-page [data-team-architecture-tab] {
    min-width: 112px;
    padding: 12px 16px;
  }
  .team-product-page [data-team-architecture-panel] {
    padding: 10px;
  }
  .team-product-page [data-team-feature-stage] {
    min-height: 0;
  }
  .team-product-page [data-team-feature-stage] > div {
    padding: 24px;
  }
  .team-product-page [data-team-feature-title] {
    font-size: 21px;
  }
  .team-product-page .team-features article {
    padding: 8px;
  }
  .team-product-page .team-cta {
    padding: 54px 0;
  }
  .team-product-page .team-cta .container-main {
    display: block;
  }
  .team-product-page .team-cta a {
    margin-top: 26px;
  }
  .team-lightbox {
    width: calc(100% - 20px);
    padding: 48px 10px 10px;
  }
  .team-lightbox h2 {
    margin-left: 8px;
    font-size: 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .team-product-page {
    scroll-behavior: auto;
  }
  .team-product-page *,
  .team-product-page *:before,
  .team-product-page *:after,
  .team-lightbox,
  .team-lightbox * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Cases channel: content-first proof and a calmer industry explorer. */
.cases-page {
  background: #f5f8fc;
  color: #132b4d;
}
.cases-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 72px;
  background: linear-gradient(135deg, #eaf4ff 0%, #f8fbff 58%, #e7f1ff 100%);
}
.cases-hero:after {
  position: absolute;
  right: -8%;
  bottom: -68%;
  width: 58%;
  height: 160%;
  border: 1px solid rgba(39, 118, 218, 0.13);
  border-radius: 50%;
  content: "";
  transform: rotate(-17deg);
  pointer-events: none;
}
.cases-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: end;
  gap: 72px;
}
.cases-kicker {
  margin: 0 0 16px;
  color: #1768df;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
}
.cases-hero h1 {
  margin: 0;
  color: #092f68;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.cases-hero-desc {
  max-width: 620px;
  margin: 24px 0 0;
  color: #4e6b91;
  font-size: 16px;
  line-height: 1.9;
}
.cases-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #c8dbf1;
  border-bottom: 1px solid #c8dbf1;
}
.cases-proof-grid div {
  min-height: 106px;
  padding: 19px 18px 16px;
  border-left: 1px solid #c8dbf1;
}
.cases-proof-grid div:first-child {
  border-left: 0;
}
.cases-proof-grid strong {
  display: block;
  color: #1768df;
  font-size: 30px;
  line-height: 1.1;
}
.cases-proof-grid span {
  display: block;
  margin-top: 10px;
  color: #617a9b;
  font-size: 12px;
  line-height: 1.5;
}
.cases-library {
  padding-top: 88px;
  padding-bottom: 86px;
  background: #f5f8fc;
}
.cases-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 34px;
}
.cases-section-head .cases-kicker {
  margin-bottom: 12px;
}
.cases-section-head h2 {
  margin: 0;
  color: #0a376e;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.25;
}
.cases-section-head > p {
  max-width: 480px;
  margin: 0 0 2px;
  color: #647b9b;
  font-size: 14px;
  line-height: 1.9;
}
.cases-explorer {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  min-height: 540px;
  border: 1px solid #d6e3f3;
  background: #fff;
  box-shadow: 0 18px 48px rgba(24, 67, 120, 0.08);
}
.cases-directory {
  display: grid;
  align-content: stretch;
  border-right: 1px solid #d6e3f3;
  background: #f9fbfe;
}
.cases-directory-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 12px;
  min-height: 132px;
  border: 0;
  border-bottom: 1px solid #dce7f3;
  padding: 22px 24px;
  background: transparent;
  color: #25466f;
  text-align: left;
  transition:
    background 0.36s ease,
    color 0.36s ease,
    padding 0.36s ease;
  cursor: pointer;
}
.cases-directory-item:last-child {
  border-bottom: 0;
}
.cases-directory-item:before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  background: #1768df;
  content: "";
  opacity: 0;
  transform: scaleY(0.35);
  transition:
    opacity 0.36s ease,
    transform 0.36s ease;
}
.cases-directory-item:hover {
  padding-left: 29px;
  background: #eef6ff;
}
.cases-directory-item.active {
  padding-left: 29px;
  color: #fff;
  background: linear-gradient(120deg, #0d4a98, #176bea);
}
.cases-directory-item.active:before {
  opacity: 1;
  transform: scaleY(1);
  background: #8ac7ff;
}
.cases-directory-index {
  align-self: start;
  padding-top: 2px;
  color: #1768df;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.cases-directory-item.active .cases-directory-index {
  color: #b8ddff;
}
.cases-directory-item strong,
.cases-directory-item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cases-directory-item strong {
  color: #123d73;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.cases-directory-item small {
  margin-top: 7px;
  color: #7189a6;
  font-size: 12px;
  line-height: 1.4;
}
.cases-directory-item.active strong,
.cases-directory-item.active small {
  color: #fff;
}
.cases-directory-item i {
  color: #1768df;
  font-size: 19px;
  font-style: normal;
  transition: transform 0.28s ease;
}
.cases-directory-item.active i {
  color: #fff;
}
.cases-directory-item:hover i,
.cases-directory-item.active i {
  transform: translate(3px, -3px);
}
.cases-directory-item:focus-visible {
  outline: 3px solid rgba(23, 104, 223, 0.3);
  outline-offset: -3px;
}
.cases-detail-stage {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #0e3972;
}
.cases-page .case-feature {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 45%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.45s ease,
    transform 0.55s ease;
}
.cases-page .case-feature.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cases-detail-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  order: 2;
  background: #dcebf8;
}
.cases-detail-media:after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 43, 91, 0.18), transparent 45%),
    linear-gradient(0deg, rgba(8, 31, 64, 0.18), transparent 42%);
  content: "";
  pointer-events: none;
}
.cases-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.cases-page .case-feature.active .cases-detail-media img {
  transform: scale(1.02);
}
.cases-detail-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: 52px 44px;
  color: #fff;
  background: linear-gradient(145deg, #0b346b, #104c96);
}
.cases-detail-label {
  margin: 0 0 54px;
  color: #8bc8ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
}
.cases-detail-kicker {
  margin: 0 0 10px;
  color: #7fc2ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
}
.cases-detail-copy h3 {
  max-width: 360px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.25;
}
.cases-detail-copy h3 + p {
  max-width: 450px;
  margin: 18px 0 22px;
  color: rgba(238, 247, 255, 0.82);
  font-size: 14px;
  line-height: 1.9;
}
.cases-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cases-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(167, 213, 255, 0.34);
  color: #d9efff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  line-height: 1.2;
}
.cases-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.cases-detail-link span {
  transition: transform 0.25s ease;
}
.cases-detail-link:hover span {
  transform: translateX(5px);
}
.cases-value {
  padding-bottom: 96px;
  background: #f5f8fc;
}
.cases-catalog {
  padding-bottom: 84px;
  background: #f5f8fc;
}
.cases-catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 28px;
}
.cases-catalog-head h2 {
  margin: 0;
  color: #0a376e;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
}
.cases-catalog-head > p {
  max-width: 510px;
  margin: 0 0 2px;
  color: #647b9b;
  font-size: 14px;
  line-height: 1.9;
}
.cases-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.cases-catalog-card {
  position: relative;
  display: flex;
  min-height: 204px;
  flex-direction: column;
  padding: 24px 22px 21px;
  border: 1px solid #d7e4f2;
  background: #fff;
  color: #153d70;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}
.cases-catalog-card:before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 2px;
  background: #1768df;
  content: "";
  opacity: 0.3;
  transform: scaleX(0.35);
  transform-origin: left;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.cases-catalog-card > span {
  color: #1768df;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
.cases-catalog-card h3 {
  margin: 23px 0 8px;
  color: #123d73;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}
.cases-catalog-card p {
  margin: 0;
  color: #7186a2;
  font-size: 13px;
  line-height: 1.6;
}
.cases-catalog-card b {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
  color: #1768df;
  font-size: 12px;
}
.cases-catalog-card i {
  font-size: 16px;
  font-style: normal;
  transition: transform 0.25s ease;
}
.cases-catalog-card:hover {
  border-color: #8ebdf0;
  box-shadow: 0 16px 34px rgba(29, 90, 159, 0.1);
  transform: translateY(-4px);
}
.cases-catalog-card:hover:before {
  opacity: 1;
  transform: scaleX(1);
}
.cases-catalog-card:hover i {
  transform: translate(3px, -3px);
}
.cases-value-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  padding: 52px 58px;
  background: #eaf3ff;
  border: 1px solid #d2e3f7;
}
.cases-value-panel h2 {
  margin: 0;
  color: #0a376e;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.35;
}
.cases-value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #c5daf0;
}
.cases-value-list div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 6px 10px;
  padding: 18px 16px 16px 0;
  border-bottom: 1px solid #c5daf0;
}
.cases-value-list b {
  grid-row: span 2;
  color: #1768df;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.cases-value-list strong {
  color: #143f75;
  font-size: 15px;
}
.cases-value-list span {
  color: #6882a2;
  font-size: 12px;
  line-height: 1.55;
}
@media (max-width: 960px) {
  .cases-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cases-explorer {
    grid-template-columns: 1fr;
  }
  .cases-directory {
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid #d6e3f3;
  }
  .cases-directory-item {
    min-height: 106px;
    padding: 17px 15px;
  }
  .cases-directory-item:hover,
  .cases-directory-item.active {
    padding-left: 15px;
  }
  .cases-directory-item:before {
    top: auto;
    right: 18px;
    bottom: 0;
    left: 18px;
    width: auto;
    height: 3px;
    transform: scaleX(0.35);
  }
  .cases-directory-item.active:before {
    transform: scaleX(1);
  }
  .cases-detail-stage {
    min-height: 620px;
  }
  .cases-page .case-feature {
    grid-template-columns: 1fr 42%;
  }
  .cases-detail-copy {
    padding: 38px 28px;
  }
  .cases-detail-label {
    margin-bottom: 30px;
  }
}
@media (max-width: 640px) {
  .cases-hero {
    padding: 82px 0 54px;
  }
  .cases-hero h1 {
    font-size: 38px;
  }
  .cases-proof-grid {
    grid-template-columns: 1fr;
  }
  .cases-proof-grid div {
    min-height: 0;
    padding: 14px 0;
    border-left: 0;
    border-bottom: 1px solid #c8dbf1;
  }
  .cases-proof-grid div:last-child {
    border-bottom: 0;
  }
  .cases-section-head {
    display: block;
  }
  .cases-section-head > p {
    margin-top: 16px;
  }
  .cases-library {
    padding-top: 62px;
    padding-bottom: 64px;
  }
  .cases-directory {
    grid-template-columns: repeat(2, 1fr);
  }
  .cases-directory-item {
    min-height: 88px;
    padding: 14px 13px;
    grid-template-columns: 29px minmax(0, 1fr);
  }
  .cases-directory-item i {
    display: none;
  }
  .cases-directory-item small {
    white-space: normal;
  }
  .cases-page .case-feature {
    display: flex;
    flex-direction: column;
  }
  .cases-detail-media {
    order: 0;
    min-height: 230px;
    height: 230px;
  }
  .cases-detail-copy {
    min-height: 390px;
    padding: 30px 23px 34px;
  }
  .cases-detail-label {
    margin-bottom: 28px;
  }
  .cases-detail-copy h3 {
    font-size: 29px;
  }
  .cases-value {
    padding-bottom: 72px;
  }
  .cases-value-panel {
    display: block;
    padding: 34px 24px;
  }
  .cases-value-list {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }
  .cases-catalog {
    padding-bottom: 64px;
  }
  .cases-catalog-head {
    display: block;
  }
  .cases-catalog-head > p {
    margin-top: 16px;
  }
  .cases-catalog-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cases-directory-item,
  .cases-page .case-feature,
  .cases-detail-media img,
  .cases-detail-link span {
    transition: none;
  }
}

/* Cases page gallery override: a distinct, all-visible archive instead of another tabbed workbench. */
.cases-page .cases-library {
  display: none;
}
.cases-page .cases-hero {
  padding-bottom: 112px;
  background: linear-gradient(135deg, #e6f2ff 0%, #f8fbff 58%, #dbeaff 100%);
}
.cases-page .cases-hero:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.52));
  content: "";
  pointer-events: none;
}
.cases-page .cases-catalog {
  position: relative;
  z-index: 2;
  margin-top: -54px;
  padding: 46px 0 104px;
  background: transparent;
}
.cases-page .cases-catalog .container-main {
  padding: 0 42px 54px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(22, 68, 122, 0.12);
}
.cases-page .cases-catalog-head {
  padding-top: 8px;
}
.cases-page .cases-value {
  display: none;
}
.cases-page .cases-hero-inner {
  grid-template-columns: minmax(0, 0.86fr) minmax(470px, 1.14fr);
  align-items: center;
  gap: 56px;
}
.cases-hero-visual {
  position: relative;
  min-height: 365px;
}
.cases-hero-image {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid rgba(255, 255, 255, 0.78);
  background: #dbeafb;
  box-shadow: 0 22px 52px rgba(29, 75, 133, 0.17);
}
.cases-hero-image-main {
  top: 0;
  right: 0;
  width: 78%;
  height: 320px;
  transform: rotate(1.5deg);
}
.cases-hero-image-small {
  right: 56%;
  bottom: 0;
  width: 42%;
  height: 194px;
  transform: rotate(-3deg);
}
.cases-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.cases-hero-image:hover img {
  transform: scale(1.06);
}
.cases-hero-image:after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 31, 67, 0.68));
  content: "";
  pointer-events: none;
}
.cases-hero-image figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 15px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 11px;
}
.cases-hero-image figcaption b {
  font-size: 22px;
  font-weight: 300;
}
.cases-hero-image figcaption span {
  opacity: 0.9;
}
.cases-hero-proof {
  position: absolute;
  right: 0;
  bottom: -17px;
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: end;
  gap: 8px 12px;
  padding: 13px 17px;
  border: 1px solid rgba(23, 104, 223, 0.22);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}
.cases-hero-proof strong {
  color: #1768df;
  font-size: 22px;
  line-height: 1;
}
.cases-hero-proof span {
  color: #587599;
  font-size: 11px;
  line-height: 1;
}
.cases-hero-proof i {
  width: 1px;
  height: 22px;
  background: #c6d8ed;
}
.cases-page .cases-catalog {
  padding: 88px 0 104px;
  background: #f5f8fc;
}
.cases-page .cases-catalog-head {
  max-width: 1440px;
  margin: 0 auto 32px;
  padding: 0;
}
.cases-page .cases-catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.cases-page .cases-catalog-card {
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid #d6e3f1;
  background: #fff;
  box-shadow: 0 10px 24px rgba(29, 70, 119, 0.05);
}
.cases-page .cases-catalog-card:before {
  display: none;
}
.cases-page .cases-catalog-card:nth-child(1),
.cases-page .cases-catalog-card:nth-child(2) {
  grid-column: span 2;
}
.cases-page .cases-catalog-media {
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: #dbeafb;
}
.cases-page .cases-catalog-media:after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 31, 67, 0.02) 34%,
    rgba(5, 31, 67, 0.68) 100%
  );
  content: "";
  pointer-events: none;
}
.cases-page .cases-catalog-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.cases-page .cases-catalog-media span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 15px;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}
.cases-page .cases-catalog-copy {
  padding: 22px 24px 24px;
}
.cases-page .cases-catalog-copy > span {
  color: #1768df;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
}
.cases-page .cases-catalog-copy h3 {
  min-height: 29px;
  margin: 13px 0 6px;
  color: #123d73;
  font-size: 20px;
  line-height: 1.45;
}
.cases-page .cases-catalog-copy p {
  margin: 0;
  color: #7186a2;
  font-size: 13px;
  line-height: 1.6;
}
.cases-page .cases-catalog-copy b {
  margin-top: 18px;
  padding: 0;
  color: #1768df;
  font-size: 12px;
}
.cases-page .cases-catalog-card:hover {
  border-color: #8db9e8;
  box-shadow: 0 20px 42px rgba(29, 90, 159, 0.14);
  transform: translateY(-5px);
}
.cases-page .cases-catalog-card:hover .cases-catalog-media img {
  transform: scale(1.06);
}

body.page-two .cases-page .cases-catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.page-two .cases-page .cases-catalog-card:nth-child(1),
body.page-two .cases-page .cases-catalog-card:nth-child(2) {
  grid-column: span 1;
}
.cases-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.cases-pagination a,
.cases-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  color: #527093;
  font-size: 12px;
  text-decoration: none;
}
.cases-pagination a {
  border: 1px solid #cbdced;
  background: #fff;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease;
}
.cases-pagination a:hover,
.cases-pagination a.is-active {
  color: #fff;
  border-color: #1768df;
  background: #1768df;
  transform: translateY(-2px);
}
.cases-pagination-next {
  min-width: 100px !important;
  gap: 8px;
}
.cases-pagination-next b {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 960px) {
  .cases-page .cases-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.page-two .cases-page .cases-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cases-page .cases-catalog-card:nth-child(1),
  .cases-page .cases-catalog-card:nth-child(2) {
    grid-column: span 1;
  }
  .cases-page .cases-catalog-card:nth-child(1) {
    grid-column: span 2;
  }
  .cases-page .cases-hero-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .cases-hero-visual {
    min-height: 320px;
  }
}
@media (max-width: 640px) {
  .cases-page .cases-catalog {
    padding: 64px 0 76px;
  }
  .cases-page .cases-catalog .container-main {
    padding: 0 20px 38px;
  }
  .cases-page .cases-catalog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cases-page .cases-catalog-card:nth-child(1) {
    grid-column: span 1;
  }
  .cases-page .cases-catalog-media {
    aspect-ratio: 16 / 9;
  }
  .cases-page .cases-catalog-copy {
    padding: 19px 19px 21px;
  }
  .cases-hero-visual {
    min-height: 250px;
  }
  .cases-hero-image-main {
    width: 82%;
    height: 220px;
  }
  .cases-hero-image-small {
    right: 49%;
    width: 46%;
    height: 132px;
  }
  .cases-hero-proof {
    right: 0;
    bottom: -11px;
    gap: 6px 8px;
    padding: 10px 11px;
  }
  .cases-hero-proof strong {
    font-size: 17px;
  }
  .cases-hero-proof span {
    font-size: 9px;
  }
  .cases-hero-proof i {
    height: 18px;
  }
}

/* Restore the previous case-channel presentation. */
.cases-page .cases-hero {
  padding-bottom: 72px;
  background: linear-gradient(135deg, #eaf4ff 0%, #f8fbff 58%, #e7f1ff 100%);
}
.cases-page .cases-hero:before {
  display: none;
}
.cases-page .cases-catalog {
  margin-top: 0;
  padding: 88px 0 104px;
  background: #f5f8fc;
}
.cases-page .cases-catalog .container-main {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.cases-page .cases-value {
  display: block;
}
body.page-two .cases-page .cases-catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.page-two .cases-page .cases-catalog-card:nth-child(1),
body.page-two .cases-page .cases-catalog-card:nth-child(2) {
  grid-column: span 1;
}

/* Cases channel: dark visual opening and a compact catalog ending. */
.cases-page .cases-hero {
  color: #fff;
  background-image:
    linear-gradient(
      90deg,
      rgba(4, 24, 54, 0.9) 0%,
      rgba(5, 38, 79, 0.76) 48%,
      rgba(4, 24, 54, 0.58) 100%
    ),
    url("../images/case-healthcare-v1.png");
  background-position: center;
  background-size: cover;
}
.cases-page .cases-hero h1 {
  color: #fff;
}
.cases-page .cases-hero .cases-kicker {
  color: #8bc8ff;
}
.cases-page .cases-hero-desc {
  color: rgba(239, 247, 255, 0.84);
}
.cases-page .cases-catalog {
  padding-bottom: 56px;
}
.cases-page .cases-catalog-card:hover {
  transform: none;
}
@media (max-width: 640px) {
  .cases-page .cases-catalog {
    padding-bottom: 42px;
  }
}

/* Shared case-card template: every case page uses the same three-column rhythm. */
.cases-page .cases-catalog-grid,
body.page-two .cases-page .cases-catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.cases-page .cases-catalog-card,
.cases-page .cases-catalog-card:nth-child(1),
.cases-page .cases-catalog-card:nth-child(2) {
  grid-column: span 1;
  min-height: 100%;
  border-radius: 10px;
  border-color: #d9e5f2;
  box-shadow: 0 10px 26px rgba(19, 61, 112, 0.06);
  transform: none;
}
.cases-page .cases-catalog-card:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #1768df, #65b9ff);
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cases-page .cases-catalog-card:hover {
  border-color: #9fc5eb;
  box-shadow: 0 16px 34px rgba(24, 91, 160, 0.12);
  transform: none;
}
.cases-page .cases-catalog-card:hover:after {
  opacity: 1;
}
.cases-page .cases-catalog-media {
  aspect-ratio: 16 / 9;
}
.cases-page .cases-catalog-media span {
  display: none;
}
.cases-page .cases-catalog-copy {
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto auto;
  min-height: 0;
  padding: 0 24px 24px;
}
.cases-page .cases-catalog-copy > .cases-catalog-tag {
  display: inline-flex;
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  align-self: flex-start;
  justify-self: start;
  margin-top: -17px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(7, 38, 79, 0.86);
  box-shadow: 0 8px 16px rgba(8, 38, 78, 0.16);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.cases-page .cases-catalog-copy h3 {
  grid-column: 1;
  min-height: 0;
  margin: 18px 0 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  line-height: 1.4;
}
.cases-page .cases-catalog-copy p {
  grid-column: 1;
  margin: 0;
  overflow: hidden;
  max-width: 34em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cases-page .cases-catalog-copy b {
  display: inline-flex;
  grid-column: 2;
  grid-row: 2 / span 2;
  align-items: center;
  align-self: center;
  gap: 8px;
  margin-left: 20px;
  padding: 10px 0 10px 20px;
  border-left: 1px solid #dce8f4;
  white-space: nowrap;
}
.cases-page .cases-catalog-copy b i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid #a8c9ed;
  border-radius: 50%;
  font-style: normal;
  transition: transform 0.25s ease;
}
.cases-page .cases-catalog-card:hover .cases-catalog-copy b i {
  transform: translateX(4px);
}
@media (max-width: 960px) {
  .cases-page .cases-catalog-grid,
  body.page-two .cases-page .cases-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .cases-page .cases-catalog-grid,
  body.page-two .cases-page .cases-catalog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cases-page .cases-catalog-copy {
    min-height: 0;
  }
  .cases-page .cases-catalog-copy b {
    margin-left: 12px;
    padding-left: 12px;
  }
  .cases-page .cases-catalog-copy b {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-left: 0;
    border-left: 0;
    padding-left: 0;
  }
}

/* Generic case detail template. Replace copy and media while keeping this structure. */
.case-detail-page {
  color: #17395f;
  background: #fff;
}
.case-detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 26, 58, 0.92), rgba(9, 70, 137, 0.7)),
    url("../images/case-education-v1.png") center / cover no-repeat;
}
.case-detail-hero:after {
  position: absolute;
  right: -10%;
  bottom: -45%;
  width: 58%;
  height: 120%;
  border: 1px solid rgba(137, 204, 255, 0.28);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}
.case-detail-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 142px;
  padding-bottom: 92px;
}
.case-detail-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 42px;
  color: rgba(232, 244, 255, 0.7);
  font-size: 13px;
}
.case-detail-breadcrumb a {
  color: #a8d8ff;
  text-decoration: none;
}
.case-detail-kicker,
.case-detail-eyebrow {
  margin: 0 0 14px;
  color: #62b7ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
}
.case-detail-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.12;
}
.case-detail-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(239, 248, 255, 0.86);
  font-size: 18px;
  line-height: 1.9;
}
.case-detail-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 38px;
  color: #c7e7ff;
  font-size: 13px;
}
.case-detail-overview {
  background: #fff;
}
.case-detail-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 12%;
  align-items: start;
}
.case-detail-split h2,
.case-detail-section-head h2,
.case-detail-cta h2 {
  margin: 0;
  color: #0b356b;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.3;
}
.case-detail-copy {
  padding-top: 8px;
}
.case-detail-copy p,
.case-detail-copy-intro {
  margin: 0 0 18px;
  color: #5d7695;
  font-size: 15px;
  line-height: 1.95;
}
.case-detail-focus {
  background: #f4f8fd;
}
.case-detail-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.case-detail-section-head > span {
  display: block;
  margin-top: 16px;
  color: #6b829d;
  font-size: 15px;
  line-height: 1.8;
}
.case-detail-focus-grid,
.case-detail-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.case-detail-focus-grid article {
  position: relative;
  min-height: 218px;
  padding: 30px 28px;
  border: 1px solid #dce8f4;
  background: #fff;
  box-shadow: 0 12px 28px rgba(26, 74, 126, 0.05);
}
.case-detail-focus-grid article:before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 3px;
  background: #1768df;
  content: "";
  opacity: 0.2;
}
.case-detail-focus-grid b {
  color: #1768df;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.case-detail-focus-grid h3 {
  margin: 48px 0 12px;
  color: #0d3c78;
  font-size: 22px;
}
.case-detail-focus-grid p {
  margin: 0;
  color: #6b829d;
  font-size: 14px;
  line-height: 1.8;
}
.case-detail-showcase {
  background: #fff;
}
.case-detail-showcase .case-detail-section-head {
  max-width: 820px;
}
.case-detail-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.case-detail-showcase-grid figure {
  position: relative;
  min-height: 178px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce8f4;
  background: #edf4fb;
}
.case-detail-showcase-grid .case-detail-showcase-feature {
  min-height: 300px;
}
.case-detail-showcase-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.case-detail-showcase-grid figure:hover img {
  transform: scale(1.035);
}
.case-detail-showcase-grid figure:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(5, 35, 79, 0.78));
  content: "";
  pointer-events: none;
}
.case-detail-showcase-grid figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 1;
  color: #fff;
}
.case-detail-showcase-grid figcaption b,
.case-detail-showcase-grid figcaption span {
  display: block;
}
.case-detail-showcase-grid figcaption b {
  font-size: 17px;
}
.case-detail-showcase-grid figcaption span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}
.case-detail-architecture {
  color: #fff;
  background: #092f68;
}
.case-detail-architecture h2 {
  color: #fff;
}
.case-detail-architecture .case-detail-eyebrow {
  color: #8dceff;
}
.case-detail-architecture .case-detail-copy-intro {
  color: rgba(226, 241, 255, 0.74);
  margin-top: 24px;
}
.case-detail-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(164, 214, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
}
.case-detail-diagram:before {
  position: absolute;
  inset: 26% 20%;
  border: 1px dashed rgba(129, 201, 255, 0.45);
  border-radius: 50%;
  content: "";
}
.case-detail-diagram-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: linear-gradient(145deg, #77caff, #1768df);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  transform: translate(-50%, -50%);
}
.case-detail-diagram span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid rgba(162, 215, 255, 0.3);
  color: #d7efff;
  font-size: 13px;
}
.case-detail-result-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.case-detail-result-grid div {
  padding: 28px 24px;
  border-top: 2px solid #1768df;
  background: #f5f8fc;
}
.case-detail-result-grid strong {
  display: block;
  color: #0b4e9d;
  font-size: 26px;
}
.case-detail-result-grid span {
  display: block;
  margin-top: 10px;
  color: #6a819c;
  font-size: 13px;
}
.case-detail-cta {
  color: #fff;
  background: linear-gradient(120deg, #0a346c, #1768df);
}
.case-detail-cta .container-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.case-detail-cta h2 {
  max-width: 700px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
}
.case-detail-cta .case-detail-eyebrow {
  color: #a8dcff;
}
.case-detail-cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.case-detail-cta a:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.case-detail-cta a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .case-detail-hero-inner {
    padding-top: 112px;
    padding-bottom: 64px;
  }
  .case-detail-breadcrumb {
    margin-bottom: 28px;
  }
  .case-detail-lead {
    font-size: 16px;
  }
  .case-detail-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-detail-focus-grid,
  .case-detail-result-grid {
    grid-template-columns: 1fr;
  }
  .case-detail-focus-grid article {
    min-height: 0;
  }
  .case-detail-showcase-grid {
    display: block;
  }
  .case-detail-showcase-grid figure,
  .case-detail-showcase-grid .case-detail-showcase-feature {
    min-height: 240px;
    margin-bottom: 14px;
  }
  .case-detail-diagram {
    min-height: 260px;
  }
  .case-detail-cta .container-main {
    display: block;
  }
  .case-detail-cta a {
    margin-top: 28px;
  }
}

/* Editorial case detail: one cover image plus rich-text content. */
.case-editorial-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(56, 139, 232, 0.38),
      transparent 28%
    ),
    linear-gradient(90deg, rgba(4, 26, 58, 0.92), rgba(9, 70, 137, 0.68)),
    url("../images/cases-tech-hero-v1.png") center / cover no-repeat;
}
.case-editorial-hero:after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(3, 23, 51, 0.24), transparent 70%);
  content: "";
  pointer-events: none;
}
.case-editorial-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.case-editorial-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.case-editorial-hero-media img[src=""],
.case-editorial-hero-media img:not([src]) {
  display: none;
}
.case-editorial-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 128px;
  padding-bottom: 92px;
}
.case-editorial-hero .case-detail-breadcrumb {
  margin-bottom: 62px;
}
.case-editorial-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.case-editorial-hero .case-detail-lead {
  max-width: 680px;
  font-size: 18px;
}
.case-editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}
.case-editorial-meta span {
  padding: 7px 12px;
  border: 1px solid rgba(194, 228, 255, 0.32);
  color: #d9efff;
  font-size: 12px;
}
.case-editorial-article {
  padding: 104px 0 126px;
  background: linear-gradient(180deg, #f5f9fd 0%, #fff 34%);
}
.case-editorial-cover {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #eaf2fa;
}
.case-editorial-cover img {
  display: block;
  width: 100%;
  height: min(54vw, 650px);
  object-fit: cover;
}
.case-editorial-cover figcaption {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}
.case-editorial-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 720px);
  justify-content: center;
  gap: 74px;
  padding-top: 78px;
}
.case-editorial-index {
  align-self: start;
  padding-top: 6px;
  border-top: 2px solid #1768df;
  color: #0b356b;
}
.case-editorial-index span,
.case-editorial-index b,
.case-editorial-index small {
  display: block;
}
.case-editorial-index span {
  margin: 12px 0 22px;
  color: #1768df;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.case-editorial-index b {
  font-size: 17px;
}
.case-editorial-index small {
  margin-top: 8px;
  color: #7890aa;
  font-size: 12px;
  line-height: 1.7;
}
.case-editorial-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 30px;
}
.case-editorial-keywords i {
  padding: 5px 9px;
  border: 1px solid #cbdced;
  color: #4e78a4;
  font-size: 11px;
  font-style: normal;
}
.case-editorial-content {
  color: #536d89;
  font-size: 16px;
  line-height: 2;
}
.case-editorial-content p {
  margin: 0 0 24px;
}
.case-editorial-content .case-editorial-intro {
  color: #173f73;
  font-size: 22px;
  line-height: 1.75;
}
.case-editorial-section {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 22px;
  margin-top: 58px;
}
.case-editorial-section-no {
  position: relative;
  padding-top: 6px;
  color: #1768df;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.case-editorial-section-no:after {
  position: absolute;
  top: 32px;
  bottom: -24px;
  left: 5px;
  width: 1px;
  background: #cbdced;
  content: "";
}
.case-editorial-section:last-of-type .case-editorial-section-no:after {
  display: none;
}
.case-editorial-content h2,
.case-editorial-content h3 {
  color: #0b356b;
  line-height: 1.35;
}
.case-editorial-content h2 {
  margin: 0 0 18px;
  font-size: 34px;
  letter-spacing: -0.02em;
}
.case-editorial-content h3 {
  margin: 42px 0 14px;
  font-size: 22px;
}
.case-editorial-content blockquote {
  margin: 40px 0;
  padding: 24px 28px;
  border-left: 3px solid #1768df;
  color: #174e8d;
  background: #f2f7fc;
  font-size: 19px;
  line-height: 1.75;
}
.case-editorial-ending {
  margin-top: 42px !important;
  padding-top: 24px;
  border-top: 1px solid #dce8f4;
  color: #6a819c;
}
.case-editorial-cta {
  padding: 28px 0;
  color: #fff;
  background: #0a346c;
}
.case-editorial-cta .container-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.case-editorial-cta span {
  color: #b8d9f5;
  font-size: 14px;
}
.case-editorial-cta a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.case-editorial-cta a b {
  margin-left: 12px;
  color: #72c7ff;
  font-size: 20px;
}
@media (max-width: 768px) {
  .case-editorial-hero {
    min-height: 460px;
  }
  .case-editorial-hero-inner {
    padding-top: 104px;
    padding-bottom: 64px;
  }
  .case-editorial-hero .case-detail-breadcrumb {
    margin-bottom: 38px;
  }
  .case-editorial-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }
  .case-editorial-article {
    padding: 58px 0 76px;
  }
  .case-editorial-cover img {
    height: 62vw;
    min-height: 220px;
  }
  .case-editorial-layout {
    display: block;
    padding-top: 42px;
  }
  .case-editorial-index {
    margin-bottom: 38px;
  }
  .case-editorial-content {
    font-size: 15px;
  }
  .case-editorial-content .case-editorial-intro {
    font-size: 19px;
  }
  .case-editorial-section {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
    margin-top: 42px;
  }
  .case-editorial-content h2 {
    font-size: 28px;
  }
  .case-editorial-cta .container-main {
    display: block;
  }
  .case-editorial-cta a {
    display: block;
    margin-top: 12px;
  }
}

/* SMART TEAM PRODUCT PAGE — original product-detail visual language */
.team-product-page {
  --team-blue: #1578d3;
  --team-green: #38b26d;
  --team-ink: #16181a;
  --team-muted: #66717d;
  --team-line: #e7ebef;
  --team-pale: #f6f8fa;
  color: var(--team-ink);
}
.team-product-page .team-hero {
  min-height: 450px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 43, 83, 0.78), rgba(10, 72, 133, 0.42)),
    url("../images/banner2.jpg") center/cover no-repeat;
}
.team-product-page .team-hero:before,
.team-product-page .team-hero:after {
  display: none;
}
.team-product-page .team-hero .container-main {
  align-items: center;
  min-height: 450px;
  padding-top: 116px;
  padding-bottom: 54px;
  text-align: center;
}
.team-product-page .team-hero h1 {
  max-width: 920px;
  color: #fff;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.team-product-page .team-hero .container-main > p {
  max-width: 820px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.9;
}
.team-product-page .team-hero a {
  min-width: 132px;
  justify-content: center;
  padding: 13px 28px;
  margin-top: 28px;
  background: var(--team-blue);
  border-radius: 2px;
  box-shadow: none;
  font-weight: 400;
}
.team-product-page .team-subnav {
  position: relative;
  top: auto;
  box-shadow: 0 3px 10px rgba(23, 48, 72, 0.06);
}
.team-product-page .team-subnav .container-main {
  justify-content: center;
}
.team-product-page .team-subnav a {
  min-height: 64px;
  padding: 0 38px;
  color: #3d454d;
  font-weight: 400;
}
.team-product-page .team-subnav a:after {
  right: 38px;
  left: 38px;
  height: 2px;
  background: var(--team-blue);
}
.team-product-page main section:not(.team-hero):not(.team-cta) {
  scroll-margin-top: 88px;
}
.team-product-page main section header {
  max-width: none;
  margin: 0 0 58px;
  text-align: center;
}
.team-product-page main section header h2 {
  color: var(--team-ink);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.7;
}
.team-product-page main section header h2:after {
  display: block;
  width: 38px;
  height: 2px;
  margin: 13px auto 0;
  content: "";
  background: var(--team-blue);
}
.team-product-page .team-characteristics {
  padding: 86px 0 92px;
  background: #fff;
}
.team-product-page .team-characteristic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px 18px;
}
.team-product-page .team-characteristic-grid article {
  min-height: 220px;
  padding: 34px 24px 28px;
  text-align: center;
  background: var(--team-pale);
  border: 1px solid transparent;
  border-radius: 12px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.team-product-page .team-characteristic-grid article:hover {
  border-color: #d7e9df;
  box-shadow: 0 14px 34px rgba(29, 73, 54, 0.09);
  transform: translateY(-3px);
}
.team-product-page .team-characteristic-grid svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 24px;
  color: var(--team-green);
  stroke-width: 1.35;
}
.team-product-page .team-characteristic-grid h3 {
  margin: 0 0 13px;
  color: #252a2f;
  font-size: 17px;
  font-weight: 500;
}
.team-product-page .team-characteristic-grid p {
  margin: 0;
  color: #76808a;
  font-size: 13px;
  line-height: 1.85;
}
.team-product-page .team-architecture {
  padding: 88px 0 94px;
  color: var(--team-ink);
  background: #f7f9fb;
}
.team-product-page .team-architecture:before {
  display: none;
}
.team-product-page .team-architecture header h2 {
  color: var(--team-ink);
}
.team-product-page .team-architecture-tabs {
  justify-content: center;
  gap: 0;
  margin: 0 auto 34px;
  overflow: visible;
  border-bottom: 1px solid #dfe5eb;
}
.team-product-page [data-team-architecture-tab] {
  min-width: 180px;
  padding: 15px 28px;
  color: #5d6670;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-weight: 400;
}
.team-product-page [data-team-architecture-tab].active {
  color: var(--team-blue);
  background: transparent;
  border-color: var(--team-blue);
}
.team-product-page [data-team-architecture-panel] {
  max-width: 912px;
  padding: 0;
  margin: 0 auto;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: 0 10px 34px rgba(27, 53, 78, 0.07);
}
.team-product-page [data-team-architecture-panel] img {
  border-radius: 0;
}
.team-product-page .team-features {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.team-product-page .team-features:before {
  position: absolute;
  top: 180px;
  left: 50%;
  width: 760px;
  height: 360px;
  content: "";
  background: radial-gradient(
    ellipse,
    rgba(21, 120, 211, 0.18),
    transparent 68%
  );
  transform: translateX(-50%);
  pointer-events: none;
}
.team-product-page .team-features .container-main > .team-feature-carousel {
  position: relative;
  display: block !important;
}
.team-product-page .team-feature-swiper {
  width: calc(100% + 160px);
  margin-left: -80px;
  padding: 24px 0 54px;
  overflow: visible;
}
.team-product-page .team-feature-swiper .swiper-slide {
  width: min(760px, 68vw);
  opacity: 0.34;
  transform-origin: center;
  transition:
    opacity 0.55s ease,
    filter 0.55s ease;
  filter: saturate(0.65) brightness(0.94);
}
.team-product-page .team-feature-swiper .swiper-slide-active {
  opacity: 1;
  filter: none;
}
.team-product-page .team-feature-swiper article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  min-height: 470px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(151, 190, 228, 0.5);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(15, 61, 105, 0.16);
}
.team-product-page .team-feature-swiper article > button {
  order: -1;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #edf4fb;
  border: 0;
  cursor: zoom-in;
}
.team-product-page .team-feature-swiper article img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.team-product-page .team-feature-swiper article > div {
  align-self: center;
  padding: 42px 38px;
  opacity: 0.45;
  transform: translateY(18px);
  transition:
    opacity 0.45s ease 0.12s,
    transform 0.45s ease 0.12s;
}
.team-product-page .team-feature-swiper .swiper-slide-active > div {
  opacity: 1;
  transform: none;
}
.team-product-page .team-feature-controls {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.team-product-page .team-feature-controls > button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0 0 3px;
  color: #75808a;
  background: #fff;
  border: 1px solid #dce3e9;
  border-radius: 50%;
  font-size: 29px;
  line-height: 1;
}
.team-product-page .team-feature-progress-shell {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 230px;
  color: #8795a3;
  font-size: 13px;
}
.team-product-page .team-feature-progress-shell span b {
  color: var(--team-blue);
  font-size: 20px;
  font-weight: 500;
}
.team-product-page .team-feature-progress-shell > i {
  position: relative;
  display: block;
  flex: 1;
  height: 2px;
  overflow: hidden;
  background: #d9e2eb;
}
.team-product-page [data-team-feature-progress] {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(90deg, #1578d3, #57a8ef);
  transform: scaleX(0.166667);
  transform-origin: left;
  transition: transform 0.55s ease;
}
.team-product-page .team-feature-swiper:not(.swiper-initialized) {
  width: 100%;
  margin-left: 0;
  padding: 0;
  overflow: visible;
}
.team-product-page
  .team-feature-swiper:not(.swiper-initialized)
  .swiper-wrapper {
  display: grid;
  gap: 24px;
  transform: none !important;
}
.team-product-page .team-feature-swiper:not(.swiper-initialized) .swiper-slide {
  width: 100%;
  height: auto;
  opacity: 1;
  filter: none;
  transform: none !important;
}
.team-product-page .team-feature-swiper:not(.swiper-initialized) article > div {
  opacity: 1;
  transform: none;
}
.team-product-page
  .team-feature-swiper:not(.swiper-initialized)
  + .team-feature-controls {
  display: none;
}
.team-product-page .team-cases {
  padding: 88px 0 96px;
  background: var(--team-pale);
}
.team-product-page .team-cases .container-main > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.team-product-page .team-cases article {
  min-height: 250px;
  padding: 34px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(30, 54, 78, 0.06);
}
.team-product-page .team-cases span {
  color: #c4d9ec;
  font-size: 44px;
  font-weight: 300;
}
.team-product-page .team-cases h3 {
  margin: 42px 0 13px;
  color: #242a30;
  font-size: 20px;
  font-weight: 500;
}
.team-product-page .team-cases p {
  margin: 0;
  color: #727d87;
  font-size: 14px;
  line-height: 1.9;
}
.team-product-page .team-cta {
  padding: 62px 0;
  text-align: center;
  background: linear-gradient(120deg, #0b599d, #1578d3);
}
.team-product-page .team-cta .container-main {
  display: block;
}
.team-product-page .team-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
}
.team-product-page .team-cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  letter-spacing: 0;
}
.team-product-page .team-cta a {
  min-width: 126px;
  justify-content: center;
  margin: 24px auto 0;
  color: var(--team-blue);
  background: #fff;
  box-shadow: none;
}
.team-product-page .team-cta a:hover {
  color: #0c5fab;
  background: #f7fbff;
}

@media (max-width: 1024px) {
  .team-product-page .team-hero .container-main > * {
    max-width: 820px;
  }
  .team-product-page .team-characteristic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .team-product-page .team-hero,
  .team-product-page .team-hero .container-main {
    min-height: 520px;
  }
  .team-product-page .team-hero .container-main {
    padding-top: 112px;
    padding-bottom: 48px;
  }
  .team-product-page .team-hero h1 {
    font-size: 34px;
  }
  .team-product-page .team-hero .container-main > p {
    font-size: 14px;
    line-height: 1.8;
  }
  .team-product-page .team-subnav .container-main {
    justify-content: flex-start;
    width: max-content;
  }
  .team-product-page .team-subnav a {
    min-height: 56px;
    padding: 0 24px;
  }
  .team-product-page .team-subnav a:after {
    right: 24px;
    left: 24px;
  }
  .team-product-page .team-characteristics,
  .team-product-page .team-architecture,
  .team-product-page .team-features,
  .team-product-page .team-cases {
    padding: 66px 0 72px;
  }
  .team-product-page main section header {
    margin-bottom: 38px;
  }
  .team-product-page main section header h2 {
    font-size: 25px;
  }
  .team-product-page .team-characteristic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .team-product-page .team-characteristic-grid article {
    min-height: 205px;
    padding: 28px 16px 22px;
  }
  .team-product-page .team-characteristic-grid svg {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }
  .team-product-page .team-architecture-tabs {
    justify-content: flex-start;
    margin-bottom: 24px;
    overflow-x: auto;
  }
  .team-product-page [data-team-architecture-tab] {
    min-width: 140px;
    padding: 13px 16px;
  }
  .team-product-page [data-team-architecture-panel] {
    padding: 0;
  }
  .team-product-page .team-features:before {
    top: 160px;
    width: 420px;
    height: 260px;
  }
  .team-product-page .team-feature-swiper {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 18px 0 42px;
  }
  .team-product-page .team-feature-swiper .swiper-slide {
    width: 86vw;
  }
  .team-product-page .team-feature-swiper article {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .team-product-page .team-feature-swiper article > div {
    padding: 30px 24px 34px;
  }
  .team-product-page .team-cases .container-main > div {
    grid-template-columns: 1fr;
  }
  .team-product-page .team-cases article {
    min-height: 200px;
    padding: 28px;
  }
  .team-product-page .team-cases h3 {
    margin-top: 24px;
  }
  .team-product-page .team-cta h2 {
    font-size: 24px;
    line-height: 1.55;
  }
}

/* Solution channel page */
.solution-channel-page {
  --solution-blue: #165dff;
  --solution-deep: #062452;
  --solution-ink: #061b3f;
  --solution-muted: #536c91;
  --solution-line: #d8e5f5;
  color: var(--solution-ink);
  background: #f6f9fd;
}
.solution-channel-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background: #071d40;
}
.solution-channel-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-channel-hero:before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(4, 20, 45, 0.96) 0%,
      rgba(6, 32, 72, 0.8) 42%,
      rgba(8, 44, 96, 0.5) 100%
    ),
    radial-gradient(
      circle at 78% 28%,
      rgba(44, 133, 255, 0.24),
      transparent 34%
    );
}
.solution-channel-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding-top: 104px;
}
.solution-channel-kicker,
.solution-channel-heading > p,
.solution-path-title > p,
.solution-channel-cta p {
  margin: 0 0 14px;
  color: #70b5ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.solution-channel-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 720;
  line-height: 1.16;
}
.solution-channel-hero-inner > p:not(.solution-channel-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(234, 244, 255, 0.9);
  font-size: 17px;
  line-height: 1.9;
}
.solution-channel-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.solution-channel-actions a,
.solution-panel-action,
.solution-channel-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 168px;
  min-height: 50px;
  padding: 0 22px;
  color: #fff;
  background: var(--solution-blue);
  border: 1px solid var(--solution-blue);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}
.solution-channel-actions a:nth-child(2) {
  color: #d9ebff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(183, 215, 255, 0.42);
}
.solution-channel-actions a:hover,
.solution-panel-action:hover,
.solution-channel-cta a:hover {
  color: #fff;
  background: #0d4ddc;
  box-shadow: 0 18px 38px rgba(22, 93, 255, 0.26);
  transform: translateY(-2px);
}
.solution-channel-tags {
  display: flex;
  gap: 0;
  width: min(920px, 100%);
  margin-top: 58px;
  border: 1px solid rgba(178, 211, 255, 0.22);
  background: rgba(7, 31, 67, 0.36);
  backdrop-filter: blur(10px);
}
.solution-channel-tags span {
  flex: 1;
  min-height: 58px;
  display: grid;
  place-items: center;
  color: rgba(229, 241, 255, 0.86);
  border-right: 1px solid rgba(178, 211, 255, 0.18);
  font-size: 14px;
  font-weight: 650;
}
.solution-channel-tags span:last-child {
  border-right: 0;
}
.solution-channel-workbench {
  position: relative;
  background: linear-gradient(180deg, #f6f9fd 0%, #fff 54%, #f6f9fd 100%);
}
.solution-channel-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}
.solution-channel-heading > p {
  grid-column: 1 / -1;
  margin-bottom: -18px;
  color: var(--solution-blue);
}
.solution-channel-heading h2 {
  margin: 0;
  color: var(--solution-ink);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 720;
  line-height: 1.25;
}
.solution-channel-heading span {
  color: var(--solution-muted);
  font-size: 15px;
  line-height: 1.85;
}
.solution-workbench-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
}
.solution-channel-tabs {
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid #cfe0f5;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 58px rgba(19, 56, 101, 0.09);
}
.solution-channel-tabs button {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  min-height: 92px;
  padding: 19px 22px;
  color: #113866;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #dbe7f5;
  background: transparent;
  cursor: pointer;
  transition:
    color 0.28s ease,
    background 0.28s ease,
    padding 0.28s ease;
}
.solution-channel-tabs button:last-child {
  border-bottom: 0;
}
.solution-channel-tabs button:before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  content: "";
  background: var(--solution-blue);
  opacity: 0;
  transform: scaleY(0.4);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.solution-channel-tabs button span {
  padding-top: 2px;
  color: #2a73d8;
  font-size: 12px;
  font-weight: 800;
}
.solution-channel-tabs button b {
  display: block;
  font-size: 19px;
  font-weight: 720;
}
.solution-channel-tabs button small {
  grid-column: 2;
  display: block;
  margin-top: -20px;
  color: #657b9a;
  font-size: 13px;
  line-height: 1.5;
}
.solution-channel-tabs button:hover,
.solution-channel-tabs button.active {
  color: #fff;
  background: linear-gradient(135deg, #144983, #1760ee);
  padding-left: 28px;
}
.solution-channel-tabs button:hover span,
.solution-channel-tabs button.active span,
.solution-channel-tabs button:hover small,
.solution-channel-tabs button.active small {
  color: rgba(255, 255, 255, 0.78);
}
.solution-channel-tabs button.active:before {
  opacity: 1;
  transform: scaleY(1);
}
.solution-channel-tabs button:focus-visible {
  outline: 2px solid #79b9ff;
  outline-offset: -4px;
}
.solution-channel-panels {
  min-height: 610px;
  overflow: hidden;
  border: 1px solid #cfe0f5;
  background: #fff;
  box-shadow: 0 22px 58px rgba(19, 56, 101, 0.09);
}
.solution-channel-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) 380px;
  min-height: 610px;
}
.solution-channel-panel.active {
  display: grid;
  animation: solutionPanelIn 0.34s ease both;
}
@keyframes solutionPanelIn {
  from {
    opacity: 0.3;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.solution-panel-copy {
  padding: 48px 48px 42px;
}
.solution-panel-copy > p {
  margin: 0;
  color: var(--solution-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}
.solution-panel-copy h3 {
  margin: 16px 0 12px;
  color: var(--solution-ink);
  font-size: 36px;
  font-weight: 720;
  line-height: 1.22;
}
.solution-panel-copy > strong {
  display: block;
  max-width: 620px;
  color: #375273;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
}
.solution-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.solution-panel-grid section {
  min-height: 154px;
  padding: 20px;
  border: 1px solid #dce8f7;
  background: #f7fbff;
}
.solution-panel-grid span {
  display: block;
  margin-bottom: 12px;
  color: #0f4fb7;
  font-size: 14px;
  font-weight: 800;
}
.solution-panel-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #516886;
  font-size: 13px;
  line-height: 1.65;
  list-style: none;
}
.solution-panel-grid li {
  position: relative;
  padding-left: 14px;
}
.solution-panel-grid li:before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--solution-blue);
}
.solution-panel-grid section div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.solution-panel-grid section div a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #0f4fb7;
  border: 1px solid #c8dcf5;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}
.solution-panel-grid section div a:hover {
  color: #fff;
  border-color: var(--solution-blue);
  background: var(--solution-blue);
}
.solution-panel-action {
  min-width: 158px;
  gap: 12px;
  padding: 0 18px;
  margin-top: 28px;
}
.solution-panel-action span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  transition: transform 0.28s ease;
}
.solution-panel-action:hover span {
  transform: translateX(3px);
}
.solution-channel-panel figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #0b2f68;
}
.solution-channel-panel figure:after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(7, 29, 64, 0.08),
    rgba(7, 29, 64, 0.38)
  );
}
.solution-channel-panel figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.62s ease,
    filter 0.62s ease;
}
.solution-channel-panel.active figure img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}
.solution-delivery-path {
  padding: 0px 0 104px;
  background: #fff;
}
.solution-path-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}
.solution-path-title > p {
  color: var(--solution-blue);
}
.solution-path-title h2 {
  max-width: 620px;
  margin: 0;
  color: var(--solution-ink);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 720;
  line-height: 1.28;
}
.solution-path-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid #d8e5f5;
  background: #f8fbff;
}
.solution-path-grid article {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid #d8e5f5;
  transition:
    background 0.28s ease,
    transform 0.28s ease;
}
.solution-path-grid article:last-child {
  border-right: 0;
}
.solution-path-grid article:hover {
  background: #fff;
  transform: translateY(-4px);
}
.solution-path-grid span {
  display: block;
  color: var(--solution-blue);
  font-size: 13px;
  font-weight: 800;
}
.solution-path-grid h3 {
  margin: 42px 0 10px;
  color: var(--solution-ink);
  font-size: 21px;
  font-weight: 720;
}
.solution-path-grid p {
  margin: 0;
  color: var(--solution-muted);
  font-size: 13px;
  line-height: 1.75;
}
.solution-channel-cta {
  padding: 72px 0;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(120deg, rgba(7, 29, 64, 0.92), rgba(17, 82, 171, 0.88)),
    url("../images/solutions-blue-flow-v1.png") center / cover no-repeat;
}
.solution-channel-cta p {
  color: #96c9ff;
}
.solution-channel-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 720;
  line-height: 1.3;
}
.solution-channel-cta a {
  margin-top: 28px;
  color: var(--solution-blue);
  background: #fff;
  border-color: #fff;
  box-shadow: none;
}
.solution-channel-cta a:hover {
  color: #fff;
  background: var(--solution-blue);
  border-color: var(--solution-blue);
}

/* Solution channel refinement: continuous handoff, equal-height workbench and lighter delivery rhythm. */
.solution-channel-workbench {
  background: linear-gradient(180deg, #edf4fb 0%, #f8fbff 34%, #fff 100%);
}
.solution-workbench-shell {
  align-items: stretch;
}
.solution-channel-tabs {
  grid-template-rows: repeat(6, minmax(0, 1fr));
  min-height: 576px;
}
.solution-channel-tabs button {
  min-height: 0;
}
.solution-channel-panels {
  min-height: 576px;
}
.solution-channel-panel {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  min-height: 576px;
}
.solution-panel-copy {
  display: flex;
  flex-direction: column;
  padding: 42px 44px 36px;
}
.solution-panel-copy h3 {
  margin-top: 0;
}
.solution-panel-grid {
  margin-top: 26px;
}
.solution-panel-action {
  align-self: flex-start;
  margin-top: 24px;
}
.solution-delivery-path {
  padding: 0px 0 104px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fd 100%);
}
.solution-path-title {
  gap: 64px;
  margin-bottom: 42px;
}
.solution-path-title h2 {
  max-width: 680px;
}
.solution-path-title > span {
  max-width: 360px;
  padding: 0 0 3px 22px;
  color: var(--solution-muted);
  border-left: 2px solid #90bfff;
  font-size: 15px;
  line-height: 1.8;
}
.solution-path-grid {
  gap: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  list-style: none;
}
.solution-path-grid li {
  position: relative;
  min-height: 178px;
  padding: 24px 22px 20px;
  border-top: 2px solid #bdd6f5;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(19, 56, 101, 0.05);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}
.solution-path-grid li:after {
  position: absolute;
  top: 32px;
  right: -19px;
  z-index: 1;
  width: 20px;
  height: 1px;
  content: "";
  background: #aacbef;
}
.solution-path-grid li:last-child:after {
  display: none;
}
.solution-path-grid li:hover {
  border-color: var(--solution-blue);
  box-shadow: 0 18px 40px rgba(19, 74, 142, 0.11);
  transform: translateY(-5px);
}
.solution-path-grid h3 {
  margin: 34px 0 10px;
}
.solution-channel-cta {
  padding: 0;
  text-align: left;
  background:
    linear-gradient(
      105deg,
      rgba(5, 29, 64, 0.98) 0%,
      rgba(9, 55, 120, 0.96) 58%,
      rgba(21, 93, 255, 0.88) 100%
    ),
    url("../images/solutions-blue-flow-v1.png") center / cover no-repeat;
}
.solution-channel-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
  min-height: 260px;
  padding-top: 54px;
  padding-bottom: 54px;
}
.solution-channel-cta h2 {
  max-width: 760px;
}
.solution-channel-cta-inner > div > span {
  display: block;
  max-width: 670px;
  margin-top: 16px;
  color: rgba(231, 242, 255, 0.84);
  font-size: 15px;
  line-height: 1.8;
}
.solution-channel-cta a {
  flex: 0 0 248px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  min-height: 106px;
  margin: 0;
  padding: 20px 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: none;
}
.solution-channel-cta a > span {
  font-size: 17px;
  font-weight: 720;
}
.solution-channel-cta a > b {
  color: #a9d1ff;
  font-size: 13px;
  font-weight: 600;
}
.solution-channel-cta a:hover {
  background: #0c58e5;
  border-color: #8ac4ff;
}
@media (max-width: 1180px) {
  .solution-workbench-shell,
  .solution-channel-panel {
    grid-template-columns: 1fr;
  }
  .solution-channel-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .solution-channel-tabs button {
    min-height: 108px;
  }
  .solution-channel-panel figure {
    min-height: 300px;
    order: -1;
  }
  .solution-path-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .solution-path-grid article {
    border-bottom: 1px solid #d8e5f5;
  }
}
@media (max-width: 768px) {
  .solution-channel-hero,
  .solution-channel-hero-inner {
    min-height: 520px;
  }
  .solution-channel-hero-inner {
    padding-top: 104px;
    padding-bottom: 70px;
  }
  .solution-channel-hero h1 {
    font-size: 34px;
  }
  .solution-channel-hero-inner > p:not(.solution-channel-kicker) {
    font-size: 15px;
  }
  .solution-channel-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }
  .solution-channel-tags span {
    min-height: 46px;
    border-bottom: 1px solid rgba(178, 211, 255, 0.18);
    font-size: 12px;
  }
  .solution-channel-heading {
    display: block;
    margin-bottom: 24px;
  }
  .solution-channel-heading > p {
    margin-bottom: 12px;
  }
  .solution-channel-heading h2 {
    font-size: 28px;
  }
  .solution-channel-heading span {
    display: block;
    margin-top: 14px;
  }
  .solution-channel-tabs {
    grid-template-columns: 1fr;
  }
  .solution-channel-tabs button {
    min-height: 84px;
  }
  .solution-channel-panels,
  .solution-channel-panel {
    min-height: 0;
  }
  .solution-panel-copy {
    padding: 30px 22px;
  }
  .solution-panel-copy h3 {
    font-size: 28px;
  }
  .solution-panel-copy > strong {
    font-size: 15px;
  }
  .solution-panel-grid {
    grid-template-columns: 1fr;
  }
  .solution-channel-panel figure {
    min-height: 220px;
  }
  .solution-path-title {
    display: block;
  }
  .solution-path-grid {
    grid-template-columns: 1fr;
  }
  .solution-path-grid article {
    min-height: 0;
    border-right: 0;
  }
  .solution-channel-cta {
    padding: 56px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .team-product-page .team-feature-swiper .swiper-wrapper,
  .team-product-page .team-feature-swiper .swiper-slide,
  .team-product-page .team-feature-swiper article > div,
  .team-product-page [data-team-feature-progress],
  .team-product-page .team-characteristic-grid article {
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .solution-channel-tabs {
    grid-template-rows: none;
    min-height: 0;
  }
  .solution-channel-tabs button {
    min-height: 108px;
  }
  .solution-channel-panels,
  .solution-channel-panel {
    min-height: 0;
  }
  .solution-panel-copy {
    padding: 38px 36px;
  }
  .solution-channel-cta-inner {
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .solution-channel-tabs button {
    min-height: 84px;
  }
  .solution-panel-copy {
    padding: 30px 22px;
  }
  .solution-path-title {
    gap: 18px;
    margin-bottom: 28px;
  }
  .solution-path-title > span {
    max-width: none;
    margin-top: 18px;
    font-size: 14px;
  }
  .solution-path-grid {
    gap: 12px;
  }
  .solution-path-grid li {
    min-height: 0;
    padding: 20px;
  }
  .solution-path-grid li:after {
    display: none;
  }
  .solution-path-grid h3 {
    margin-top: 20px;
  }
  .solution-channel-cta-inner {
    display: block;
    min-height: 0;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .solution-channel-cta-inner > div > span {
    font-size: 14px;
  }
  .solution-channel-cta a {
    width: 100%;
    margin-top: 28px;
  }
}

/* SMART TEAM HERO AND CASE SHOWCASE */
.team-product-page .team-hero {
  height: 548px;
  min-height: 548px;
  color: var(--team-ink);
  background: #edf6ff;
}
.team-product-page .team-hero:before,
.team-product-page .team-hero:after {
  display: none;
}
.team-product-page .team-hero .team-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  align-items: center;
  min-height: 548px;
  padding-top: 92px;
  padding-bottom: 30px;
  text-align: left;
}
.team-product-page .team-hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1;
  max-width: 670px;
}
.team-product-page .team-hero-eyebrow {
  margin: 0 0 17px;
  color: var(--team-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.team-product-page .team-hero-title-row {
  display: flex;
  align-items: center;
  gap: 22px;
}
.team-product-page .team-hero h1 {
  flex: 0 1 auto;
  max-width: none;
  margin: 0;
  color: #101820;
  font-size: clamp(32px, 3.05vw, 36px);
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.team-product-page .team-hero-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 15px;
  color: #263646;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 48, 74, 0.7);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(5px);
}
.team-product-page .team-hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--team-blue);
  stroke-width: 1.8;
}
.team-product-page .team-hero .team-hero-summary {
  max-width: 640px;
  margin: 34px 0 0;
  color: #273746;
  font-size: 16px;
  line-height: 1.95;
}
.team-product-page .team-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}
.team-product-page .team-hero .team-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 42px;
  padding: 0 24px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s ease;
}
.team-product-page .team-hero .team-hero-actions .primary {
  color: #fff;
  background: #da251c;
  border-color: #da251c;
}
.team-product-page .team-hero .team-hero-actions .secondary {
  color: #da251c;
  background: rgba(255, 255, 255, 0.48);
  border-color: #da251c;
}
.team-product-page .team-hero .team-hero-actions .tertiary {
  min-width: 0;
  padding: 0 4px;
  color: #165dff;
  background: transparent;
  border-color: transparent;
}
.team-product-page .team-hero .team-hero-actions .tertiary svg {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  transition: transform 0.24s ease;
}
.team-product-page .team-hero .team-hero-actions a:hover {
  transform: translateY(-2px);
}
.team-product-page .team-hero .team-hero-actions .primary:hover {
  color: #fff;
  background: #bd1913;
  border-color: #bd1913;
}
.team-product-page .team-hero .team-hero-actions .secondary:hover {
  color: #fff;
  background: #da251c;
}
.team-product-page .team-hero .team-hero-actions .tertiary:hover {
  color: #0b4ed7;
  background: transparent;
}
.team-product-page .team-hero .team-hero-actions .tertiary:hover svg {
  transform: translateX(4px);
}
.team-product-page .team-hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: 42%;
  overflow: hidden;
  pointer-events: none;
}
.team-product-page .team-hero-visual:before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    90deg,
    #edf6ff 0%,
    rgba(237, 246, 255, 0.96) 10%,
    rgba(237, 246, 255, 0.45) 34%,
    transparent 60%
  );
}
.team-product-page .team-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.team-product-page .team-cases {
  padding: 96px 0 106px;
  background: linear-gradient(180deg, #f5f8fc 0%, #eef4fa 100%);
}
.team-product-page .team-cases header > p {
  margin: 0 0 12px;
  color: var(--team-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.team-product-page .team-cases header > span {
  display: block;
  max-width: 660px;
  margin: 17px auto 0;
  color: #66717d;
  font-size: 14px;
  line-height: 1.8;
}
.team-product-page .team-cases .team-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.team-product-page .team-cases .team-case-card {
  position: relative;
  min-height: 500px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce6f0;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(28, 63, 98, 0.08);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.team-product-page .team-case-card:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #165dff, #0f8cea 72%, #da251c);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.team-product-page .team-case-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dbe9f7;
}
.team-product-page .team-case-media:after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 56%, rgba(6, 28, 53, 0.4));
  pointer-events: none;
}
.team-product-page .team-case-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.team-product-page .team-cases .team-case-media > span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 13px;
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 3px 16px rgba(0, 23, 52, 0.36);
}
.team-product-page .team-case-content {
  padding: 26px 28px 30px;
}
.team-product-page .team-case-content > p:first-child {
  margin: 0 0 9px;
  color: #1578d3;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.13em;
}
.team-product-page .team-cases .team-case-content h3 {
  margin: 0;
  color: #1c2731;
  font-size: 23px;
  font-weight: 650;
  line-height: 1.4;
}
.team-product-page .team-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}
.team-product-page .team-cases .team-case-tags span {
  padding: 5px 10px;
  color: #276491;
  background: #edf6fd;
  border: 1px solid #d3e8f8;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}
.team-product-page .team-case-content > p:last-child {
  margin: 0;
  color: #687681;
  font-size: 13px;
  line-height: 1.85;
}
.team-product-page .team-case-card:hover {
  border-color: #b9d8f2;
  box-shadow: 0 22px 48px rgba(24, 69, 112, 0.14);
  transform: translateY(-7px);
}
.team-product-page .team-case-card:hover:after {
  opacity: 1;
  transform: scaleX(1);
}
.team-product-page .team-case-card:hover .team-case-media img {
  transform: scale(1.045);
}

@media (max-width: 1024px) {
  .team-product-page .team-hero .team-hero-layout {
    grid-template-columns: minmax(0, 54%) minmax(0, 46%);
  }
  .team-product-page .team-hero-title-row {
    display: block;
  }
  .team-product-page .team-hero-badge {
    margin-top: 16px;
  }
  .team-product-page .team-hero-visual {
    left: 47%;
  }
  .team-product-page .team-cases .team-case-grid {
    gap: 14px;
  }
  .team-product-page .team-case-content {
    padding: 22px 20px 26px;
  }
}
@media (max-width: 768px) {
  .team-product-page .team-hero {
    height: auto;
    min-height: 680px;
  }
  .team-product-page .team-hero .team-hero-layout {
    display: block;
    min-height: 680px;
    padding-top: 118px;
    padding-bottom: 250px;
  }
  .team-product-page .team-hero-copy {
    max-width: none;
  }
  .team-product-page .team-hero h1 {
    max-width: 310px;
    font-size: 37px;
    line-height: 1.2;
  }
  .team-product-page .team-hero-badge {
    min-height: 34px;
    margin-top: 14px;
    padding: 0 12px;
    font-size: 11px;
  }
  .team-product-page .team-hero .team-hero-summary {
    max-width: 350px;
    margin-top: 23px;
    font-size: 14px;
    line-height: 1.8;
  }
  .team-product-page .team-hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }
  .team-product-page .team-hero .team-hero-actions a {
    min-width: 108px;
    min-height: 40px;
    padding: 0 18px;
  }
  .team-product-page .team-hero .team-hero-actions .tertiary {
    padding: 0 2px;
  }
  .team-product-page .team-hero-visual {
    top: 265px;
    right: -150px;
    bottom: -10px;
    left: -40px;
    opacity: 0.7;
  }
  .team-product-page .team-hero-visual:before {
    background: linear-gradient(
      180deg,
      #edf6ff 0%,
      rgba(237, 246, 255, 0.82) 20%,
      rgba(237, 246, 255, 0.12) 55%,
      transparent 100%
    );
  }
  .team-product-page .team-hero-visual img {
    object-position: 73% center;
  }
  .team-product-page .team-cases {
    padding: 72px 0 80px;
  }
  .team-product-page .team-cases .team-case-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .team-product-page .team-cases .team-case-card {
    min-height: 0;
    padding: 0;
  }
  .team-product-page .team-case-content {
    padding: 24px 22px 27px;
  }
  .team-product-page .team-cases .team-case-content h3 {
    margin: 0;
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .team-product-page .team-case-card,
  .team-product-page .team-case-card:after,
  .team-product-page .team-case-card img,
  .team-product-page .team-hero-actions a,
  .team-product-page .team-hero-actions svg {
    transition-duration: 0s !important;
  }
  .team-product-page .team-case-card:hover,
  .team-product-page .team-hero-actions a:hover {
    transform: none;
  }
  .team-product-page .team-case-card:hover img {
    transform: none;
  }
}

/* ============================================================
   Support page — scoped under .support-page
   ============================================================ */
.support-page {
  --support-blue: #165dff;
  --support-deep: #082857;
  --support-ink: #102a4d;
  --support-muted: #5c708c;
  --support-line: #dbe5f1;
  --support-pale: #f4f8fd;
  overflow-x: hidden;
  color: var(--support-ink);
  background: #fff;
  scroll-behavior: smooth;
}
.support-page .site-header.is-solid {
  height: 60px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e3eaf3;
  box-shadow: 0 5px 18px rgba(13, 46, 85, 0.06);
}
.support-page main section {
  scroll-margin-top: 60px;
}

/* Hero */
.support-page .support-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background-color: #f5f9ff;
  background-image:
    linear-gradient(rgba(22, 93, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 93, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.support-page .support-hero::before {
  position: absolute;
  top: 80px;
  right: -120px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(22, 93, 255, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(22, 93, 255, 0.04),
    0 0 0 118px rgba(22, 93, 255, 0.022);
  pointer-events: none;
}
.support-page .support-hero::after {
  position: absolute;
  bottom: -90px;
  left: -60px;
  width: 220px;
  height: 220px;
  content: "";
  background: radial-gradient(circle at 40% 35%, #a3cfff, #165dff 55%, #0a3a9c);
  border-radius: 50%;
  box-shadow: 0 28px 64px rgba(22, 93, 255, 0.28);
  pointer-events: none;
}
.support-page .support-hero .container-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
  padding-top: 112px;
  padding-bottom: 80px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.support-page .support-hero-eyebrow {
  margin: 0 0 14px;
  color: var(--support-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.support-page .support-hero h1 {
  margin: 0;
  color: var(--support-ink);
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 720;
  line-height: 1.16;
}
.support-page .support-hero-summary {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--support-muted);
  font-size: 18px;
  line-height: 1.85;
}
.support-page .support-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.support-page .support-hero-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.support-page .support-hero-actions a.primary {
  color: #fff;
  background: var(--support-blue);
  box-shadow: 0 12px 28px rgba(22, 93, 255, 0.2);
}
.support-page .support-hero-actions a.primary:hover {
  background: #0d4ddc;
  transform: translateY(-2px);
}
.support-page .support-hero-actions a.secondary {
  color: var(--support-blue);
  background: transparent;
  border: 1px solid var(--support-blue);
}
.support-page .support-hero-actions a.secondary:hover {
  color: #fff;
  background: var(--support-blue);
}
.support-page .support-hero-actions a i {
  width: 20px;
  height: 20px;
}
.support-page .support-hero-actions a i svg {
  width: 20px !important;
  height: 20px !important;
}

/* Section headers */
.support-page main section header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.support-page main section header > p {
  margin: 0 0 12px;
  color: var(--support-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.support-page main section header h2 {
  margin: 0;
  color: var(--support-ink);
  font-size: clamp(29px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
}
.support-page main section header > span {
  display: block;
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--support-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Process grid */
.support-page .support-process {
  padding: 108px 0 116px;
  background: #fff;
}
.support-page .support-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.support-page .support-process-grid article {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 30px 26px 28px;
  background: #fff;
  border: 1px solid var(--support-line);
  border-radius: 10px;
  transition:
    transform 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease;
}
.support-page .support-process-grid article:hover {
  border-color: #a8c7f4;
  box-shadow: 0 18px 38px rgba(22, 93, 255, 0.1);
  transform: translateY(-4px);
}
.support-page .support-process-num {
  position: absolute;
  top: 12px;
  right: 16px;
  color: #c8d8f0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  pointer-events: none;
}
.support-page .support-process-grid article i {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  color: var(--support-blue);
}
.support-page .support-process-grid article i svg {
  width: 64px !important;
  height: 64px !important;
}
.support-page .support-process-grid article h3 {
  margin: 0 0 6px;
  color: var(--support-ink);
  font-size: 18px;
  font-weight: 700;
}
.support-page .support-process-grid article p {
  margin: 0;
  color: var(--support-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* Assurance */
.support-page .support-assurance {
  padding: 108px 0 116px;
  background: var(--support-pale);
}

/* Trust stats */
.support-page .support-trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
}
.support-page .support-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  padding: 28px 32px;
}
.support-page .support-trust-item b {
  color: var(--support-blue);
  font-size: clamp(30px, 2.6vw, 38px);
  font-weight: 720;
  line-height: 1.2;
}
.support-page .support-trust-item span {
  margin-top: 8px;
  color: var(--support-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Cert badges */
.support-page .support-cert-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.support-page .support-cert-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 12px;
  background: #fff;
  border: 1px solid var(--support-line);
  border-radius: 8px;
  text-align: center;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}
.support-page .support-cert-tile:hover {
  border-color: #a8c7f4;
  box-shadow: 0 12px 26px rgba(22, 93, 255, 0.08);
}
.support-page .support-cert-tile i {
  width: 48px;
  height: 48px;
  color: var(--support-blue);
}
.support-page .support-cert-tile i svg {
  width: 48px !important;
  height: 48px !important;
}
.support-page .support-cert-tile span {
  color: var(--support-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

/* CTA */
.support-page .support-cta {
  padding: 72px 0;
  color: #fff;
  background: var(--support-blue);
}
.support-page .support-cta .container-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
.support-page .support-cta h2 {
  grid-column: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.6vw, 38px);
}
.support-page .support-cta p {
  grid-column: 1;
  margin: 8px 0 0;
  color: #c9e2ff;
  font-size: 15px;
  line-height: 1.7;
}
.support-page .support-cta a {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 0 28px;
  color: var(--support-blue);
  background: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.support-page .support-cta a:hover {
  color: #0d4ddc;
  background: #f4f8ff;
  transform: translateY(-2px);
}

/* Focus visible */
.support-page :is(a, button, [role="button"]):focus-visible {
  outline: 3px solid #165dff;
  outline-offset: 3px;
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .support-page .support-hero::before {
    right: -180px;
    width: 340px;
    height: 340px;
  }
  .support-page .support-hero::after {
    bottom: -60px;
    left: -90px;
    width: 170px;
    height: 170px;
    opacity: 0.7;
  }
  .support-page .support-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .support-page .support-cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .support-page .support-hero,
  .support-page .support-hero .container-main {
    min-height: 500px;
  }
  .support-page .support-hero .container-main {
    padding-top: 106px;
    padding-bottom: 64px;
  }
  .support-page .support-hero::before {
    top: 160px;
    right: -170px;
    width: 260px;
    height: 260px;
    opacity: 0.5;
  }
  .support-page .support-hero::after {
    bottom: -50px;
    left: -110px;
    width: 130px;
    height: 130px;
    opacity: 0.4;
  }
  .support-page .support-hero h1 {
    font-size: 34px;
  }
  .support-page .support-hero-summary {
    font-size: 15px;
    max-width: 90%;
  }
  .support-page .support-process,
  .support-page .support-assurance {
    padding: 74px 0;
  }
  .support-page main section header {
    margin-bottom: 32px;
  }
  .support-page .support-process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .support-page .support-process-grid article {
    padding: 24px 20px;
  }
  .support-page .support-trust-grid {
    gap: 0;
  }
  .support-page .support-trust-item {
    min-width: 100px;
    padding: 20px 18px;
  }
  .support-page .support-trust-item b {
    font-size: 28px;
  }
  .support-page .support-cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .support-page .support-cert-tile {
    padding: 18px 10px;
  }
  .support-page .support-cert-tile span {
    font-size: 12px;
  }
  .support-page .support-cta {
    padding: 54px 0;
  }
  .support-page .support-cta .container-main {
    display: block;
    text-align: center;
  }
  .support-page .support-cta a {
    margin-top: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .support-page {
    scroll-behavior: auto;
  }
  .support-page *,
  .support-page *::before,
  .support-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .support-page .support-process-grid article:hover,
  .support-page .support-hero-actions a:hover,
  .support-page .support-cta a:hover {
    transform: none;
  }
}

/* ============================================================
/* ===========================================================
/* ============================================================
   About page — scoped under .about-page
   ============================================================ */
.about-page {
  --about-blue: #165dff;
  --about-deep: #082857;
  --about-ink: #102a4d;
  --about-muted: #5c708c;
  --about-line: #dbe5f1;
  --about-pale: #f4f8fd;
  overflow-x: hidden;
  color: var(--about-ink);
  background: #fff;
  scroll-behavior: smooth;
}
.about-page .site-header.is-solid {
  height: 72px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e3eaf3;
  box-shadow: 0 5px 18px rgba(13, 46, 85, 0.06);
}
.about-page main section {
  scroll-margin-top: 72px;
}

/* Hero */
.about-page .about-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background-color: #061d3b;
  background-image:
    linear-gradient(90deg, rgba(3, 20, 46, 0.82), rgba(7, 48, 96, 0.48)),
    url("../images/about-hero-tech-v1.png");
  background-position: center;
  background-size: cover;
}
.about-page .about-hero::before {
  position: absolute;
  top: 60px;
  right: -90px;
  width: 340px;
  height: 340px;
  content: "";
  border: 1px solid rgba(22, 93, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}
.about-page .about-hero::after {
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(22, 93, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}
.about-page .about-hero .container-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding-top: 112px;
  padding-bottom: 74px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.about-page .about-hero-eyebrow {
  margin: 0 0 14px;
  color: #8fc3ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.about-page .about-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 720;
  line-height: 1.16;
}
.about-page .about-hero-summary {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.9;
}

/* Section headers */
.about-page main section header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.about-page main section header > p {
  margin: 0 0 12px;
  color: var(--about-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.about-page main section header h2 {
  margin: 0;
  color: var(--about-ink);
  font-size: clamp(29px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.3;
}
.about-page main section header > span {
  display: block;
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Profile — CMS content area */
.about-page .about-profile {
  padding: 76px 0 108px;
  background: #fff;
}
.about-page .about-content {
  max-width: 780px;
  margin: 0 auto;
}
.about-page .about-content p {
  margin: 0 0 18px;
  color: var(--about-muted);
  font-size: 15px;
  line-height: 1.95;
}
.about-page .about-content p:last-child {
  margin-bottom: 0;
}
.about-page .about-content p:first-child {
  color: var(--about-ink);
  font-size: 17px;
  font-weight: 600;
}

/* Organization */
.about-page .about-org {
  padding: 80px 0 116px;
  background: var(--about-pale);
}
.about-page .about-org-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.about-page .about-org-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 16px 30px;
  background: var(--about-pale);
  border: 1px solid var(--about-line);
  border-radius: 10px;
  text-align: center;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease;
}
.about-page .about-org-grid article:hover {
  box-shadow: 0 14px 32px rgba(22, 93, 255, 0.09);
  transform: translateY(-3px);
}
.about-page .about-org-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: var(--about-blue);
}
.about-page .about-org-grid article h3 {
  margin: 0 0 10px;
  color: var(--about-ink);
  font-size: 16px;
  font-weight: 700;
}
.about-page .about-org-grid article p {
  margin: 0;
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Values */
.about-page .about-values {
  padding: 108px 0 120px;
  background: #fff;
}
.about-page .about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.about-page .about-values-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 22px 38px;
  background: #fff;
  border: 1px solid var(--about-line);
  border-top: 3px solid var(--card-accent, #165dff);
  border-radius: 0 0 12px 12px;
  text-align: center;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease;
}
.about-page .about-values-grid article:hover {
  box-shadow: 0 20px 44px rgba(22, 93, 255, 0.11);
  transform: translateY(-5px);
}
.about-page .about-values-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--card-accent, #165dff) 10%, transparent);
}
.about-page .about-values-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--card-accent, #165dff);
}
.about-page .about-values-grid article h3 {
  margin: 0 0 16px;
  color: var(--about-ink);
  font-size: 20px;
  font-weight: 700;
}
.about-page .about-values-grid article ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.about-page .about-values-grid article li {
  position: relative;
  padding-left: 16px;
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
}
.about-page .about-values-grid article li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--card-accent, #165dff);
  border-radius: 50%;
}

/* Industry */
.about-page .about-industry {
  padding: 108px 0 116px;
  background: var(--about-pale);
}
.about-page .about-industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.about-page .about-industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 14px 28px;
  background: #fff;
  border: 1px solid var(--about-line);
  border-radius: 10px;
  text-align: center;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}
.about-page .about-industry-item:hover {
  border-color: #a8c7f4;
  box-shadow: 0 12px 28px rgba(22, 93, 255, 0.07);
}
.about-page .about-industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  color: var(--about-blue);
}
.about-page .about-industry-item b {
  display: block;
  margin-bottom: 8px;
  color: var(--about-ink);
  font-size: 16px;
  font-weight: 700;
}
.about-page .about-industry-item > span:last-child {
  color: var(--about-muted);
  font-size: 12px;
  line-height: 1.6;
}

/* Strength */
.about-page .about-strength {
  padding: 108px 0 116px;
  background: #fff;
}
.about-page .about-trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
}
.about-page .about-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  padding: 28px 32px;
}
.about-page .about-trust-item b {
  color: var(--about-blue);
  font-size: clamp(30px, 2.6vw, 38px);
  font-weight: 720;
  line-height: 1.2;
}
.about-page .about-trust-item span {
  margin-top: 8px;
  color: var(--about-muted);
  font-size: 13px;
  line-height: 1.5;
}
.about-page .about-cert-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.about-page .about-cert-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 26px 12px;
  background: #fff;
  border: 1px solid var(--about-line);
  border-radius: 8px;
  text-align: center;
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}
.about-page .about-cert-tile:hover {
  border-color: #a8c7f4;
  box-shadow: 0 12px 26px rgba(22, 93, 255, 0.08);
}
.about-page .about-cert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--about-blue);
}
.about-page .about-cert-tile > span:last-child {
  color: var(--about-ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

/* CTA */
.about-page .about-cta {
  padding: 72px 0;
  color: #fff;
  background: var(--about-blue);
}
.about-page .about-cta .container-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
.about-page .about-cta h2 {
  grid-column: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.6vw, 38px);
}
.about-page .about-cta p {
  grid-column: 1;
  margin: 8px 0 0;
  color: #c9e2ff;
  font-size: 15px;
  line-height: 1.7;
}
.about-page .about-cta a {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 0 28px;
  color: var(--about-blue);
  background: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.about-page .about-cta a:hover {
  color: #0d4ddc;
  background: #f4f8ff;
  transform: translateY(-2px);
}
.about-page :is(a, button, [role="button"]):focus-visible {
  outline: 3px solid #165dff;
  outline-offset: 3px;
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .about-page .about-hero::before {
    right: -140px;
    width: 260px;
    height: 260px;
  }
  .about-page .about-hero::after {
    bottom: -40px;
    left: -70px;
    width: 130px;
    height: 130px;
    opacity: 0.6;
  }
  .about-page .about-profile-grid {
    gap: 5%;
  }
  .about-page .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
  .about-page .about-org-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .about-page .about-industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .about-page .about-cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .about-page .about-hero,
  .about-page .about-hero .container-main {
    min-height: 460px;
  }
  .about-page .about-hero .container-main {
    padding-top: 106px;
    padding-bottom: 60px;
  }
  .about-page .about-hero::before {
    top: 140px;
    right: -150px;
    width: 200px;
    height: 200px;
    opacity: 0.4;
  }
  .about-page .about-hero::after {
    bottom: -30px;
    left: -90px;
    width: 90px;
    height: 90px;
    opacity: 0.3;
  }
  .about-page .about-hero h1 {
    font-size: 34px;
  }
  .about-page .about-hero-summary {
    font-size: 15px;
    max-width: 90%;
  }
  .about-page .about-profile {
    padding: 52px 0 74px;
  }
  .about-page .about-org {
    padding: 64px 0 74px;
  }
  .about-page .about-values,
  .about-page .about-strength,
  .about-page .about-industry {
    padding: 74px 0;
  }
  .about-page main section header {
    margin-bottom: 32px;
  }
  .about-page .about-content p {
    font-size: 14px;
  }
  .about-page .about-content p:first-child {
    font-size: 16px;
  }
  .about-page .about-values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about-page .about-values-grid article {
    padding: 36px 22px 32px;
  }
  .about-page .about-values-grid article h3 {
    font-size: 18px;
  }
  .about-page .about-org-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .about-page .about-org-grid article {
    padding: 28px 12px 24px;
  }
  .about-page .about-org-grid article h3 {
    font-size: 14px;
  }
  .about-page .about-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .about-page .about-industry-item {
    padding: 24px 10px 22px;
  }
  .about-page .about-trust-grid {
    gap: 0;
  }
  .about-page .about-trust-item {
    min-width: 100px;
    padding: 20px 18px;
  }
  .about-page .about-trust-item b {
    font-size: 28px;
  }
  .about-page .about-cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .about-page .about-cert-tile {
    padding: 18px 10px;
  }
  .about-page .about-cert-tile > span:last-child {
    font-size: 12px;
  }
  .about-page .about-cta {
    padding: 54px 0;
  }
  .about-page .about-cta .container-main {
    display: block;
    text-align: center;
  }
  .about-page .about-cta a {
    margin-top: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-page {
    scroll-behavior: auto;
  }
  .about-page *,
  .about-page *::before,
  .about-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .about-page .about-values-grid article:hover,
  .about-page .about-cta a:hover {
    transform: none;
  }
}

/* ============================================================
   SSL Checker page — scoped under .ssl-checker-page
   ============================================================ */
.ssl-checker-page {
  --sck-blue: #165dff;
  --sck-ink: #102a4d;
  --sck-muted: #5c708c;
  --sck-line: #dbe5f1;
  --sck-pale: #f4f8fd;
  overflow-x: hidden;
  color: var(--sck-ink);
  background: #fff;
  scroll-behavior: smooth;
}
.ssl-checker-page .site-header.is-solid {
  height: 60px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e3eaf3;
  box-shadow: 0 5px 18px rgba(13, 46, 85, 0.06);
}

/* Hero */
.sslcheck-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 50%, #eef5ff 100%);
}
.sslcheck-hero::before {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgba(22, 93, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}
.sslcheck-hero::after {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(22, 93, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
.sslcheck-hero .container-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.sslcheck-eyebrow {
  margin: 0 0 14px;
  color: var(--sck-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.sslcheck-hero h1 {
  margin: 0;
  color: var(--sck-ink);
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 720;
  line-height: 1.16;
}
.sslcheck-summary {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--sck-muted);
  font-size: 17px;
  line-height: 1.85;
}

/* Form section */
.sslcheck-form-section {
  padding: 0 0 80px;
  margin-top: -30px;
  background: #fff;
}
.sslcheck-form-wrap {
  max-width: 1120px;
  margin: 0 auto;
}
.sslcheck-form-section .scan-box {
  max-width: 720px;
  margin: 0 auto;
}
.sslcheck-form-section .scan-box {
  box-shadow: 0 12px 40px rgba(22, 93, 255, 0.08);
}
.sslcheck-input-row {
  display: flex;
  gap: 0;
}
.sslcheck-protocol {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 46px;
  background: #f0f5ff;
  border: 1px solid #d8e2f2;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  color: var(--sck-muted);
  font-size: 14px;
  white-space: nowrap;
}
.sslcheck-protocol i {
  width: 16px;
  height: 16px;
  color: var(--sck-blue);
}
.sslcheck-protocol i svg {
  width: 100%;
  height: 100%;
}
.sslcheck-form-section .scan-input {
  border-radius: 0;
  flex: 1;
}
.sslcheck-form-section .btn-primary {
  border-radius: 0 4px 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sslcheck-form-section .btn-primary i {
  width: 18px;
  height: 18px;
}
.sslcheck-form-section .btn-primary i svg {
  width: 100%;
  height: 100%;
}
.sslcheck-hint {
  text-align: center;
}

/* Result */
.sslcheck-result {
  margin-top: 24px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--sck-line);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(22, 93, 255, 0.06);
}
.sslcheck-result-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sck-line);
}
.sslcheck-result-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--sck-blue);
}
.sslcheck-result-icon i {
  width: 48px;
  height: 48px;
}
.sslcheck-result-icon i svg {
  width: 100%;
  height: 100%;
}
.sslcheck-result-head b {
  display: block;
  color: var(--sck-ink);
  font-size: 20px;
  font-weight: 700;
}
.sslcheck-result-head span {
  color: var(--sck-muted);
  font-size: 14px;
}
.sslcheck-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.sslcheck-result-grid > div {
  padding: 18px;
  background: var(--sck-pale);
  border-radius: 8px;
}
.sslcheck-result-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--sck-muted);
  font-size: 12px;
}
.sslcheck-result-grid b {
  display: block;
  margin-bottom: 4px;
  color: var(--sck-ink);
  font-size: 16px;
  font-weight: 700;
}
.sslcheck-result-grid small {
  color: #93a3bc;
  font-size: 12px;
}

/* Features */
.sslcheck-features {
  padding: 88px 0 100px;
  background: #fff;
}
.sslcheck-features header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.sslcheck-features header > p {
  margin: 0 0 12px;
  color: var(--sck-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.sslcheck-features header h2 {
  margin: 0;
  color: var(--sck-ink);
  font-size: clamp(29px, 3vw, 36px);
  font-weight: 700;
}
.sslcheck-features header > span {
  display: block;
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--sck-muted);
  font-size: 15px;
  line-height: 1.8;
}
.sslcheck-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.sslcheck-feature-grid article {
  padding: 34px 26px 30px;
  background: #fff;
  border: 1px solid var(--sck-line);
  border-radius: 10px;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease;
}
.sslcheck-feature-grid article:hover {
  box-shadow: 0 16px 36px rgba(22, 93, 255, 0.09);
  transform: translateY(-3px);
}
.sslcheck-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--sck-blue);
}
.sslcheck-feature-icon i {
  width: 48px;
  height: 48px;
}
.sslcheck-feature-icon i svg {
  width: 100%;
  height: 100%;
}
.sslcheck-feature-grid article h3 {
  margin: 0 0 10px;
  color: var(--sck-ink);
  font-size: 18px;
  font-weight: 700;
}
.sslcheck-feature-grid article p {
  margin: 0;
  color: var(--sck-muted);
  font-size: 13px;
  line-height: 1.75;
}

/* Products */
.sslcheck-products {
  padding: 100px 0 110px;
  background: #fff;
}
.sslcheck-products header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.sslcheck-products header > p {
  margin: 0 0 12px;
  color: var(--sck-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.sslcheck-products header h2 {
  margin: 0;
  color: var(--sck-ink);
  font-size: clamp(29px, 3vw, 36px);
  font-weight: 700;
}
.sslcheck-products header > span {
  display: block;
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--sck-muted);
  font-size: 15px;
  line-height: 1.8;
}
.sslcheck-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* CTA */
.sslcheck-cta {
  padding: 72px 0;
  color: #fff;
  background: var(--sck-blue);
}
.sslcheck-cta .container-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
.sslcheck-cta h2 {
  grid-column: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.6vw, 38px);
}
.sslcheck-cta p {
  grid-column: 1;
  margin: 8px 0 0;
  color: #c9e2ff;
  font-size: 15px;
  line-height: 1.7;
}
.sslcheck-cta a {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 0 28px;
  color: var(--sck-blue);
  background: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.sslcheck-cta a:hover {
  color: #0d4ddc;
  background: #f4f8ff;
  transform: translateY(-2px);
}

/* Focus */
.ssl-checker-page :is(a, button, [role="button"]):focus-visible {
  outline: 3px solid #165dff;
  outline-offset: 3px;
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .sslcheck-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sslcheck-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sslcheck-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .sslcheck-hero,
  .sslcheck-hero .container-main {
    min-height: 360px;
  }
  .sslcheck-hero .container-main {
    padding-top: 96px;
    padding-bottom: 50px;
  }
  .sslcheck-hero h1 {
    font-size: 32px;
  }
  .sslcheck-summary {
    font-size: 15px;
  }
  .sslcheck-input-row {
    flex-wrap: wrap;
  }
  .ss

/* ============================================================
   SSL Checker page — scoped under .ssl-checker-page
   ============================================================ */
.ssl-checker-page {
    --sck-blue: #165dff;
    --sck-ink: #102a4d;
    --sck-muted: #5c708c;
    --sck-line: #dbe5f1;
    --sck-pale: #f4f8fd;
    overflow-x: hidden;
    color: var(--sck-ink);
    background: #fff;
    scroll-behavior: smooth;
  }
  .ssl-checker-page .site-header.is-solid {
    height: 72px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e3eaf3;
    box-shadow: 0 5px 18px rgba(13, 46, 85, 0.06);
  }

  /* Hero */
  .sslcheck-hero {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 50%, #eef5ff 100%);
  }
  .sslcheck-hero::before {
    position: absolute;
    top: -40px;
    right: -60px;
    width: 280px;
    height: 280px;
    content: "";
    border: 1px solid rgba(22, 93, 255, 0.16);
    border-radius: 50%;
    pointer-events: none;
  }
  .sslcheck-hero::after {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    content: "";
    border: 1px solid rgba(22, 93, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
  }
  .sslcheck-hero .container-main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
    padding-top: 100px;
    padding-bottom: 60px;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }
  .sslcheck-eyebrow {
    margin: 0 0 14px;
    color: var(--sck-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
  }
  .sslcheck-hero h1 {
    margin: 0;
    color: var(--sck-ink);
    font-size: clamp(38px, 4.4vw, 56px);
    font-weight: 720;
    line-height: 1.16;
  }
  .sslcheck-summary {
    max-width: 620px;
    margin: 20px auto 0;
    color: var(--sck-muted);
    font-size: 17px;
    line-height: 1.85;
  }

  /* Form section */
  .sslcheck-form-section {
    padding: 0 0 80px;
    margin-top: -30px;
    background: #fff;
  }
  .sslcheck-form-wrap {
    max-width: 720px;
    margin: 0 auto;
  }
  .sslcheck-form-section .scan-box {
    box-shadow: 0 12px 40px rgba(22, 93, 255, 0.08);
  }
  .sslcheck-input-row {
    display: flex;
    gap: 0;
  }
  .sslcheck-protocol {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    height: 46px;
    background: #f0f5ff;
    border: 1px solid #d8e2f2;
    border-right: 0;
    border-radius: 4px 0 0 4px;
    color: var(--sck-muted);
    font-size: 14px;
    white-space: nowrap;
  }
  .sslcheck-protocol i {
    width: 16px;
    height: 16px;
    color: var(--sck-blue);
  }
  .sslcheck-protocol i svg {
    width: 100%;
    height: 100%;
  }
  .sslcheck-form-section .scan-input {
    border-radius: 0;
    flex: 1;
  }
  .sslcheck-form-section .btn-primary {
    border-radius: 0 4px 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .sslcheck-form-section .btn-primary i {
    width: 18px;
    height: 18px;
  }
  .sslcheck-form-section .btn-primary i svg {
    width: 100%;
    height: 100%;
  }
  .sslcheck-hint {
    text-align: center;
  }

  /* Result */
  .sslcheck-result {
    margin-top: 24px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--sck-line);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(22, 93, 255, 0.06);
  }
  .sslcheck-result-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sck-line);
  }
  .sslcheck-result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--sck-blue);
  }
  .sslcheck-result-icon i {
    width: 48px;
    height: 48px;
  }
  .sslcheck-result-icon i svg {
    width: 100%;
    height: 100%;
  }
  .sslcheck-result-head b {
    display: block;
    color: var(--sck-ink);
    font-size: 20px;
    font-weight: 700;
  }
  .sslcheck-result-head span {
    color: var(--sck-muted);
    font-size: 14px;
  }
  .sslcheck-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .sslcheck-result-grid > div {
    padding: 18px;
    background: var(--sck-pale);
    border-radius: 8px;
  }
  .sslcheck-result-grid span {
    display: block;
    margin-bottom: 6px;
    color: var(--sck-muted);
    font-size: 12px;
  }
  .sslcheck-result-grid b {
    display: block;
    margin-bottom: 4px;
    color: var(--sck-ink);
    font-size: 16px;
    font-weight: 700;
  }
  .sslcheck-result-grid small {
    color: #93a3bc;
    font-size: 12px;
  }

  /* Features */
  .sslcheck-features {
    padding: 88px 0 100px;
    background: var(--sck-pale);
  }
  .sslcheck-features header {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
  }
  .sslcheck-features header > p {
    margin: 0 0 12px;
    color: var(--sck-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
  }
  .sslcheck-features header h2 {
    margin: 0;
    color: var(--sck-ink);
    font-size: clamp(29px, 3vw, 36px);
    font-weight: 700;
  }
  .sslcheck-features header > span {
    display: block;
    max-width: 560px;
    margin: 14px auto 0;
    color: var(--sck-muted);
    font-size: 15px;
    line-height: 1.8;
  }
  .sslcheck-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  .sslcheck-feature-grid article {
    padding: 34px 26px 30px;
    background: #fff;
    border: 1px solid var(--sck-line);
    border-radius: 10px;
    transition:
      transform 0.26s ease,
      box-shadow 0.26s ease;
  }
  .sslcheck-feature-grid article:hover {
    box-shadow: 0 16px 36px rgba(22, 93, 255, 0.09);
    transform: translateY(-3px);
  }
  .sslcheck-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    color: var(--sck-blue);
  }
  .sslcheck-feature-icon i {
    width: 48px;
    height: 48px;
  }
  .sslcheck-feature-icon i svg {
    width: 100%;
    height: 100%;
  }
  .sslcheck-feature-grid article h3 {
    margin: 0 0 10px;
    color: var(--sck-ink);
    font-size: 18px;
    font-weight: 700;
  }
  .sslcheck-feature-grid article p {
    margin: 0;
    color: var(--sck-muted);
    font-size: 13px;
    line-height: 1.75;
  }

  /* Products */
  .sslcheck-products {
    padding: 100px 0 110px;
    background: #fff;
  }
  .sslcheck-products header {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
  }
  .sslcheck-products header > p {
    margin: 0 0 12px;
    color: var(--sck-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
  }
  .sslcheck-products header h2 {
    margin: 0;
    color: var(--sck-ink);
    font-size: clamp(29px, 3vw, 36px);
    font-weight: 700;
  }
  .sslcheck-products header > span {
    display: block;
    max-width: 560px;
    margin: 14px auto 0;
    color: var(--sck-muted);
    font-size: 15px;
    line-height: 1.8;
  }
  .sslcheck-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  /* CTA */
  .sslcheck-cta {
    padding: 72px 0;
    color: #fff;
    background: var(--sck-blue);
  }
  .sslcheck-cta .container-main {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
  }
  .sslcheck-cta h2 {
    grid-column: 1;
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 2.6vw, 38px);
  }
  .sslcheck-cta p {
    grid-column: 1;
    margin: 8px 0 0;
    color: #c9e2ff;
    font-size: 15px;
    line-height: 1.7;
  }
  .sslcheck-cta a {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 48px;
    padding: 0 28px;
    color: var(--sck-blue);
    background: #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
      transform 0.25s ease,
      background 0.25s ease;
  }
  .sslcheck-cta a:hover {
    color: #0d4ddc;
    background: #f4f8ff;
    transform: translateY(-2px);
  }

  /* Focus */
  .ssl-checker-page :is(a, button, [role="button"]):focus-visible {
    outline: 3px solid #165dff;
    outline-offset: 3px;
  }

  /* ---------- responsive ---------- */
  @media (max-width: 1024px) {
    .sslcheck-feature-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sslcheck-product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sslcheck-result-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 768px) {
    .sslcheck-hero,
    .sslcheck-hero .container-main {
      min-height: 360px;
    }
    .sslcheck-hero .container-main {
      padding-top: 96px;
      padding-bottom: 50px;
    }
    .sslcheck-hero h1 {
      font-size: 32px;
    }
    .sslcheck-summary {
      font-size: 15px;
    }
    .sslcheck-input-row {
      flex-wrap: wrap;
    }
    .sslcheck-protocol {
      width: 100%;
      border-right: 1px solid #d8e2f2;
      border-radius: 4px 4px 0 0;
    }
    .sslcheck-form-section .scan-input {
      border-radius: 0;
    }
    .sslcheck-form-section .btn-primary {
      width: 100%;
      border-radius: 0 0 4px 4px;
      justify-content: center;
    }
    .sslcheck-features,
    .sslcheck-products {
      padding: 64px 0;
    }
    .sslcheck-feature-grid,
    .sslcheck-product-grid,
    .sslcheck-result-grid {
      grid-template-columns: 1fr;
    }
    .sslcheck-features header,
    .sslcheck-products header {
      margin-bottom: 32px;
    }
    .sslcheck-cta {
      padding: 54px 0;
    }
    .sslcheck-cta .container-main {
      display: block;
      text-align: center;
    }
    .sslcheck-cta a {
      margin-top: 22px;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .ssl-checker-page {
      scroll-behavior: auto;
    }
    .ssl-checker-page *,
    .ssl-checker-page *::before,
    .ssl-checker-page *::after {
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
    }
  }
}

/* ============================================================
   SSL Products page — scoped under .ssl-page
   ============================================================ */
.ssl-page {
  --sp-blue: #165dff;
  --sp-ink: #102a4d;
  --sp-muted: #5c708c;
  --sp-line: #dbe5f1;
  --sp-pale: #f4f8fd;
  --sp-red: #da251c;
  overflow-x: hidden;
  color: var(--sp-ink);
  background: #fff;
  scroll-behavior: smooth;
}
.ssl-page .site-header.is-solid {
  height: 72px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e3eaf3;
  box-shadow: 0 5px 18px rgba(13, 46, 85, 0.06);
}
.ssl-page main section {
  scroll-margin-top: 72px;
}

/* Hero */
.ssl-hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: linear-gradient(135deg, #edf4ff 0%, #f8fbff 50%, #eaf2ff 100%);
}
.ssl-hero::before {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(22, 93, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.ssl-hero::after {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(22, 93, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.ssl-hero .container-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
  padding-top: 108px;
  padding-bottom: 68px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.ssl-hero-eyebrow {
  margin: 0 0 14px;
  color: var(--sp-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.ssl-hero h1 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 720;
  line-height: 1.16;
}
.ssl-hero-summary {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--sp-muted);
  font-size: 17px;
  line-height: 1.85;
}
.ssl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.ssl-hero-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.ssl-hero-actions a.primary {
  color: #fff;
  background: var(--sp-blue);
  box-shadow: 0 12px 28px rgba(22, 93, 255, 0.2);
}
.ssl-hero-actions a.primary:hover {
  background: #0d4ddc;
  transform: translateY(-2px);
}
.ssl-hero-actions a.secondary {
  color: var(--sp-blue);
  background: transparent;
  border: 1px solid var(--sp-blue);
}
.ssl-hero-actions a.secondary:hover {
  color: #fff;
  background: var(--sp-blue);
}
.ssl-hero-actions a i {
  width: 18px;
  height: 18px;
}
.ssl-hero-actions a i svg {
  width: 100%;
  height: 100%;
}

/* Section headers */
.ssl-page main section header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.ssl-page main section header > p {
  margin: 0 0 12px;
  color: var(--sp-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.ssl-page main section header h2 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(29px, 3vw, 36px);
  font-weight: 700;
}
.ssl-page main section header > span {
  display: block;
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--sp-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* Product cards */
.ssl-products {
  padding: 100px 0 110px;
  background: #fff;
}
.ssl-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.ssl-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 28px 30px;
  background: #fff;
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.ssl-product-card:hover {
  box-shadow: 0 22px 48px rgba(22, 93, 255, 0.1);
  transform: translateY(-6px);
}
.ssl-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 12px;
  color: #fff;
  background: linear-gradient(135deg, #ff6b35, #da251c);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.ssl-card-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}
.ssl-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ssl-product-card h3 {
  margin: 0 0 8px;
  color: var(--sp-ink);
  font-size: 22px;
  font-weight: 700;
}
.ssl-card-desc {
  margin: 0 0 16px;
  color: var(--sp-muted);
  font-size: 13px;
  line-height: 1.6;
}
.ssl-card-features {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ssl-card-features li {
  position: relative;
  padding-left: 20px;
  color: var(--sp-muted);
  font-size: 13px;
  line-height: 1.6;
}
.ssl-card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23165dff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    no-repeat center;
}
.ssl-card-price {
  margin: auto 0 18px;
  padding-top: 16px;
  border-top: 1px solid var(--sp-line);
}
.ssl-card-price b {
  color: var(--sp-red);
  font-size: 28px;
  font-weight: 700;
}
.ssl-card-price span {
  color: var(--sp-muted);
  font-size: 13px;
}
.ssl-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  color: #fff;
  background: var(--sp-blue);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.24s ease;
}
.ssl-card-btn:hover {
  background: #0d4ddc;
}

/* Brands */
.ssl-brands {
  padding: 0 0 110px;
  background: #fff;
}
.ssl-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
}
.ssl-brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 16px;
  background: var(--sp-pale);
  border: 1px solid var(--sp-line);
  border-radius: 10px;
  transition: border-color 0.24s ease;
}
.ssl-brand-item:hover {
  border-color: #a8c7f4;
}
.ssl-brand-item img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.ssl-brand-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--sp-blue);
}
.ssl-brand-fallback i {
  width: 40px;
  height: 40px;
}
.ssl-brand-fallback i svg {
  width: 100%;
  height: 100%;
}
.ssl-brand-item > span:last-child {
  color: var(--sp-muted);
  font-size: 13px;
  font-weight: 600;
}

/* Why us */
.ssl-why {
  padding: 100px 0 110px;
  background: var(--sp-pale);
}
.ssl-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.ssl-why-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px 36px;
  background: #fff;
  border: 1px solid var(--sp-line);
  border-radius: 10px;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease;
}
.ssl-why-grid article:hover {
  box-shadow: 0 16px 38px rgba(22, 93, 255, 0.08);
  transform: translateY(-3px);
}
.ssl-why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  color: var(--sp-blue);
}
.ssl-why-icon i {
  width: 64px;
  height: 64px;
}
.ssl-why-icon i svg {
  width: 100%;
  height: 100%;
}
.ssl-page .ssl-why-grid article {
  justify-content: flex-start;
}
.ssl-page .ssl-why-icon,
.ssl-page .ssl-why-icon i {
  width: 82px;
  height: 82px;
}
.ssl-page .ssl-why-icon {
  margin-bottom: 24px;
}
.ssl-page .ssl-why-icon i svg {
  width: 82px;
  height: 82px;
  stroke-width: 1.55;
}
.ssl-page .ssl-why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: var(--sp-blue);
}
.ssl-page .ssl-why-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}
.ssl-page .ssl-why-icon i svg {
  width: 36px !important;
  height: 36px !important;
  stroke-width: 2;
}
.ssl-why-grid article h3 {
  margin: 0 0 10px;
  color: var(--sp-ink);
  font-size: 18px;
  font-weight: 700;
}
.ssl-why-grid article p {
  margin: 0;
  color: var(--sp-muted);
  font-size: 13px;
  line-height: 1.75;
}

/* CTA */
.ssl-cta {
  padding: 72px 0;
  color: #fff;
  background: var(--sp-blue);
}
.ssl-cta .container-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
.ssl-cta h2 {
  grid-column: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.6vw, 38px);
}
.ssl-cta p {
  grid-column: 1;
  margin: 8px 0 0;
  color: #c9e2ff;
  font-size: 15px;
  line-height: 1.7;
}
.ssl-cta a {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  padding: 0 28px;
  color: var(--sp-blue);
  background: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.ssl-cta a:hover {
  color: #0d4ddc;
  background: #f4f8ff;
  transform: translateY(-2px);
}

/* Focus */
.ssl-page :is(a, button, [role="button"]):focus-visible {
  outline: 3px solid #165dff;
  outline-offset: 3px;
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .ssl-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ssl-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .ssl-hero,
  .ssl-hero .container-main {
    min-height: 400px;
  }
  .ssl-hero .container-main {
    padding-top: 100px;
    padding-bottom: 54px;
  }
  .ssl-hero h1 {
    font-size: 34px;
  }
  .ssl-hero-summary {
    font-size: 15px;
  }
  .ssl-products {
    padding: 64px 0 72px;
  }
  .ssl-brands {
    padding: 0 0 72px;
  }
  .ssl-why {
    padding: 64px 0 72px;
  }
  .ssl-page main section header {
    margin-bottom: 32px;
  }
  .ssl-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ssl-product-card {
    padding: 28px 22px 24px;
  }
  .ssl-product-card h3 {
    font-size: 20px;
  }
  .ssl-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .ssl-why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .support-page .support-capability-grid a {
    min-height: 190px;
  }
  .support-page .support-capability-grid a > i,
  .support-page .support-capability-grid a > i svg {
    width: 46px !important;
    height: 46px !important;
  }
  .ssl-page .ssl-why-icon,
  .ssl-page .ssl-why-icon i {
    width: 56px;
    height: 56px;
  }
  .ssl-page .ssl-why-icon i svg {
    width: 36px !important;
    height: 36px !important;
  }
  .ssl-cta {
    padding: 54px 0;
  }
  .ssl-cta .container-main {
    display: block;
    text-align: center;
  }
  .ssl-cta a {
    margin-top: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ssl-page {
    scroll-behavior: auto;
  }
  .ssl-page *,
  .ssl-page *::before,
  .ssl-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* SSL tabs */
.ssl-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
}
.ssl-tabs button {
  flex: 0 0 auto;
  padding: 10px 20px;
  color: var(--sp-muted);
  background: #fff;
  border: 1px solid var(--sp-line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
}
.ssl-tabs button:hover {
  color: var(--sp-blue);
  border-color: #a8c7f4;
}
.ssl-tabs button.active {
  color: #fff;
  background: var(--sp-blue);
  border-color: var(--sp-blue);
}

/* Brand card extras */
.ssl-brand-item small {
  display: block;
  color: #9aadc6;
  font-size: 11px;
}
.ssl-brand-item.hidden {
  display: none;
}

/* Product card hidden state for filtering */
.ssl-product-card.hidden {
  display: none;
}

/* Brand page */
.ssl-brands-page {
  padding: 88px 0 100px;
  background: #fff;
}
.ssl-brand-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}
.ssl-brand-page-card {
  padding: 38px 30px 32px;
  background: var(--sp-pale);
  border: 1px solid var(--sp-line);
  border-radius: 14px;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease;
}
.ssl-brand-page-card:hover {
  box-shadow: 0 18px 40px rgba(22, 93, 255, 0.1);
  transform: translateY(-4px);
}
.ssl-brand-page-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  color: var(--sp-blue);
}
.ssl-brand-page-icon i {
  width: 56px;
  height: 56px;
}
.ssl-brand-page-icon i svg {
  width: 100%;
  height: 100%;
}
.ssl-brand-page-card h3 {
  margin: 0 0 12px;
  color: var(--sp-ink);
  font-size: 22px;
  font-weight: 700;
}
.ssl-brand-page-card p {
  margin: 0 0 16px;
  color: var(--sp-muted);
  font-size: 14px;
  line-height: 1.8;
}
.ssl-brand-page-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ssl-brand-page-types span {
  padding: 4px 10px;
  color: var(--sp-blue);
  background: rgba(22, 93, 255, 0.08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

/* Type page */
.ssl-type-list {
  padding: 88px 0 100px;
  background: #fff;
}
.ssl-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.ssl-type-card {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 34px 30px 30px;
  background: #fff;
  border: 1px solid var(--sp-line);
  border-radius: 12px;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease;
}
.ssl-type-card:hover {
  box-shadow: 0 16px 38px rgba(22, 93, 255, 0.08);
  transform: translateY(-3px);
}
.ssl-type-num {
  position: absolute;
  top: 16px;
  right: 18px;
  color: #c8d8f0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.ssl-type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  color: var(--sp-blue);
}
.ssl-type-icon i {
  width: 52px;
  height: 52px;
}
.ssl-type-icon i svg {
  width: 100%;
  height: 100%;
}
.ssl-type-card h3 {
  margin: 0 0 8px;
  color: var(--sp-ink);
  font-size: 20px;
  font-weight: 700;
}
.ssl-type-card p {
  margin: 0 0 12px;
  color: var(--sp-muted);
  font-size: 14px;
  line-height: 1.75;
}
.ssl-type-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ssl-type-card ul li {
  padding: 4px 12px;
  color: var(--sp-blue);
  background: var(--sp-pale);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .ssl-brand-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .ssl-brands-page,
  .ssl-type-list {
    padding: 54px 0 64px;
  }
  .ssl-brand-page-grid {
    grid-template-columns: 1fr;
  }
  .ssl-type-grid {
    grid-template-columns: 1fr;
  }
  .ssl-type-card {
    padding: 26px 22px 24px;
  }
  .ssl-brand-page-card {
    padding: 28px 22px 24px;
  }
}

/* Nuxt-style product cards (brand.html / type.html) */
.ssl-nuxt-products {
  padding: 88px 0 100px;
  background: #fff;
}
.ssl-nuxt-products header {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.ssl-nuxt-products header > p {
  margin: 0 0 12px;
  color: var(--sp-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.ssl-nuxt-products header h2 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(29px, 3vw, 36px);
  font-weight: 700;
}
.ssl-nuxt-products header > span {
  display: block;
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--sp-muted);
  font-size: 15px;
  line-height: 1.8;
}
.ssl-nuxt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.ssl-nuxt-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 16px rgba(51, 65, 101, 0.16);
  overflow: hidden;
  padding: 32px 28px 0;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.ssl-nuxt-card:hover {
  box-shadow: 0 8px 32px rgba(51, 65, 101, 0.22);
}
.ssl-nuxt-tag {
  position: absolute;
  right: 0;
  top: 0;
  width: 78px;
  height: 22px;
  overflow: hidden;
}
.ssl-nuxt-tag-bg {
  position: absolute;
  width: 78px;
  height: 29px;
  background: linear-gradient(270deg, #f71510, #ff7c53);
  border-radius: 7px;
  transform: matrix(1, 0, 0.3182, 1, 3, -7);
}
.ssl-nuxt-tag span {
  position: absolute;
  left: 16px;
  width: 49px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.ssl-nuxt-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 382px;
  margin-bottom: 18px;
}
.ssl-nuxt-body h3 {
  margin: 0 0 8px;
  color: #181818;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ssl-nuxt-desc {
  margin: 0 0 18px;
  color: #4e5969;
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ssl-nuxt-standard {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 12px;
  margin-bottom: 16px;
  color: #181818;
  background: #f2f3f8;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.ssl-nuxt-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  min-height: 160px;
}
.ssl-nuxt-features li {
  position: relative;
  padding-left: 22px;
  color: #4e5969;
  font-size: 14px;
  line-height: 1.6;
}
.ssl-nuxt-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='none' stroke='%231664ff' stroke-width='1.5'/%3E%3Cpath d='M5 8l2 2 4-4' fill='none' stroke='%231664ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
}
.ssl-nuxt-price {
  margin: auto 0 12px;
  padding-top: 16px;
}
.ssl-nuxt-price b {
  color: #f50505;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.ssl-nuxt-price s {
  display: block;
  margin-top: 6px;
  color: #86909c;
  font-size: 14px;
}
.ssl-nuxt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin: 0 -28px;
  color: #fff;
  background: #1664ff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.22s ease;
}
.ssl-nuxt-btn:hover {
  background: #4281ff;
}
.ssl-nuxt-btn:active {
  background: #05f;
}

@media (max-width: 1024px) {
  .ssl-nuxt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .ssl-nuxt-products {
    padding: 54px 0 64px;
  }
  .ssl-nuxt-grid {
    grid-template-columns: 1fr;
  }
  .ssl-nuxt-card {
    padding: 28px 22px 0;
  }
  .ssl-nuxt-body {
    min-height: 0;
  }
  .ssl-nuxt-btn {
    margin: 0 -22px;
  }
}

/* DigiCert-inspired brand landing page: dark trust hero, selector rail, and a clear product matrix. */
.ssl-brand-page {
  --brand-blue: #1664ff;
  --brand-deep: #071a38;
  --brand-muted: #a7bddc;
}
.ssl-brand-page .ssl-brand-hero {
  min-height: 590px;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(4, 19, 45, 0.96) 0%,
      rgba(7, 29, 63, 0.88) 52%,
      rgba(10, 66, 128, 0.62) 100%
    ),
    url("../images/insight-security.jpg") center / cover no-repeat;
}
.ssl-brand-page .ssl-brand-hero::before {
  top: -90px;
  right: 8%;
  width: 520px;
  height: 520px;
  border-color: rgba(112, 180, 255, 0.22);
}
.ssl-brand-page .ssl-brand-hero::after {
  bottom: -120px;
  left: 42%;
  width: 320px;
  height: 320px;
  border-color: rgba(112, 180, 255, 0.16);
}
.ssl-brand-page .ssl-brand-hero .container-main {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: 70px;
  max-width: 1440px;
  min-height: 590px;
  padding-top: 132px;
  padding-bottom: 20px;
  text-align: left;
}
.ssl-brand-hero-copy {
  position: relative;
  z-index: 2;
}
.ssl-brand-page .ssl-hero-eyebrow {
  color: #78b7ff;
}
.ssl-brand-page .ssl-hero h1 {
  color: #fff;
  font-size: clamp(44px, 5.2vw, 72px);
  letter-spacing: -0.03em;
}
.ssl-brand-page .ssl-hero-summary {
  max-width: 610px;
  margin: 22px 0 0;
  color: #d4e3f8;
  font-size: 18px;
  line-height: 1.8;
}
.ssl-brand-page .ssl-hero-actions {
  justify-content: flex-start;
  margin-top: 32px;
}
.ssl-brand-page .ssl-hero-actions a.secondary {
  color: #e1edff;
  border-color: rgba(174, 210, 255, 0.62);
}
.ssl-brand-page .ssl-hero-actions a.secondary:hover {
  color: #08214a;
  background: #fff;
  border-color: #fff;
}
.ssl-brand-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgba(160, 201, 255, 0.24);
}
.ssl-brand-proof span {
  min-width: 170px;
  padding: 18px 24px 0 0;
}
.ssl-brand-proof b {
  display: block;
  color: #fff;
  font-size: 15px;
}
.ssl-brand-proof small {
  display: block;
  margin-top: 6px;
  color: #9fb8da;
  font-size: 12px;
  line-height: 1.6;
}
.ssl-brand-hero-visual {
  position: relative;
  min-height: 360px;
}
.ssl-brand-orbit {
  position: absolute;
  border: 1px solid rgba(109, 182, 255, 0.3);
  border-radius: 50%;
  transform: rotate(-24deg);
}
.orbit-one {
  top: 10%;
  right: 2%;
  width: 370px;
  height: 190px;
}
.orbit-two {
  top: 24%;
  right: 10%;
  width: 330px;
  height: 230px;
}
.ssl-brand-certificate {
  position: absolute;
  top: 78px;
  right: 35px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(410px, 90%);
  padding: 24px 26px;
  color: #08214a;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(229, 243, 255, 0.9)
  );
  border: 1px solid rgba(179, 220, 255, 0.7);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  transform: rotate(-5deg);
}
.ssl-brand-certificate-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: linear-gradient(145deg, #2b8cff, #164edf);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 800;
}
.ssl-brand-certificate small,
.ssl-brand-certificate strong,
.ssl-brand-certificate em {
  display: block;
}
.ssl-brand-certificate small {
  color: #4e75ac;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.ssl-brand-certificate strong {
  margin-top: 4px;
  font-size: 22px;
}
.ssl-brand-certificate em {
  margin-top: 4px;
  color: #607aa1;
  font-size: 11px;
  font-style: normal;
}
.ssl-brand-certificate > i {
  width: 28px;
  height: 28px;
  margin-left: auto;
  color: #1664ff;
}
.ssl-brand-domain {
  position: absolute;
  right: 0;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  color: #cfe4ff;
  background: rgba(7, 25, 58, 0.76);
  border: 1px solid rgba(133, 188, 255, 0.3);
  border-radius: 4px;
  font:
    12px/1.2 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
}
.ssl-brand-domain i {
  width: 16px;
  height: 16px;
  color: #70b5ff;
}
.ssl-brand-selector {
  position: relative;
  z-index: 3;
  padding: 0 0 70px;
  background: #f3f7fd;
}
.ssl-brand-selector .container-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 44px;
  align-items: center;
  padding: 28px 36px;
  background: #fff;
  border: 1px solid #dbe8f8;
  box-shadow: 0 18px 45px rgba(24, 72, 125, 0.11);
  transform: translateY(-32px);
}
.ssl-brand-selector-intro p {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.ssl-brand-selector-intro h2 {
  margin: 0;
  color: #0a2b60;
  font-size: 24px;
  font-weight: 700;
}
.ssl-brand-selector-intro span {
  display: block;
  margin-top: 8px;
  color: #6680a2;
  font-size: 13px;
  line-height: 1.6;
}
.ssl-brand-selector-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid #e3ebf5;
}
.ssl-brand-selector-list a {
  min-height: 66px;
  padding: 10px 18px;
  color: #294c78;
  border-right: 1px solid #e3ebf5;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}
.ssl-brand-selector-list a:hover,
.ssl-brand-selector-list a.is-active {
  color: #0d5be8;
  background: #f0f6ff;
}
.ssl-brand-selector-list b,
.ssl-brand-selector-list small {
  display: block;
}
.ssl-brand-selector-list b {
  font-size: 14px;
}
.ssl-brand-selector-list small {
  margin-top: 4px;
  color: #8498b3;
  font-size: 11px;
}
.ssl-brand-page .ssl-nuxt-products {
  padding-top: 42px;
  background: #f3f7fd;
}
.ssl-brand-page .ssl-nuxt-products header h2 {
  color: #0a2b60;
}
.ssl-brand-page .ssl-nuxt-card {
  border: 1px solid #dce7f4;
  box-shadow: 0 8px 28px rgba(34, 71, 111, 0.08);
}
.ssl-brand-page .ssl-nuxt-card:hover {
  border-color: #a8c9f8;
  box-shadow: 0 14px 32px rgba(34, 91, 170, 0.14);
}
.ssl-brand-page .ssl-nuxt-btn {
  background: var(--brand-blue);
}
.ssl-brand-page .ssl-cta {
  background: linear-gradient(110deg, #071a38, #0e4389);
}
@media (max-width: 1024px) {
  .ssl-brand-page .ssl-brand-hero .container-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ssl-brand-hero-visual {
    display: none;
  }
  .ssl-brand-selector .container-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ssl-brand-selector-list {
    border-left: 0;
  }
}
@media (max-width: 768px) {
  .ssl-brand-page .ssl-brand-hero,
  .ssl-brand-page .ssl-brand-hero .container-main {
    min-height: 0;
  }
  .ssl-brand-page .ssl-brand-hero .container-main {
    padding-top: 112px;
    padding-bottom: 58px;
  }
  .ssl-brand-page .ssl-hero h1 {
    font-size: 40px;
  }
  .ssl-brand-page .ssl-hero-summary {
    font-size: 15px;
  }
  .ssl-brand-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ssl-brand-proof span {
    min-width: 0;
    padding-right: 12px;
  }
  .ssl-brand-selector .container-main {
    padding: 24px 20px;
    transform: translateY(-22px);
  }
  .ssl-brand-selector-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ssl-brand-selector-list a {
    border-bottom: 1px solid #e3ebf5;
  }
}

.ssl-brand-seo {
  padding: 86px 0 0;
  background: #f3f7fd;
}
.ssl-brand-seo-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.ssl-brand-seo-head p {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.ssl-brand-seo-head h2 {
  margin: 0;
  color: #0a2b60;
  font-size: 32px;
  font-weight: 700;
}
.ssl-brand-seo-head span {
  display: block;
  margin-top: 12px;
  color: #6680a2;
  font-size: 14px;
  line-height: 1.8;
}
.ssl-brand-seo-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.ssl-brand-seo-columns > div {
  padding: 26px 30px 28px;
  background: #fff;
  border: 1px solid #dce7f4;
}
.ssl-brand-seo-columns h3 {
  margin: 0 0 18px;
  color: #0a2b60;
  font-size: 18px;
}
.ssl-brand-seo-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}
.ssl-brand-seo-links a {
  color: #4f6d96;
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ssl-brand-seo-links a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 8px 2px 0;
  background: var(--brand-blue);
  border-radius: 50%;
}
.ssl-brand-seo-links a:hover {
  color: var(--brand-blue);
}
.ssl-product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 26px auto 0;
}
.ssl-product-filters button {
  min-height: 34px;
  padding: 0 14px;
  color: #597394;
  background: #fff;
  border: 1px solid #d8e4f2;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}
.ssl-product-filters button:hover,
.ssl-product-filters button.is-active {
  color: #fff;
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}
.ssl-nuxt-card.is-filtered-out {
  display: none;
}
.ssl-product-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 32px 24px;
  color: #597394;
  background: #fff;
  border: 1px dashed #c9d9eb;
  text-align: center;
}
.ssl-product-empty[hidden] {
  display: none;
}
.ssl-product-empty > i {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #7fa5d6;
}
.ssl-product-empty strong {
  color: #234b7c;
  font-size: 18px;
}
.ssl-product-empty span {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
}
.ssl-product-empty > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 18px;
  color: #fff;
  background: var(--brand-blue);
  font-size: 13px;
  text-decoration: none;
}
.ssl-product-empty > a i {
  width: 15px;
  height: 15px;
}
.ssl-brand-selector {
  background: #fff;
}
.ssl-brand-seo {
  background: #f3f7fd;
}
.ssl-brand-page .ssl-nuxt-products {
  background: #fff;
}
.ssl-brand-selector-list a {
  min-height: 58px;
  display: flex;
  align-items: center;
}
.ssl-brand-selector-list b {
  font-size: 14px;
  font-weight: 650;
}
.ssl-product-empty > i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  color: #216bff;
  background: #f3f7ff;
  border: 1px solid #bcd6fb;
}
.ssl-product-empty > i svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.8;
}
.ssl-product-empty .ssl-product-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 0 15px;
  color: #234b7c;
  background: transparent;
  border: 0;
  line-height: 1;
}
.ssl-product-empty .ssl-product-empty-icon svg {
  width: 80px;
  height: 80px;
  color: #234b7c;
  margin-bottom: 0;
}
.ssl-brand-page #top {
  display: flex;
  flex-direction: column;
}
.ssl-brand-page #top > .ssl-hero {
  order: 1;
}
.ssl-brand-page #top > .ssl-nuxt-products {
  order: 2;
}
.ssl-brand-page #top > .ssl-brand-seo {
  order: 3;
}
.ssl-brand-page #top > .ssl-cta {
  order: 4;
}
.ssl-brand-page .ssl-brand-seo {
  position: relative;
  overflow: hidden;
  padding: 104px 0 118px;
  color: #fff;
  background: linear-gradient(115deg, #071b3a 0%, #0c3264 56%, #124c93 100%);
}
.ssl-brand-page .ssl-brand-seo::before,
.ssl-brand-page .ssl-brand-seo::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(124, 190, 255, 0.18);
  border-radius: 50%;
}
.ssl-brand-page .ssl-brand-seo::before {
  top: -300px;
  right: -120px;
  width: 680px;
  height: 680px;
}
.ssl-brand-page .ssl-brand-seo::after {
  bottom: -360px;
  left: -180px;
  width: 760px;
  height: 760px;
}
.ssl-brand-page .ssl-brand-seo .container-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}
.ssl-brand-page .ssl-brand-seo-head {
  max-width: 390px;
  margin: 0;
  text-align: left;
}
.ssl-brand-page .ssl-brand-seo-head p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.ssl-brand-page .ssl-brand-seo-head p {
  color: #7fbaff;
}
.ssl-brand-page .ssl-brand-seo-head p::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--brand-blue);
}
.ssl-brand-page .ssl-brand-seo-head h2 {
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
}
.ssl-brand-page .ssl-brand-seo-head span {
  color: #bed4f0;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.9;
}
.ssl-brand-page .ssl-brand-seo-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
}
.ssl-brand-page .ssl-brand-seo-columns > div {
  padding: 0 0 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(181, 216, 255, 0.2);
  border-radius: 4px;
}
.ssl-brand-page .ssl-brand-seo-columns h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
  padding: 22px 24px 14px;
  color: #fff;
  border-bottom: 1px solid rgba(181, 216, 255, 0.25);
  font-size: 18px;
}
.ssl-brand-page .ssl-brand-seo-columns h3::after {
  width: 28px;
  height: 2px;
  content: "";
  background: #58a8ff;
}
.ssl-brand-page .ssl-brand-seo-links {
  padding: 0 12px 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: seo-link;
}
.ssl-brand-page .ssl-brand-seo-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  color: #d6e7fb;
  border-bottom: 1px solid rgba(181, 216, 255, 0.16);
  font-size: 14px;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    padding 0.22s ease;
}
.ssl-brand-page .ssl-brand-seo-links a::before {
  width: auto;
  height: auto;
  flex: 0 0 30px;
  margin: 0 10px 0 0;
  content: counter(seo-link, decimal-leading-zero);
  counter-increment: seo-link;
  color: #78b8ff;
  background: transparent;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
}
.ssl-brand-page .ssl-brand-seo-links a:hover {
  padding-left: 18px;
  color: #fff;
  background: rgba(67, 142, 231, 0.24);
}
.ssl-brand-page .ssl-brand-seo .container-main {
  display: block;
}
.ssl-brand-page .ssl-brand-seo-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}
.ssl-brand-page .ssl-brand-seo-head p {
  justify-content: center;
}
.ssl-brand-page .ssl-brand-seo-head p::before {
  display: none;
}
.ssl-brand-page .ssl-brand-seo-head h2 {
  font-size: clamp(32px, 4vw, 46px);
}
.ssl-brand-page .ssl-brand-seo-head span {
  max-width: 680px;
  margin: 18px auto 0;
}
.ssl-brand-page .ssl-brand-seo-columns {
  max-width: 1080px;
  margin: 0 auto;
  gap: 24px;
}
@media (max-width: 768px) {
  .ssl-brand-seo {
    padding-top: 56px;
  }
  .ssl-brand-seo-columns {
    grid-template-columns: 1fr;
  }
  .ssl-brand-seo-columns > div {
    padding: 22px 20px;
  }
  .ssl-brand-seo-links {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .ssl-product-filters {
    justify-content: flex-start;
  }
  .ssl-brand-page .ssl-brand-seo {
    padding: 68px 0 82px;
  }
  .ssl-brand-page .ssl-brand-seo .container-main {
    display: block;
  }
  .ssl-brand-page .ssl-brand-seo-head {
    max-width: none;
    margin-bottom: 36px;
  }
  .ssl-brand-page .ssl-brand-seo-head h2 {
    font-size: 32px;
  }
  .ssl-brand-page .ssl-brand-seo-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ssl-brand-page .ssl-brand-seo-columns h3::after {
    content: "";
  }
}

/* Certificate type landing page */
.ssl-type-page {
  --brand-blue: #1664ff;
}
.ssl-type-page .ssl-hero {
  min-height: 520px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 19, 45, 0.94), rgba(8, 47, 94, 0.72)),
    url("../images/insight-security.jpg") center / cover no-repeat;
}
.ssl-type-page .ssl-hero::before {
  top: -120px;
  right: 8%;
  width: 520px;
  height: 520px;
  border-color: rgba(112, 181, 255, 0.24);
}
.ssl-type-page .ssl-hero::after {
  bottom: -110px;
  left: 34%;
  width: 320px;
  height: 320px;
  border-color: rgba(112, 181, 255, 0.18);
}
.ssl-type-page .ssl-hero .container-main {
  align-items: flex-start;
  max-width: 1440px;
  min-height: 520px;
  padding-top: 156px;
  padding-bottom: 20px;
  text-align: left;
}
.ssl-type-page .ssl-hero-eyebrow {
  color: #78b7ff;
}
.ssl-type-page .ssl-hero h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.03em;
}
.ssl-type-page .ssl-hero-summary {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d4e3f8;
  font-size: 18px;
  line-height: 1.85;
}
.ssl-type-page .ssl-nuxt-products {
  padding: 94px 0 112px;
  background: #f3f7fd;
}
.ssl-type-page .ssl-nuxt-products header {
  max-width: 760px;
  margin-bottom: 48px;
}
.ssl-type-page .ssl-nuxt-products header > p {
  color: #1664ff;
}
.ssl-type-page .ssl-nuxt-products header h2 {
  color: #092b60;
  font-size: clamp(30px, 3.6vw, 44px);
}
.ssl-type-page .ssl-nuxt-products header > span {
  max-width: 660px;
  color: #6680a2;
}
.ssl-type-page .ssl-nuxt-grid {
  gap: 22px;
}
.ssl-type-page .ssl-nuxt-card {
  border: 1px solid #d9e6f4;
  border-radius: 6px;
  box-shadow: 0 8px 26px rgba(29, 67, 111, 0.08);
}
.ssl-type-page .ssl-nuxt-card:hover {
  border-color: #9cc4f7;
  box-shadow: 0 14px 34px rgba(27, 93, 171, 0.15);
}
.ssl-type-page .ssl-nuxt-tag-bg {
  background: linear-gradient(270deg, #1664ff, #55a7ff);
}
.ssl-type-page .ssl-nuxt-standard {
  color: #31557f;
  background: #f2f7fd;
  border: 1px solid #e0eaf5;
}
.ssl-type-page .ssl-nuxt-btn {
  background: #1664ff;
}
.ssl-type-page .ssl-cta {
  background: linear-gradient(110deg, #071a38, #0e4389);
}
@media (max-width: 768px) {
  .ssl-type-page .ssl-hero,
  .ssl-type-page .ssl-hero .container-main {
    min-height: 430px;
  }
  .ssl-type-page .ssl-hero .container-main {
    padding-top: 118px;
    padding-bottom: 54px;
  }
  .ssl-type-page .ssl-hero h1 {
    font-size: 40px;
  }
  .ssl-type-page .ssl-hero-summary {
    font-size: 15px;
  }
  .ssl-type-page .ssl-nuxt-products {
    padding: 62px 0 78px;
  }
}
/* News channel: reusable listing layout for CMS-backed article content. */
.news-channel-page {
  background: #f7faff;
}
.news-channel-hero {
  position: relative;
  overflow: hidden;
  min-height: 372px;
  padding: 142px 0 76px;
  color: #fff;
  background: #092954;
}
.news-channel-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.78;
  background: linear-gradient(
    106deg,
    #071d3b 0%,
    rgba(8, 44, 89, 0.9) 43%,
    rgba(5, 77, 151, 0.72) 100%
  );
}
.news-channel-hero::after {
  position: absolute;
  inset: -40% -8% auto auto;
  width: 74%;
  height: 185%;
  content: "";
  background: repeating-linear-gradient(
    138deg,
    rgba(131, 205, 255, 0.18) 0 1px,
    transparent 1px 32px
  );
  transform: rotate(-12deg);
  mask-image: linear-gradient(90deg, transparent, #000 55%);
}
.news-channel-hero .container-main {
  position: relative;
  z-index: 1;
}
.news-channel-kicker {
  margin: 0 0 15px;
  color: #74bbff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.news-channel-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.12;
}
.news-channel-hero h1::after {
  display: block;
  width: 44px;
  height: 3px;
  margin: 23px 0 19px;
  content: "";
  background: #2d8cff;
}
.news-channel-hero > .container-main > p:not(.news-channel-kicker) {
  max-width: 690px;
  margin: 0;
  color: rgba(237, 247, 255, 0.82);
  font-size: 16px;
  line-height: 1.9;
}
.news-channel-hero-meta {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}
.news-channel-hero-meta span {
  padding: 6px 12px;
  color: #bbdcff;
  border: 1px solid rgba(147, 205, 255, 0.28);
  background: rgba(10, 57, 108, 0.35);
  font-size: 12px;
}
.news-channel-content {
  background: linear-gradient(180deg, #f7faff 0%, #fff 42%);
}
.news-channel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
  padding-bottom: 17px;
  border-bottom: 1px solid #dbe7f5;
}
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news-filter button {
  min-height: 38px;
  padding: 0 17px;
  color: #355879;
  border: 1px solid transparent;
  background: transparent;
  font-size: 14px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}
.news-filter button:hover,
.news-filter button.active {
  color: #fff;
  border-color: #1760e9;
  background: #1760e9;
}
.news-channel-count {
  margin: 0;
  color: #7890a9;
  font-size: 13px;
  white-space: nowrap;
}
.news-feed {
  min-height: 842px;
}
.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  min-height: 344px;
  margin-bottom: 24px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #dce8f6;
  box-shadow: 0 16px 35px rgba(29, 74, 124, 0.08);
}
.news-featured-media,
.news-list-media {
  position: relative;
  overflow: hidden;
  background: #d8e5f5;
}
.news-featured-media img,
.news-list-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.news-featured:hover img,
.news-list-card:hover img {
  transform: scale(1.045);
}
.news-featured-media span,
.news-list-media span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 10px;
  color: #fff;
  background: #1462e9;
  font-size: 12px;
  line-height: 1;
  box-shadow: 0 5px 16px rgba(18, 85, 196, 0.2);
}
.news-featured-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 4vw, 58px);
}
.news-featured-copy > p {
  display: flex;
  gap: 13px;
  margin: 0 0 22px;
  color: #4f82ba;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.news-featured-copy time {
  color: #8499b0;
  font-weight: 400;
  letter-spacing: 0;
}
.news-featured h2 {
  margin: 0 0 17px;
  color: #092e62;
  font-size: clamp(25px, 2.25vw, 34px);
  font-weight: 700;
  line-height: 1.3;
}
.news-featured-copy > span {
  color: #55708e;
  font-size: 15px;
  line-height: 1.85;
}
.news-featured-copy b,
.news-list-copy b {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 25px;
  color: #1462e9;
  font-size: 14px;
  font-weight: 700;
}
.news-featured-copy i,
.news-list-copy i {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}
.news-featured:hover b i,
.news-list-card:hover b i {
  transform: translateX(4px);
}
.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.news-list-card {
  display: flex;
  flex-direction: column;
  min-height: 424px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #dce8f6;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.news-list-card:hover {
  border-color: #b9d4f5;
  box-shadow: 0 15px 28px rgba(30, 77, 130, 0.1);
}
.news-list-media {
  height: 202px;
  border-bottom: 1px solid #e2eaf4;
}
.news-list-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 23px 24px;
}
.news-list-copy time {
  color: #7a96b4;
  font-size: 12px;
}
.news-list-copy h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 11px 0 10px;
  color: #103d75;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-list-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #647e9c;
  font-size: 14px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-list-copy b {
  margin-top: auto;
  padding-top: 18px;
}
.news-pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 48px 0 56px;
}
.news-pager button {
  width: 42px;
  height: 42px;
  color: #4d6c8d;
  border: 1px solid #cfdfef;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}
.news-pager button:hover,
.news-pager button.active {
  color: #fff;
  border-color: #1760e9;
  background: #1760e9;
}
.news-topic-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding: 24px 0;
  border-top: 1px solid #dce8f6;
  color: #6c85a2;
  font-size: 14px;
}
.news-topic-strip > span {
  color: #0d407e;
  font-weight: 700;
}
.news-topic-strip a {
  color: #5d7b9e;
  text-decoration: none;
  transition: color 0.25s ease;
}
.news-topic-strip a:hover {
  color: #1462e9;
}
@media (max-width: 1100px) {
  .news-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-featured {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .news-channel-hero {
    min-height: 0;
    padding: 112px 0 50px;
  }
  .news-channel-hero h1 {
    font-size: 38px;
  }
  .news-channel-toolbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }
  .news-filter {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }
  .news-filter button {
    flex: 0 0 auto;
  }
  .news-featured {
    grid-template-columns: 1fr;
  }
  .news-featured-media {
    height: 230px;
  }
  .news-featured-copy {
    padding: 27px 23px;
  }
  .news-list-grid {
    grid-template-columns: 1fr;
  }
  .news-list-card {
    min-height: 0;
  }
  .news-feed {
    min-height: 0;
  }
  .news-topic-strip {
    gap: 11px 18px;
  }
}
/* News detail: CMS-rich-text article template. */
.news-detail-page {
  background: #f7faff;
}
.news-detail-hero {
  position: relative;
  min-height: 526px;
  overflow: hidden;
  color: #fff;
  background: #082a54;
}
.news-detail-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(5, 24, 51, 0.93) 0%,
      rgba(5, 37, 77, 0.79) 46%,
      rgba(4, 42, 86, 0.48) 100%
    ),
    var(--news-cover) center / cover no-repeat;
}
.news-detail-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(7, 25, 52, 0.36),
    transparent 52%,
    rgba(6, 32, 67, 0.56)
  );
}
.news-detail-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 142px;
  padding-bottom: 74px;
}
.news-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 59px;
  color: rgba(236, 247, 255, 0.78);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.25s ease;
}
.news-detail-back:hover {
  color: #fff;
}
.news-detail-back i {
  width: 16px;
  height: 16px;
}
.news-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 18px;
  color: #b9d8f7;
  font-size: 13px;
}
.news-detail-meta span {
  padding: 6px 10px;
  color: #fff;
  background: #1462e9;
  font-size: 12px;
}
.news-detail-meta em {
  color: #a8c5e4;
  font-style: normal;
}
.news-detail-hero h1 {
  max-width: 910px;
  margin: 0;
  color: #fff;
  font-size: clamp(37px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.18;
}
.news-detail-hero h1::after {
  display: block;
  width: 46px;
  height: 3px;
  margin: 28px 0 22px;
  content: "";
  background: #55b0ff;
}
.news-detail-hero p {
  max-width: 750px;
  margin: 0;
  color: rgba(235, 246, 255, 0.84);
  font-size: 17px;
  line-height: 1.9;
}
.news-detail-main {
  background: linear-gradient(180deg, #f7faff 0%, #fff 540px);
}
.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 840px) minmax(248px, 1fr);
  align-items: start;
  gap: clamp(48px, 7vw, 112px);
}
.news-article-content {
  min-width: 0;
  padding: clamp(30px, 4vw, 60px);
  background: #fff;
  border: 1px solid #dce8f6;
  box-shadow: 0 14px 34px rgba(38, 78, 124, 0.06);
}
.news-article-content > :first-child {
  margin-top: 0;
}
.news-article-content p {
  margin: 0 0 22px;
  color: #365576;
  font-size: 16px;
  line-height: 2;
}
.news-article-content .news-article-lead {
  margin-bottom: 30px;
  color: #1c4775;
  font-size: 20px;
  line-height: 1.85;
}
.news-article-content h2 {
  margin: 54px 0 19px;
  padding-top: 1px;
  color: #082f62;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}
.news-article-content h2::before {
  display: inline-block;
  width: 5px;
  height: 25px;
  margin-right: 13px;
  content: "";
  vertical-align: -3px;
  background: #1966ed;
}
.news-article-content ul,
.news-article-content ol {
  margin: 0 0 25px;
  padding-left: 22px;
  color: #365576;
}
.news-article-content li {
  padding-left: 5px;
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.85;
}
.news-article-content li::marker {
  color: #1760e9;
}
.news-article-content blockquote {
  margin: 32px 0;
  padding: 22px 25px;
  color: #19528f;
  border-left: 3px solid #1c73ef;
  background: #f2f8ff;
  font-size: 18px;
  line-height: 1.8;
}
.news-article-content figure {
  margin: 36px 0;
}
.news-article-content figure img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.news-article-content figcaption {
  padding-top: 10px;
  color: #7b91a9;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
.news-article-content table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  font-size: 14px;
}
.news-article-content th {
  color: #fff;
  background: #144d96;
  font-weight: 600;
}
.news-article-content th,
.news-article-content td {
  padding: 15px 17px;
  color: #466481;
  border: 1px solid #dce8f6;
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}
.news-article-content tbody tr:nth-child(even) {
  background: #f8fbff;
}
.news-article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 48px;
  padding-top: 25px;
  border-top: 1px solid #e2ebf5;
}
.news-article-tags > span {
  margin-right: 4px;
  color: #274a6e;
  font-size: 14px;
  font-weight: 700;
}
.news-article-tags a {
  padding: 6px 10px;
  color: #477198;
  background: #f3f8fe;
  font-size: 13px;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease;
}
.news-article-tags a:hover {
  color: #fff;
  background: #1760e9;
}
.news-article-adjacent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 42px;
  border: 1px solid #dce8f6;
  background: #dce8f6;
}
.news-article-adjacent a {
  position: relative;
  display: block;
  min-height: 128px;
  padding: 23px 47px 22px 24px;
  color: #173e68;
  background: #fff;
  text-decoration: none;
  transition: background-color 0.25s ease;
}
.news-article-adjacent a:hover {
  background: #f4f9ff;
}
.news-article-adjacent small {
  display: block;
  margin-bottom: 10px;
  color: #7692b0;
  font-size: 12px;
}
.news-article-adjacent b {
  display: -webkit-box;
  overflow: hidden;
  color: #123f78;
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-article-adjacent i {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 18px;
  height: 18px;
  color: #1760e9;
  transform: translateY(-50%);
}
.news-article-adjacent a:not(.next) i {
  right: auto;
  left: 22px;
}
.news-article-adjacent a:not(.next) {
  padding-right: 24px;
  padding-left: 47px;
}
.news-detail-aside {
  position: sticky;
  top: 92px;
}
.news-detail-toc {
  margin-bottom: 30px;
  padding: 22px 0;
  border-top: 1px solid #c9ddf2;
  border-bottom: 1px solid #c9ddf2;
}
.news-detail-toc p,
.news-detail-related > p {
  margin: 0 0 13px;
  color: #0c3b72;
  font-size: 14px;
  font-weight: 700;
}
.news-detail-toc a {
  display: block;
  padding: 9px 0 9px 16px;
  color: #6983a1;
  border-left: 2px solid transparent;
  font-size: 14px;
  text-decoration: none;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}
.news-detail-toc a:hover,
.news-detail-toc a.active {
  color: #1760e9;
  border-left-color: #1760e9;
}
.news-detail-related {
  padding: 23px;
  background: #eef6ff;
}
.news-detail-related > a {
  position: relative;
  display: block;
  padding: 14px 24px 14px 0;
  color: #173e68;
  border-top: 1px solid #d5e5f5;
  text-decoration: none;
}
.news-detail-related > a span {
  display: block;
  margin-bottom: 6px;
  color: #2571e8;
  font-size: 11px;
}
.news-detail-related > a b {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-detail-related > a i {
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 15px;
  color: #1760e9;
  transform: translateY(-50%);
}
@media (max-width: 980px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .news-detail-aside {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
  }
  .news-detail-toc {
    margin: 0;
  }
}
@media (max-width: 720px) {
  .news-detail-hero {
    min-height: 0;
  }
  .news-detail-hero-inner {
    padding-top: 103px;
    padding-bottom: 52px;
  }
  .news-detail-back {
    margin-bottom: 44px;
  }
  .news-detail-hero h1 {
    font-size: 37px;
  }
  .news-detail-hero p {
    font-size: 15px;
  }
  .news-article-content {
    padding: 30px 20px;
  }
  .news-article-content .news-article-lead {
    font-size: 18px;
  }
  .news-article-content h2 {
    margin-top: 41px;
    font-size: 24px;
  }
  .news-article-content p,
  .news-article-content li {
    font-size: 15px;
  }
  .news-article-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .news-article-adjacent {
    grid-template-columns: 1fr;
  }
  .news-detail-aside {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .news-detail-page {
    overflow-x: hidden;
  }
  .news-detail-page .container-main {
    width: calc(100% - 32px);
    min-width: 0;
    max-width: none;
  }
  .news-detail-page .news-detail-layout {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .news-detail-page .news-article-content {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
  }
  .news-detail-page .news-article-content p,
  .news-detail-page .news-article-content li,
  .news-detail-page .news-article-content blockquote {
    overflow-wrap: anywhere;
  }
}

/* News detail: article reading layout, adapted from the original news channel. */
.news-reference-main {
  background: #f6f8fb;
}
.news-reference-heading {
  padding: 96px 0 46px;
  border-bottom: 1px solid #e6edf5;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}
.news-reference-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8191a5;
  font-size: 13px;
}
.news-reference-crumb a {
  transition: color 0.2s ease;
}
.news-reference-crumb a:hover {
  color: #1760e9;
}
.news-reference-crumb i {
  width: 14px;
  height: 14px;
  color: #a8b6c5;
}
.news-reference-channel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 34px 0 0;
}
.news-reference-channel a {
  min-height: 32px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #e1e8f1;
  color: #65788d;
  background: #fff;
  font-size: 13px;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}
.news-reference-channel a:hover,
.news-reference-channel a.active {
  border-color: #1760e9;
  color: #fff;
  background: #1760e9;
}
.news-reference-heading-inner {
  max-width: 940px;
  margin: 30px auto 0;
  text-align: center;
}
.news-reference-category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: #1760e9;
  border: 1px solid #cce0ff;
  background: #edf5ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.news-reference-heading h1 {
  max-width: 900px;
  margin: 20px auto 16px;
  color: #102f59;
  font-size: clamp(32px, 3.3vw, 48px);
  font-weight: 700;
  line-height: 1.3;
}
.news-reference-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #5b718a;
  font-size: 16px;
  line-height: 1.9;
}
.news-reference-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-top: 22px;
  color: #8899ac;
  font-size: 13px;
}
.news-reference-meta span + span,
.news-reference-meta time + span {
  position: relative;
}
.news-reference-meta span + span::before,
.news-reference-meta time + span::before {
  position: absolute;
  left: -10px;
  top: 50%;
  width: 1px;
  height: 12px;
  content: "";
  background: #dce4ed;
  transform: translateY(-50%);
}
.news-reference-reading {
  padding: 42px 0 92px;
}
.news-reference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 42px;
}
.news-reference-article {
  overflow: hidden;
  border: 1px solid #e6edf5;
  background: #fff;
}
.news-reference-cover {
  overflow: hidden;
  height: 294px;
  border-bottom: 1px solid #e3ebf4;
  background: #eaf2fc;
}
.news-reference-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-reference-article .news-article-content {
  padding: 46px clamp(32px, 5vw, 70px) 56px;
  border: 0;
  box-shadow: none;
}
.news-reference-article .news-article-content::before {
  display: block;
  width: 48px;
  height: 3px;
  margin: 0 0 28px;
  content: "";
  background: #1760e9;
}
.news-reference-article .news-article-content figure {
  display: none;
}
.news-reference-article .news-article-tags {
  margin-top: 48px;
}
.news-reference-aside {
  position: sticky;
  top: 92px;
}
.news-reference-side-section {
  margin-bottom: 18px;
  padding: 22px 20px 14px;
  border: 1px solid #e0e9f3;
  background: #fff;
}
.news-reference-side-section h2 {
  position: relative;
  margin: 0 0 16px;
  padding-left: 12px;
  color: #153b69;
  font-size: 17px;
  font-weight: 700;
}
.news-reference-side-section h2::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 17px;
  content: "";
  background: #1760e9;
}
.news-reference-hot-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-reference-hot-list li + li {
  border-top: 1px solid #edf1f5;
}
.news-reference-hot-list a {
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr);
  gap: 10px;
  padding: 13px 0;
  text-decoration: none;
}
.news-reference-hot-list b {
  color: #9babbc;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}
.news-reference-hot-list li:nth-child(-n + 3) b {
  color: #1760e9;
}
.news-reference-hot-list span {
  display: -webkit-box;
  overflow: hidden;
  color: #3f5874;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.2s ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-reference-hot-list a:hover span {
  color: #1760e9;
}
.news-reference-tags-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news-reference-tags-panel a {
  padding: 7px 10px;
  color: #54708d;
  border: 1px solid #e0e9f3;
  background: #f8fbff;
  font-size: 12px;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.news-reference-tags-panel a:hover {
  color: #fff;
  border-color: #1760e9;
  background: #1760e9;
}
.news-reference-list-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1760e9;
  font-size: 14px;
  font-weight: 600;
}
.news-reference-list-link i {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.news-reference-list-link:hover i {
  transform: translateX(4px);
}
@media (max-width: 1080px) {
  .news-reference-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 26px;
  }
}
@media (max-width: 820px) {
  .news-reference-heading {
    padding-top: 88px;
  }
  .news-reference-layout {
    grid-template-columns: 1fr;
  }
  .news-reference-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .news-reference-list-link {
    grid-column: 1 / -1;
  }
  .news-reference-side-section {
    margin: 0;
  }
}
@media (max-width: 620px) {
  .news-reference-heading {
    padding-bottom: 38px;
  }
  .news-reference-channel {
    justify-content: flex-start;
    margin-top: 24px;
  }
  .news-reference-channel a {
    min-height: 30px;
    padding: 0 11px;
  }
  .news-reference-heading-inner {
    margin-top: 28px;
  }
  .news-reference-heading h1 {
    font-size: 30px;
  }
  .news-reference-heading p {
    font-size: 15px;
  }
  .news-reference-meta {
    gap: 7px 14px;
    line-height: 1.6;
  }
  .news-reference-meta span + span::before,
  .news-reference-meta time + span::before {
    left: -7px;
  }
  .news-reference-reading {
    padding: 30px 0 60px;
  }
  .news-reference-cover {
    height: 210px;
  }
  .news-reference-article .news-article-content {
    padding: 30px 20px 38px;
  }
  .news-reference-aside {
    grid-template-columns: 1fr;
  }
}
