:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-2: #edf4fb;
  --ink: #101828;
  --muted: #5d6b82;
  --line: #d9e2ef;
  --blue: #1367ff;
  --blue-2: #0a48b3;
  --cyan: #16c7d9;
  --green: #21b26b;
  --navy: #071426;
  --navy-2: #0d223d;
  --shadow: 0 16px 45px rgba(11, 35, 70, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 226, 239, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.02em;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  min-width: 180px;
  text-align: center;
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.nav-links a {
  color: #1d2b42;
  font-size: 13px;
  padding: 9px 9px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--surface-2);
  color: var(--blue-2);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(19, 103, 255, 0.22);
}

.button.secondary {
  background: #0d223d;
  color: #fff;
}

.button.ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.button.light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.94) 0%, rgba(7, 20, 38, 0.84) 44%, rgba(7, 20, 38, 0.52) 72%, rgba(7, 20, 38, 0.7) 100%),
    radial-gradient(circle at 76% 32%, rgba(22, 199, 217, 0.26), transparent 34%),
    url("../img/hero-ai-datacenter-generated.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(7, 20, 38, 0.52));
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  max-width: var(--max);
  min-height: 680px;
  margin: 0 auto;
  padding: 96px 24px 76px;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7fdfff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.lead {
  color: #d8e7f7;
  font-size: 18px;
  max-width: 760px;
}

.hero .lead {
  max-width: 800px;
  color: #d8e4f3;
}

.section .lead,
.page-hero .lead {
  color: var(--muted);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 800px;
  margin-top: 34px;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(8, 22, 42, 0.62);
  backdrop-filter: blur(12px);
}

.stat strong {
  display: block;
  font-size: 18px;
}

.stat span {
  color: #a9bdd4;
  font-size: 13px;
}


.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 24px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-header.centered {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header p {
  max-width: 720px;
  color: var(--muted);
}

.section-header.centered p {
  margin-right: auto;
  margin-left: auto;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
  overflow: hidden;
}

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

.card-image {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  background: #e8eef7;
}

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

.card-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 16px;
  color: var(--blue-2);
  font-weight: 800;
}

.advantage {
  padding: 22px;
}

.advantage-number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--blue-2);
  font-weight: 800;
}

.strength-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 254, 0.96)),
    radial-gradient(circle at 50% 0, rgba(19, 103, 255, 0.1), transparent 46%),
    var(--bg);
}

.strength-band::before,
.strength-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}

.strength-band::before {
  background:
    linear-gradient(120deg, transparent 0 41%, rgba(19, 103, 255, 0.12) 41.2%, transparent 41.8% 58%, rgba(19, 103, 255, 0.1) 58.2%, transparent 58.8%),
    linear-gradient(60deg, transparent 0 44%, rgba(22, 199, 217, 0.11) 44.2%, transparent 44.8% 62%, rgba(22, 199, 217, 0.08) 62.2%, transparent 62.8%);
}

.strength-band::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86) 24% 76%, transparent);
}

.strength-band .section {
  position: relative;
  z-index: 1;
  padding-top: 58px;
  padding-bottom: 62px;
}

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

.strength-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  min-height: 210px;
  border: 1px solid rgba(205, 216, 232, 0.86);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(16, 40, 80, 0.06);
}

.strength-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2f6dff, #87d8ff);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(19, 103, 255, 0.22);
}

.strength-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(22, 199, 217, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.strength-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.strength-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.product-showcase-section {
  background: #fff;
  padding-top: 58px;
  padding-bottom: 70px;
}

.showcase-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.42 / 1;
  border-radius: 0;
  overflow: hidden;
  background: #071426;
  box-shadow: none;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 38, 0) 48%, rgba(7, 20, 38, 0.66) 100%);
}

.showcase-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 15px;
  z-index: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.showcase-card:hover img {
  transform: scale(1.03);
  opacity: 1;
}


.product-system-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(19, 103, 255, 0.1), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
  padding-top: 68px;
  padding-bottom: 76px;
}

.product-system-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 58%, rgba(19, 103, 255, 0.06) 58.2%, transparent 58.8%);
}

.product-system-section > * {
  position: relative;
  z-index: 1;
}

.product-system-head {
  align-items: end;
  margin-bottom: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--blue-2);
  font-weight: 900;
  white-space: nowrap;
}

.product-system-featured,
.product-system-grid {
  display: grid;
  gap: 18px;
}

.product-system-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

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

.product-system-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid rgba(205, 216, 232, 0.88);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  box-shadow: 0 14px 34px rgba(16, 40, 80, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-system-card:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 103, 255, 0.32);
  box-shadow: 0 20px 46px rgba(16, 40, 80, 0.12);
}

.product-system-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #071426;
}

.product-system-card.featured .product-system-media {
  aspect-ratio: 2.05 / 1;
}

.product-system-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 38, 0), rgba(7, 20, 38, 0.24));
}

.product-system-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.product-system-card:hover .product-system-media img {
  transform: scale(1.035);
}

.product-system-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 19px 20px 21px;
}

.product-system-card.featured .product-system-body {
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 15px;
  padding: 22px 24px 24px;
}

.product-system-card.featured .product-system-body h3,
.product-system-card.featured .product-system-body p {
  grid-column: 2;
}

.product-system-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 28px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.product-system-card.featured .product-system-index {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1367ff, #16c7d9);
  color: #fff;
  box-shadow: 0 16px 28px rgba(19, 103, 255, 0.2);
}

.product-system-body h3 {
  margin-bottom: 0;
  font-size: 18px;
}

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

.product-system-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-band {
  background:
    radial-gradient(circle at 78% 10%, rgba(0, 91, 255, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
}

.solution-header {
  align-items: end;
}

.solution-band .section-header p,
.solution-card p {
  color: #bfd1e6;
}

.light-link {
  color: #d9e9ff;
}

.light-link:hover {
  color: #fff;
}

.solution-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: -16px 0 26px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.solution-flow span {
  color: #eef6ff;
  font-size: 14px;
  font-weight: 800;
}

.solution-flow i {
  color: rgba(216, 231, 247, 0.55);
  font-style: normal;
}

.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.solution-card {
  min-height: 330px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.16);
}

.solution-card:hover {
  border-color: rgba(91, 167, 255, 0.46);
  background: rgba(255, 255, 255, 0.09);
}

.solution-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 30px;
  border-radius: 999px;
  background: rgba(91, 167, 255, 0.16);
  color: #8fc5ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.solution-card h3 {
  margin: 0;
  color: #fff;
  font-size: 21px;
}

.solution-card p {
  margin: 0;
  font-size: 15px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li,
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.solution-band .pill-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #d8e7f7;
}

.brand-section {
  padding-top: 86px;
}

.brand-section-header {
  align-items: end;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.home-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.home-brand-tile {
  min-height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(128, 151, 179, 0.26);
  border-radius: 8px;
  padding: 24px 26px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(14, 42, 78, 0.06);
}

.home-brand-tile img {
  width: 100%;
  max-width: 148px;
  max-height: 40px;
  object-fit: contain;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.brand-tile {
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #172b4d;
  font-weight: 900;
  text-align: center;
  padding: 20px 24px;
}

.brand-tile img {
  width: 100%;
  max-width: 168px;
  max-height: 46px;
  object-fit: contain;
}

.brand-tile span {
  font-size: 20px;
}

.notice {
  margin-top: 22px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  padding: 16px 18px;
  background: #eef5ff;
  color: #35516f;
}

.notice.compact {
  display: inline-block;
  max-width: 560px;
  padding: 12px 16px;
  font-size: 14px;
}


.insights-section .section-header {
  align-items: end;
}

.insight-grid {
  align-items: stretch;
}

.home-insights-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.insight-featured-card,
.insight-compact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(14, 42, 78, 0.055);
}

.insight-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  overflow: hidden;
  min-height: 282px;
}

.insight-featured-media {
  display: block;
  min-height: 100%;
  background: #07192d;
}

.insight-featured-media img,
.insight-card .card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
}

.insight-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.insight-featured-body h3,
.insight-compact-card h3 {
  margin: 8px 0 12px;
}

.insight-featured-body h3 a,
.insight-compact-card h3 a {
  color: var(--ink);
}

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

.insight-compact-card {
  display: flex;
  min-height: 134px;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.insight-compact-card p:not(.article-meta) {
  margin-bottom: 10px;
}

.insight-card {
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(14, 42, 78, 0.06);
}

.insight-card .card-image {
  height: auto;
}

.insight-card h3 {
  min-height: 58px;
}

.insight-card .card-body > p:not(.article-meta) {
  min-height: 96px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.article-related {
  margin-top: 12px;
  margin-bottom: 18px;
}

.article-related a.pill {
  display: inline-flex;
}

.page-hero {
  background: linear-gradient(135deg, #eef5ff, #f8fbff);
  border-bottom: 1px solid var(--line);
}

.page-hero .section {
  padding-top: 62px;
  padding-bottom: 54px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.filter-button.active,
.filter-button:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.detail-panel ul {
  margin: 0;
  padding-left: 18px;
}

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

.process-step {
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.article-meta {
  color: var(--muted);
  font-size: 14px;
}

.article-body {
  font-size: 17px;
}

.article-body p {
  margin-bottom: 18px;
}

.news-grid {
  margin-top: 24px;
}

.source-link a {
  color: var(--blue-2);
  font-weight: 800;
}



.product-center-section {
  padding-top: 68px;
  padding-bottom: 68px;
}

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

.product-structure-card,
.product-category-card,
.product-brand-card,
.product-contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(14, 42, 78, 0.055);
}

.product-structure-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  color: var(--ink);
}

.product-structure-card h3,
.product-category-card h3 {
  margin-bottom: 12px;
}

.product-structure-card p,
.product-category-card p {
  color: var(--muted);
}

.representative-line {
  margin: 0 0 4px;
  color: #526680;
  font-size: 13px;
  line-height: 1.7;
}

.representative-line strong {
  color: var(--ink);
}

.representative-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

.representative-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #f8fbff, #fff);
  color: #4f627a;
  font-size: 14px;
  line-height: 1.75;
}

.representative-note {
  margin-top: 0;
  color: var(--muted);
}

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

.product-category-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
}

.product-category-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #06162a;
}

.product-category-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-category-body .pill-list,
.product-structure-card .pill-list {
  margin-top: 14px;
  margin-bottom: 16px;
}

.product-category-body .card-link,
.product-structure-card .card-link {
  margin-top: auto;
}

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

.product-brand-card {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-brand-card img {
  width: 100%;
  max-width: 164px;
  max-height: 46px;
  object-fit: contain;
}

.product-brand-card span {
  color: var(--ink);
  font-weight: 900;
}

.product-contact-section {
  padding-top: 52px;
}

.product-contact-panel {
  padding: 38px;
  background:
    radial-gradient(circle at 80% 20%, rgba(38, 119, 255, 0.18), transparent 35%),
    linear-gradient(135deg, #071a30, #0d2b4c);
  color: #fff;
}

.product-contact-panel p {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.78);
}

.product-contact-panel .eyebrow {
  color: #a9c7ff;
}

.product-contact-panel .cta-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.product-category-detail .card-image {
  margin-bottom: 24px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.product-support-panel {
  position: sticky;
  top: 104px;
}

.product-support-panel .eyebrow {
  margin-bottom: 10px;
}

.product-support-panel h2 {
  margin-bottom: 14px;
}

.support-intro {
  margin-top: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.support-checklist {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.support-checklist li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #f8fbff, #fff);
}

.support-checklist span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(22, 105, 255, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.support-checklist strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.support-checklist p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.support-note {
  border-left: 3px solid rgba(22, 105, 255, 0.38);
  margin: 18px 0 0;
  padding: 8px 0 8px 12px;
  color: #526680;
  font-size: 14px;
  line-height: 1.7;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.muted-link {
  color: var(--muted);
  font-weight: 850;
}

.side-link-list {
  display: grid;
  gap: 10px;
}

.side-link-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--blue);
  font-weight: 850;
  background: #fff;
}

.brand-detail-logo {
  width: 100%;
  max-width: 240px;
  max-height: 72px;
  object-fit: contain;
  margin-bottom: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 28px;
  align-items: start;
}

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

.contact-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.contact-qr-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.contact-item-copy {
  grid-column: 1;
  min-width: 0;
}

.contact-qr-trigger {
  position: relative;
  display: inline-flex;
  grid-column: 2;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  padding: 3px 7px 3px 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fbff;
  color: var(--blue);
  cursor: zoom-in;
}

.contact-qr-trigger:hover,
.contact-qr-trigger:focus-visible {
  border-color: rgba(22, 105, 255, 0.44);
  outline: none;
}

.contact-qr-thumb {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: contain;
  background: #fff;
}

.contact-qr-trigger-text {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.contact-qr-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  width: 208px;
  padding: 8px;
  border: 1px solid rgba(217, 226, 239, 0.98);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(10, 31, 64, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px) scale(0.96);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.contact-qr-popover img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

@media (hover: hover) {
  .contact-qr-trigger:hover .contact-qr-popover,
  .contact-qr-trigger:focus-visible .contact-qr-popover {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
  }
}

.contact-qr-dialog {
  width: min(92vw, 370px);
  padding: 16px;
  border: 1px solid rgba(217, 226, 239, 0.98);
  border-radius: 12px;
  box-shadow: 0 22px 64px rgba(7, 24, 53, 0.32);
}

.contact-qr-dialog::backdrop {
  background: rgba(7, 22, 45, 0.52);
}

.contact-qr-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: #15233a;
}

.contact-qr-dialog-header button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.contact-qr-dialog > img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.contact-map {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-map-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: #15233a;
  font-weight: 800;
}

.contact-map-heading a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

@media (max-width: 520px) {
  .contact-qr-item {
    align-items: center;
  }

  .contact-qr-trigger-text {
    display: none;
  }

  .contact-qr-trigger {
    padding: 3px;
  }
}

.quote-form,
.form-grid {
  display: grid;
  gap: 14px;
}

.website-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

label {
  display: grid;
  gap: 7px;
  color: #233247;
  font-size: 14px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue-2);
  font-weight: 800;
}

.form-status.error {
  color: #b42318;
}

.cta-panel {
  border: 1px solid rgba(146, 168, 196, 0.18);
  border-radius: 8px;
  padding: 30px 32px;
  background:
    radial-gradient(circle at 82% 10%, rgba(45, 140, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #081a31, #071426);
  color: #fff;
}

.cta-panel h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.cta-panel p {
  max-width: 880px;
  color: #c8d8ec;
}

.cta-panel .cta-actions {
  margin-top: 22px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 9px 15px;
  background: rgba(255, 255, 255, 0.06);
  color: #edf6ff;
  font-size: 14px;
  font-weight: 800;
}

.cta-link:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  background: var(--navy);
  color: #d8e7f7;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 24px 32px;
}

.footer-inner h3 {
  color: #fff;
  font-size: 16px;
}

.footer-inner p,
.footer-inner a {
  color: #a9bdd4;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-qr-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.footer-qr-trigger {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8e7f7;
  text-align: left;
  cursor: zoom-in;
}

.footer-qr-trigger:hover,
.footer-qr-trigger:focus-visible {
  border-color: rgba(105, 170, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.footer-qr-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.footer-qr-copy strong {
  color: #edf6ff;
  font-size: 13px;
}

.footer-qr-copy small {
  color: #a9bdd4;
  font-size: 12px;
}

.footer-qr-thumb {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  object-fit: contain;
  background: #fff;
}

@media (hover: hover) {
  .footer-qr-trigger:hover .contact-qr-popover,
  .footer-qr-trigger:focus-visible .contact-qr-popover {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
  }
}

.copyright {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #89a1bb;
  font-size: 13px;
}

.hidden {
  display: none !important;
}

.admin-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #eef5ff, #f8fbff);
}

.admin-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 20px;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-top.compact {
  margin-bottom: 14px;
}

.admin-actions,
.admin-locale,
.admin-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-locale {
  margin-bottom: 18px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 14px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
}

.tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.admin-section {
  display: grid;
  gap: 18px;
}

.admin-collection-block {
  display: grid;
  gap: 12px;
}

.admin-section-heading {
  justify-content: space-between;
}

.admin-section-heading h2 {
  margin: 0;
  font-size: 20px;
}

.admin-entry-card {
  position: relative;
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fbfdff;
}

.admin-entry-card h3,
.admin-entry-card p {
  margin: 0;
}

.admin-entry-index {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.revision-list {
  display: grid;
  gap: 10px;
}

.revision-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fbfdff;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

th {
  color: #233247;
  background: #f8fbff;
}

.muted {
  color: var(--muted);
}

.error-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 92px 24px;
}

@media (max-width: 1040px) {
  .nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero-inner,
  .detail-layout,
  

.product-center-section {
  padding-top: 68px;
  padding-bottom: 68px;
}

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

.product-structure-card,
.product-category-card,
.product-brand-card,
.product-contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(14, 42, 78, 0.055);
}

.product-structure-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  color: var(--ink);
}

.product-structure-card h3,
.product-category-card h3 {
  margin-bottom: 12px;
}

.product-structure-card p,
.product-category-card p {
  color: var(--muted);
}

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

.product-category-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
}

.product-category-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #06162a;
}

.product-category-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-category-body .pill-list,
.product-structure-card .pill-list {
  margin-top: 14px;
  margin-bottom: 16px;
}

.product-category-body .card-link,
.product-structure-card .card-link {
  margin-top: auto;
}

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

.product-brand-card {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-brand-card img {
  width: 100%;
  max-width: 164px;
  max-height: 46px;
  object-fit: contain;
}

.product-brand-card span {
  color: var(--ink);
  font-weight: 900;
}

.product-contact-section {
  padding-top: 52px;
}

.product-contact-panel {
  padding: 38px;
  background:
    radial-gradient(circle at 80% 20%, rgba(38, 119, 255, 0.18), transparent 35%),
    linear-gradient(135deg, #071a30, #0d2b4c);
  color: #fff;
}

.product-contact-panel p {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.78);
}

.product-contact-panel .eyebrow {
  color: #a9c7ff;
}

.product-contact-panel .cta-link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.product-category-detail .card-image {
  margin-bottom: 24px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.side-link-list {
  display: grid;
  gap: 10px;
}

.side-link-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--blue);
  font-weight: 850;
  background: #fff;
}

.brand-detail-logo {
  width: 100%;
  max-width: 240px;
  max-height: 72px;
  object-fit: contain;
  margin-bottom: 24px;
}

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

  .hero-inner {
    min-height: 620px;
  }

  .grid.four,
  .grid.three,
  .brand-grid,
  .home-brand-grid,
  .showcase-grid,
  .strength-grid,
  .product-system-grid,
  .solution-card-grid,
  .product-category-grid,
  .product-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-insights-layout,
  .insight-featured-card {
    grid-template-columns: 1fr;
  }

  .insight-featured-media {
    min-height: 260px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .admin-shell {
    padding: 18px 12px;
  }

  .admin-card {
    padding: 20px;
  }

  .admin-top,
  .admin-section-heading,
  .revision-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-actions {
    flex-wrap: wrap;
  }

  .nav {
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy {
    display: none;
  }

  .nav-actions .button {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 27px;
  }

  .hero-inner,
  .section,
  .page-hero .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-inner {
    min-height: 590px;
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .hero-stats,
  .grid.two,
  .grid.three,
  .grid.four,
  .brand-grid,
  .home-brand-grid,
  .showcase-grid,
  .strength-grid,
  .product-system-featured,
  .product-system-grid,
  .solution-card-grid,
  .product-structure-grid,
  .product-category-grid,
  .product-brand-grid,
  .process,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .home-insights-layout,
  .insight-featured-card {
    grid-template-columns: 1fr;
  }

  .insight-featured-media {
    min-height: 210px;
  }

  .insight-featured-body,
  .insight-compact-card {
    padding: 20px;
  }

  .product-system-card.featured .product-system-media {
    aspect-ratio: 16 / 9;
  }

  .hero-stats {
    gap: 8px;
    margin-top: 24px;
  }

  .stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
  }

  .stat strong {
    font-size: 15px;
  }

  .stat span {
    flex: 0 0 auto;
    font-size: 12px;
  }

  .section-header,
  .admin-top {
    display: grid;
  }


  .admin-card {
    padding: 20px;
  }
}

@media (max-width: 680px) {
  .brand-section-header {
    align-items: start;
  }

  .home-brand-tile {
    min-height: 82px;
    padding: 20px;
  }
}

@media (max-width: 680px) {
  .solution-header {
    align-items: start;
  }

  .solution-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: -8px;
  }

  .solution-flow i {
    display: none;
  }

  .solution-card {
    min-height: 0;
    padding: 22px 20px;
  }
}

@media (max-width: 680px) {
  .cta-panel {
    padding: 24px 20px;
    text-align: center;
  }

  .cta-panel .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 1040px) {
  .product-support-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .support-checklist li {
    grid-template-columns: 1fr;
  }

  .support-actions {
    display: grid;
    gap: 10px;
  }
}


/* Solution pages */
.solution-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(38, 119, 255, 0.34), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(90, 196, 255, 0.16), transparent 36%),
    linear-gradient(135deg, #06162a 0%, #0a2a4c 52%, #071827 100%);
  color: #fff;
}

.solution-page-hero.solution-overview-hero {
  background-color: #06162a;
  background-image:
    linear-gradient(90deg, rgba(2, 12, 27, 0.99) 0%, rgba(3, 16, 34, 0.95) 34%, rgba(4, 24, 48, 0.76) 54%, rgba(5, 31, 63, 0.18) 78%, rgba(3, 20, 41, 0.4) 100%),
    linear-gradient(180deg, rgba(5, 23, 46, 0.18), rgba(2, 12, 27, 0.22)),
    url("../img/business-server-system-user-47295-abstract-bright.jpg");
  background-position: center, center, 135% center;
  background-repeat: no-repeat;
  background-size: cover, cover, min(65vw, 1020px) auto;
}

.solution-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    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: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.solution-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: 44px;
  align-items: center;
  min-height: 520px;
  padding-top: 96px;
  padding-bottom: 92px;
}

.solution-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(42px, 6vw, 70px);
}

.solution-hero-copy p:not(.eyebrow) {
  max-width: 790px;
  color: rgba(235, 244, 255, 0.82);
  font-size: 18px;
  line-height: 1.95;
}

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

.solution-hero-actions .cta-link {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.solution-hero-actions .cta-link.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.solution-hero-visual {
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 40%, rgba(58, 148, 255, 0.26), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  padding: 28px;
}

.solution-overview-hero .solution-hero-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.46fr);
}

.solution-overview-hero .solution-hero-copy p:not(.eyebrow) {
  max-width: 640px;
}

.solution-overview-hero .solution-hero-visual {
  width: min(100%, 360px);
  min-height: 258px;
  justify-self: start;
  border-color: rgba(190, 220, 255, 0.2);
  background: rgba(8, 29, 57, 0.58);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  padding: 18px;
  transform: translateX(-112px);
}

.solution-overview-hero .solution-visual-card span {
  padding: 14px 15px;
}

/* Keep the server visual aligned with the centered content on ultra-wide screens. */
@media (min-width: 1600px) {
  .solution-page-hero.solution-overview-hero {
    background-position: center, center, calc(50% + 380px) center;
  }
}

.solution-visual-card {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.solution-visual-card span {
  border: 1px solid rgba(196, 224, 255, 0.22);
  border-radius: 8px;
  padding: 18px 16px;
  background: rgba(4, 16, 31, 0.42);
  color: rgba(235, 244, 255, 0.92);
  font-weight: 900;
}

.solution-visual-card.compact {
  grid-template-columns: 1fr;
}

.solution-page-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.solution-section-head {
  align-items: end;
}

.solution-section-head p {
  max-width: 880px;
}

.solution-type-grid,
.solution-capability-grid,
.solution-matrix-grid,
.solution-detail-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.solution-type-card,
.solution-capability-card,
.solution-matrix-card,
.solution-detail-panel,
.solution-related-card,
.solution-brand-card,
.solution-process-step,
.solution-contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(14, 42, 78, 0.055);
}

.solution-type-card,
.solution-capability-card,
.solution-matrix-card,
.solution-detail-panel {
  color: var(--ink);
}

.solution-type-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
}

.solution-type-card h3,
.solution-capability-card h3,
.solution-matrix-card h3,
.solution-detail-panel h2 {
  margin-bottom: 12px;
}

.solution-type-card p,
.solution-capability-card p,
.solution-matrix-card p,
.solution-detail-panel p {
  color: var(--muted);
}

.solution-type-card em {
  margin-top: auto;
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.solution-capability-card {
  padding: 24px;
}

.solution-capability-card > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(22, 105, 255, 0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.solution-matrix-card {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.solution-matrix-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.solution-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.solution-process-step {
  min-height: 190px;
  padding: 18px;
}

.solution-process-step span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.solution-process-step h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.solution-process-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.solution-related-grid,
.solution-brand-grid {
  display: grid;
  gap: 14px;
}

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

.solution-related-card {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: var(--ink);
}

.solution-related-card span {
  font-weight: 950;
}

.solution-related-card em {
  color: var(--blue);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.solution-brand-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.solution-brand-card {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.solution-brand-card img {
  width: 100%;
  max-width: 150px;
  max-height: 42px;
  object-fit: contain;
}

.solution-brand-card span {
  color: var(--ink);
  font-weight: 950;
  text-align: center;
}

.solution-detail-panel {
  padding: 26px;
}

.solution-detail-panel .solution-related-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-contact-section {
  padding-top: 48px;
}

.solution-contact-panel {
  padding: 38px;
  background:
    radial-gradient(circle at 82% 20%, rgba(38, 119, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #071a30, #0d2b4c);
  color: #fff;
}

.solution-contact-panel p:not(.eyebrow) {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.78);
}

.solution-contact-panel .eyebrow {
  color: #a9c7ff;
}

.solution-contact-panel .cta-link {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1040px) {
  .solution-hero-inner,
  .solution-type-grid,
  .solution-matrix-grid,
  .solution-detail-grid {
    grid-template-columns: 1fr;
  }

  .solution-overview-hero .solution-hero-inner {
    grid-template-columns: 1fr;
  }

  .solution-capability-grid,
  .solution-process,
  .solution-related-grid,
  .solution-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-hero-visual {
    min-height: 250px;
  }

  .solution-page-hero.solution-overview-hero {
    background-position: center, center, 118% bottom;
    background-size: cover, cover, min(86vw, 760px) auto;
  }

  .solution-overview-hero .solution-hero-visual {
    width: min(100%, 380px);
    justify-self: start;
    transform: none;
  }
}

@media (max-width: 680px) {
  .solution-hero-inner {
    min-height: 0;
    padding-top: 70px;
    padding-bottom: 56px;
  }

  .solution-hero-copy h1 {
    font-size: 38px;
  }

  .solution-hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .solution-hero-actions,
  .solution-contact-panel .cta-actions {
    display: grid;
  }

  .solution-page-hero.solution-overview-hero {
    background-position: center, center, center bottom;
    background-size: cover, cover, 620px auto;
  }

  .solution-overview-hero .solution-hero-visual {
    width: 100%;
    min-height: 220px;
  }

  .solution-capability-grid,
  .solution-process,
  .solution-related-grid,
  .solution-brand-grid,
  .solution-detail-panel .solution-related-grid {
    grid-template-columns: 1fr;
  }

  .solution-page-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .solution-type-card,
  .solution-capability-card,
  .solution-matrix-card,
  .solution-detail-panel,
  .solution-contact-panel {
    padding: 22px 20px;
  }

  .solution-type-card,
  .solution-process-step {
    min-height: 0;
  }
}

/* AOSCEND HEADER ABOUT 20260704D START */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 226, 239, 0.86);
  backdrop-filter: blur(14px);
}

.nav {
  display: grid;
  grid-template-columns: minmax(285px, 0.8fr) minmax(520px, 1.35fr) auto;
  align-items: center;
  max-width: var(--max);
  min-height: 78px;
  column-gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 285px;
  color: var(--ink);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(217, 226, 239, 0.95);
}

.brand-copy {
  display: flex;
  min-width: 194px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: auto;
  text-align: center;
}

.brand strong {
  color: #0d1828;
  font-size: 15.5px;
  font-weight: 750;
  line-height: 1.22;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-align: center;
}

.brand-copy span {
  color: #52647c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  text-align: center;
}

.nav-links {
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  color: #1d2b42;
  font-size: 14px;
  font-weight: 550;
  line-height: 1;
  padding: 11px 12px;
  border-radius: 10px;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(22, 105, 255, 0.09);
  color: var(--blue-2);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.nav-actions .button {
  min-height: 42px;
  padding: 0 22px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 750;
  box-shadow: none;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  width: max-content;
  gap: 7px;
  color: #8a9ab0;
  font-size: 12px;
  font-weight: 700;
  flex: 0 0 auto;
  white-space: nowrap;
}

.language-switch a {
  display: inline-grid;
  min-width: 28px;
  place-items: center;
  color: #6f8098;
}

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

.mobile-language-switch {
  display: none;
}

html[lang="en"] .brand-copy {
  min-width: 228px;
}

html[lang="en"] .brand strong {
  max-width: 248px;
  font-size: 12.5px;
  line-height: 1.18;
  white-space: normal;
}

html[lang="en"] .brand-copy span {
  max-width: 250px;
  font-size: 10.5px;
  white-space: normal;
}

html[lang="en"] .nav {
  grid-template-columns: 292px minmax(0, 1fr) auto;
  column-gap: 16px;
}

html[lang="en"] .nav-links {
  gap: 4px;
}

html[lang="en"] .nav-links a {
  padding-right: 9px;
  padding-left: 9px;
  font-size: 13px;
}

.menu-toggle {
  border-radius: 10px;
}

.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.about-profile-media {
  margin: 0;
}

.about-profile-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(217, 226, 239, 0.95);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(11, 35, 70, 0.12);
}

.about-profile-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.about-profile-copy p:not(.eyebrow) {
  color: #4d5f78;
}

.about-product-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.about-product-links a {
  display: grid;
  gap: 5px;
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
}

.about-product-links a:hover {
  border-color: rgba(19, 103, 255, 0.32);
  background: #f8fbff;
}

.about-product-links strong {
  color: #10243f;
  font-size: 15px;
}

.about-product-links span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.about-soft-band {
  border-top: 1px solid rgba(217, 226, 239, 0.72);
  border-bottom: 1px solid rgba(217, 226, 239, 0.72);
  background: linear-gradient(180deg, #f8fbff, #eef5fb);
}

.about-card-grid {
  display: grid;
  gap: 16px;
}

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

.about-info-card,
.about-process-card,
.about-customer-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
}

.about-info-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 22px;
}

.about-info-card.compact {
  min-height: 250px;
}

.about-card-number,
.about-process-card span,
.about-customer-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 42px;
  height: 30px;
  border-radius: 999px;
  background: rgba(19, 103, 255, 0.1);
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 850;
}

.about-info-card h3,
.about-process-card h3,
.about-customer-card h3 {
  margin-top: 18px;
  color: #10243f;
}

.about-info-card p,
.about-process-card p,
.about-customer-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.about-process-card {
  min-height: 184px;
  padding: 22px;
}

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

.about-customer-card {
  min-height: 220px;
  padding: 20px;
}

.about-contact-panel {
  border: 1px solid rgba(146, 168, 196, 0.18);
  border-radius: 8px;
  padding: 30px 32px;
  background:
    radial-gradient(circle at 82% 10%, rgba(45, 140, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #081a31, #071426);
  color: #fff;
}

.about-contact-panel h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.about-contact-panel p:not(.eyebrow) {
  max-width: 880px;
  color: #c8d8ec;
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
    row-gap: 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 0 0 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
    font-size: 15px;
  }

  .nav-actions {
    display: none;
  }

  .mobile-language-switch {
    display: flex;
    justify-content: center;
    padding: 10px 0 2px;
  }

  .mobile-language-switch .language-switch {
    font-size: 14px;
  }

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

@media (max-width: 820px) {
  .about-profile-grid,
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .about-profile-grid {
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .nav {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
    gap: 11px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }

  .brand-copy {
    display: flex;
    min-width: 0;
  }

  .brand strong {
    max-width: 168px;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
  }

  .brand-copy span {
    display: none;
  }

  html[lang="en"] .brand-copy {
    min-width: 0;
  }

  html[lang="en"] .brand strong {
    max-width: 190px;
    font-size: 12px;
    white-space: nowrap;
  }

  .about-product-links,
  .about-card-grid.four,
  .about-customer-grid {
    grid-template-columns: 1fr;
  }

  .about-profile-media img {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .about-info-card,
  .about-info-card.compact,
  .about-process-card,
  .about-customer-card {
    min-height: 0;
  }

  .about-contact-panel {
    padding: 24px 20px;
    text-align: center;
  }

  .about-contact-panel .cta-actions {
    justify-content: center;
  }
}
/* AOSCEND HEADER ABOUT 20260704D END */

/* AOSCEND PRODUCT CENTER 20260704E START */
.about-profile-copy {
  max-width: 720px;
}

.about-profile-copy p:not(.eyebrow) {
  color: #34465f;
  font-size: 17px;
  line-height: 1.95;
}

.about-product-links {
  display: none;
}

.product-structure-card-static {
  display: flex;
  flex-direction: column;
  color: var(--ink);
}

.product-structure-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.product-structure-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(19, 103, 255, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  background: #f3f8ff;
  color: var(--blue-2);
  font-size: 14px;
  font-weight: 800;
}

.product-structure-links a:hover {
  border-color: rgba(19, 103, 255, 0.36);
  background: #eaf3ff;
}

.selection-reference-note {
  border: 1px solid #d6e7ff;
  border-left: 3px solid var(--blue);
  border-radius: 12px;
  padding: 14px 16px;
  background: #f3f8ff;
  color: #24324b;
  font-size: 14.5px;
  line-height: 1.7;
}

.selection-reference-note strong {
  display: block;
  margin-bottom: 4px;
  color: #10243f;
}

.selection-reference-note p {
  margin: 0;
  color: #34465f;
}

.product-support-panel .support-checklist {
  margin-bottom: 16px;
}

.product-category-detail .representative-list li {
  color: #34465f;
}

@media (max-width: 680px) {
  .about-profile-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.85;
  }

  .product-structure-links a {
    width: 100%;
    justify-content: flex-start;
  }
}
/* AOSCEND PRODUCT CENTER 20260704E END */
