:root {
  --blue-950: #041b38;
  --blue-900: #062a55;
  --blue-800: #0a4785;
  --blue-650: #126bd3;
  --blue-100: #eaf3ff;
  --blue-50: #f5f9ff;
  --red: #e8292f;
  --text: #10213a;
  --muted: #5e6f86;
  --line: #dbe6f3;
  --surface: #ffffff;
  --soft: #f7faff;
  --shadow: 0 18px 48px rgba(6, 34, 71, .1);
  --deep-shadow: 0 30px 90px rgba(0, 12, 30, .32);
  --tech-bg:
    radial-gradient(ellipse 42% 82% at 78% 50%, rgba(0, 105, 220, .12), transparent 72%),
    radial-gradient(circle at 16% 82%, rgba(232, 41, 47, .07), transparent 27%),
    linear-gradient(112deg, #04172f 0%, #02102a 40%, #000a22 70%, #00051c 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(219, 230, 243, .78);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(6, 34, 71, .05);
}

.nav {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 108px;
  max-height: 48px;
  height: auto;
  object-fit: contain;
}

.brand-name {
  border-left: 1px solid var(--line);
  padding-left: 14px;
  font-size: 14px;
  color: var(--blue-900);
  font-weight: 700;
  line-height: 1.35;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #233a58;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--red);
}

.phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  --banner-base: #000821;
  background:
    radial-gradient(ellipse 42% 82% at 78% 50%, rgba(74, 105, 153, .09), transparent 72%),
    linear-gradient(112deg, #04172f 0%, #02102a 40%, var(--banner-base) 68%, var(--banner-base) 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero:has(img[src*="hero-home-2026-v6"]) { --banner-base: #00061f; }

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(180, 217, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 217, 255, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.15), #000 24%, #000 72%, rgba(0,0,0,.2));
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 20, 43, .62) 0%, rgba(3, 20, 43, .22) 42%, transparent 62%),
    radial-gradient(ellipse 34% 72% at 76% 50%, rgba(92, 124, 169, .08), transparent 74%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 560px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 28px;
  padding: 72px 0;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero p {
  margin: 0 0 32px;
  max-width: 660px;
  font-size: 18px;
  color: rgba(255, 255, 255, .86);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 16px 35px rgba(232, 41, 47, .25);
}

.btn-secondary {
  color: var(--blue-950);
  background: #fff;
}

.btn-outline {
  color: var(--blue-900);
  background: #fff;
  border-color: var(--line);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
  max-width: 640px;
}

.proof-item {
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 13px;
}

.proof-item strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.proof-item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.architecture {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.hero-visual {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: 0;
  background: transparent;
  transform: translateX(14px);
  isolation: isolate;
}

.hero-visual::before,
.page-hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 5%;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 184, 255, .16), rgba(0, 94, 205, .07) 48%, transparent 74%);
  filter: blur(18px);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.hero-visual::after {
  display: none;
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image:
    linear-gradient(rgba(180, 217, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 217, 255, .055) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .46;
}

.orbit {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(153, 201, 255, .36);
  background: radial-gradient(circle, rgba(33, 127, 236, .36), rgba(8, 49, 95, .12) 45%, transparent 70%);
}

.core {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  background: linear-gradient(145deg, #f9fcff, #b7dcff);
  color: var(--blue-950);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .28);
  font-weight: 900;
  line-height: 1.42;
}

.node {
  position: absolute;
  width: 128px;
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(180, 217, 255, .35);
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.node b {
  display: block;
  color: #fff;
  margin-bottom: 3px;
}

.node-1 { left: -20px; top: 80px; }
.node-2 { right: -34px; top: 72px; }
.node-3 { left: 18px; bottom: 76px; }
.node-4 { right: -12px; bottom: 84px; }

.section {
  padding: 84px 0;
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.section-soft {
  background:
    radial-gradient(circle at 8% 18%, rgba(18, 107, 211, .07), transparent 28%),
    linear-gradient(180deg, #f7faff, #eef6ff);
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 75% 25%, rgba(18, 107, 211, .3), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

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

.section-title {
  margin: 0 auto 44px;
  max-width: 820px;
  text-align: center;
}

.section-title h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.22;
  color: var(--blue-950);
}

.section-title p {
  margin: 0;
  font-size: 17px;
  color: var(--muted);
}

@media (min-width: 769px) {
  .section-title h2 {
    white-space: nowrap;
  }
}

.section-dark .section-title h2,
.section-dark .section-title p {
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.pain-visual-grid {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  gap: 22px;
  align-items: stretch;
}

.pain-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 14px 36px rgba(6, 34, 71, .055);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.pain-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  transition: transform .32s ease, box-shadow .32s ease;
}

.pain-card li {
  transition: transform .24s ease, color .24s ease;
}

@media (hover: hover) {
  .pain-card:hover {
    transform: translateY(-6px);
    border-color: rgba(18, 107, 211, .34);
    box-shadow: 0 22px 52px rgba(6, 34, 71, .13);
  }

  .pain-card:hover .pain-icon {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 28px rgba(6, 34, 71, .2);
  }

  .pain-card:hover li {
    transform: translateX(3px);
    color: var(--blue-950);
  }
}

.pain-icon.danger {
  background: linear-gradient(135deg, var(--red), #b91520);
}

.pain-icon.safe {
  background: linear-gradient(135deg, var(--blue-650), var(--blue-900));
}

.pain-card h3 {
  margin: 0 0 12px;
  color: var(--blue-950);
  font-size: 24px;
}

@media (min-width: 1100px) {
  .pain-card h3,
  .pain-card li {
    white-space: nowrap;
  }

  .pain-card li {
    font-size: 15px;
  }
}

.pain-bridge {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  border-radius: 10px;
  color: #fff;
  background: var(--tech-bg);
  box-shadow: var(--shadow);
}

.pain-bridge span,
.pain-bridge strong {
  display: block;
}

.pain-bridge strong {
  margin: 8px 0;
  font-size: 28px;
}

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
  box-shadow: 0 14px 36px rgba(6, 34, 71, .055);
}

.panel h3 {
  margin: 0 0 14px;
  font-size: 24px;
  color: var(--blue-950);
}

.about-intro-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 48%, #f3f8ff 100%);
}

.about-intro-panel h3,
.about-intro-panel ul {
  position: relative;
  z-index: 1;
}

.about-panel-watermark {
  position: absolute;
  right: 18px;
  bottom: -18px;
  width: 170px;
  height: 170px;
  object-fit: contain;
  opacity: .1;
  pointer-events: none;
  user-select: none;
}

.ransomware-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff, #fbfdff);
}

.ransomware-panel h3,
.ransomware-panel ul,
.ransomware-panel .actions {
  position: relative;
  z-index: 1;
}

.ransomware-panel::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 168px;
  height: 168px;
  background: url("ransom-threat-watermark.svg") center / contain no-repeat;
  opacity: .28;
  pointer-events: none;
}

.drill-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 22px;
  align-items: center;
  min-height: 282px;
}

.drill-copy {
  min-width: 0;
}

.drill-figure {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 178px;
}

.drill-figure::before {
  content: "";
  position: absolute;
  inset: 16px 4px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 107, 211, .14), transparent 68%);
}

.drill-figure img {
  position: relative;
  z-index: 1;
  width: 132px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(6, 34, 71, .12));
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: #334762;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(232, 41, 47, .1);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 14px;
  height: 2px;
  background: var(--blue-650);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.solutions-page .mode-grid {
  grid-template-columns: repeat(3, 1fr);
}

.visual-frame {
  position: relative;
  margin: 0 auto 34px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(151, 205, 255, .22);
  box-shadow: 0 28px 70px rgba(6, 34, 71, .18);
  background: var(--tech-bg);
  isolation: isolate;
}

.visual-frame img {
  width: 100%;
  height: auto;
  opacity: .82;
  filter: saturate(1.08) brightness(.84) contrast(1.1);
  mix-blend-mode: lighten;
  -webkit-mask-image:
    linear-gradient(90deg, rgba(0,0,0,.12), #000 15%, #000 85%, rgba(0,0,0,.12)),
    linear-gradient(180deg, rgba(0,0,0,.1), #000 18%, #000 82%, rgba(0,0,0,.12));
  mask-image:
    linear-gradient(90deg, rgba(0,0,0,.12), #000 15%, #000 85%, rgba(0,0,0,.12)),
    linear-gradient(180deg, rgba(0,0,0,.1), #000 18%, #000 82%, rgba(0,0,0,.12));
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 52% 45%, transparent 20%, rgba(4, 27, 56, .08) 52%, rgba(4, 27, 56, .62) 100%),
    linear-gradient(90deg, rgba(4, 27, 56, .6), transparent 25%, transparent 75%, rgba(4, 27, 56, .54));
}

.visual-frame.compact {
  max-width: 980px;
}

.service-flow-graphic {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 28px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 18%, rgba(18, 107, 211, .12), transparent 30%),
    linear-gradient(180deg, #fff, #f5f9ff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.flow-node {
  min-height: 184px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(18, 107, 211, .18);
  box-shadow: 0 10px 28px rgba(6, 34, 71, .05);
}

.flow-node i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-650);
  font-style: normal;
  font-weight: 900;
}

.flow-node strong {
  color: var(--blue-950);
  font-size: 20px;
}

.flow-node span {
  color: var(--muted);
  font-size: 14px;
}

.flow-arrow {
  height: 3px;
  background: linear-gradient(90deg, var(--blue-650), rgba(18, 107, 211, .15));
  position: relative;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-left: 9px solid var(--blue-650);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.mode-card,
.biz-card,
.package,
.case-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,253,255,.98));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(6, 34, 71, .055);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.mode-card:hover,
.biz-card:hover,
.package:hover,
.case-card:hover,
.brand-group:hover,
.tech-card:hover,
.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 107, 211, .32);
  box-shadow: 0 18px 46px rgba(6, 34, 71, .1);
}

.drill-mode-grid .mode-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  isolation: isolate;
}

.drill-mode-grid .mode-card > * {
  position: relative;
  z-index: 1;
}

.drill-mode-grid .mode-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -20px;
  bottom: -22px;
  width: 154px;
  height: 154px;
  background: var(--drill-watermark) center / contain no-repeat;
  opacity: .085;
  pointer-events: none;
  transform: rotate(-4deg);
  transition: opacity .25s ease, transform .25s ease;
}

.drill-mode-grid .mode-card:hover::after {
  opacity: .12;
  transform: rotate(0deg) scale(1.03);
}

.drill-mode-task {
  --drill-watermark: url("drill-watermark-task.svg");
}

.drill-mode-policy {
  --drill-watermark: url("drill-watermark-policy.svg");
}

.drill-mode-restore {
  --drill-watermark: url("drill-watermark-restore.svg");
}

.drill-mode-report {
  --drill-watermark: url("drill-watermark-report.svg");
}

.num {
  display: block;
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 1;
  color: var(--blue-650);
  font-weight: 900;
  font-style: italic;
}

.solutions-overview-grid .mode-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  isolation: isolate;
}

.solution-mode-head {
  display: block;
  margin-bottom: 18px;
}

.solution-mode-head .num {
  position: relative;
  z-index: 1;
  margin: 4px 0 0;
}

.solution-mode-icon {
  position: absolute;
  z-index: 0;
  right: -24px;
  bottom: -28px;
  width: 174px;
  height: 174px;
  display: grid;
  place-items: center;
  border: 0;
  background: none;
  box-shadow: none;
  opacity: .075;
  pointer-events: none;
  transform: rotate(-4deg);
  transition: opacity .25s ease, transform .25s ease;
}

.solution-mode-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solutions-overview-grid .mode-card > h3,
.solutions-overview-grid .mode-card > p {
  position: relative;
  z-index: 1;
}

.solutions-overview-grid .mode-card:hover .solution-mode-icon {
  opacity: .115;
  transform: rotate(0deg) scale(1.035);
}

.motion-ready .solutions-overview-grid .mode-card {
  opacity: 0;
  translate: 0 22px;
}

.motion-ready .solutions-overview-grid.is-revealed .mode-card {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity .58s cubic-bezier(.2, .75, .2, 1),
    translate .58s cubic-bezier(.2, .75, .2, 1),
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
  transition-delay: calc(var(--card-index) * 90ms + 100ms);
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .solutions-overview-grid .mode-card {
    opacity: 1;
    translate: none;
    transition: none;
  }
}

.mode-card h3,
.biz-card h3,
.package h3,
.case-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  color: var(--blue-950);
}

.mode-card p,
.biz-card p,
.package p,
.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.biz-card {
  min-height: 206px;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.brand-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 5px;
  background: var(--blue-100);
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 700;
}

.brand-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 30px 0 0;
}

.brand-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(6, 34, 71, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.brand-group h3 {
  margin: 0 0 14px;
  color: var(--blue-950);
  font-size: 18px;
}

.brand-logo-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.brand-logo-card {
  min-height: 74px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 2px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff, var(--blue-50));
  color: var(--blue-950);
  text-align: center;
  font-weight: 900;
  line-height: 1.25;
}

.brand-logo-card img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  grid-row: 1 / 3;
  justify-self: center;
}

.brand-logo-card.logo-only {
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 104px;
  padding: 12px 10px;
}

.brand-logo-card.logo-only img {
  width: 84px;
  height: 64px;
  max-width: 80%;
  grid-column: 1;
  grid-row: auto;
}

.brand-logo-card.logo-with-name span {
  margin-top: 2px;
  font-size: 14px;
}

.brand-logo-card.logo-text-only {
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 104px;
  padding: 12px;
}

.brand-logo-card.logo-text-only span {
  font-family: Arial, sans-serif;
  font-size: 20px;
  letter-spacing: .01em;
}

.brand-logo-card span {
  display: block;
  min-width: 0;
  color: var(--blue-950);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  word-break: keep-all;
}

.brand-logo-card.brand-generic {
  grid-template-columns: 1fr;
}

.brand-logo-card.brand-generic::before {
  content: "";
  width: 28px;
  height: 28px;
  margin: 0 auto 4px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.65), transparent 30%),
    linear-gradient(135deg, var(--blue-650), var(--blue-900));
}

.brand-logo-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.systems-logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.logo-group {
  padding: 22px;
  border: 1px solid rgba(219, 230, 243, .9);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 8%, rgba(18, 107, 211, .08), transparent 32%),
    linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 12px 32px rgba(6, 34, 71, .055);
}

.logo-group h3 {
  margin: 0 0 16px;
  color: var(--blue-950);
  font-size: 18px;
}

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

.logo-card {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(219, 230, 243, .95);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-950);
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  box-shadow: 0 8px 20px rgba(6, 34, 71, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.logo-card img {
  display: block;
  width: 100%;
  max-width: 120px;
  max-height: 38px;
  object-fit: contain;
}

.logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 107, 211, .35);
  box-shadow: 0 16px 34px rgba(6, 34, 71, .1);
}

.logo-oracle,
.logo-huawei {
  color: #d91f26;
  font-family: Arial, sans-serif;
  letter-spacing: .04em;
}

.logo-sql,
.logo-windows,
.logo-dassault,
.logo-siemens {
  color: #1167c6;
  font-family: "Segoe UI", Arial, sans-serif;
}

.logo-mysql,
.logo-truenas,
.logo-zstack {
  color: #0a5f91;
}

.logo-vmware,
.logo-proxmox {
  color: #5a6778;
  font-family: Arial, sans-serif;
}

.logo-yonyou,
.logo-kingdee,
.logo-digiwin,
.logo-weaver,
.logo-dameng,
.logo-kingbase,
.logo-sangfor,
.logo-h3c,
.logo-synology,
.logo-uos,
.logo-kylin,
.logo-tongweb,
.logo-bes,
.logo-gauss {
  color: var(--blue-900);
}

.logo-object,
.logo-archive,
.logo-his,
.logo-pacs,
.logo-mes,
.logo-plm,
.logo-audit,
.logo-gov {
  color: #16324f;
  background: linear-gradient(180deg, #fff, #f3f8ff);
}

.system-note {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding: 22px 26px;
  border-radius: 10px;
  color: #fff;
  background: var(--tech-bg);
  box-shadow: var(--shadow);
}

.system-note strong {
  flex: 0 0 auto;
  font-size: 19px;
}

.system-note span {
  color: rgba(255, 255, 255, .78);
}

.solution-showcase {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.protection-chain-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #fff 42%, #f1f7ff 100%);
}

.protection-chain-panel h3,
.protection-chain-panel ul {
  position: relative;
  z-index: 1;
}

.protection-chain-watermark {
  position: absolute;
  right: 10px;
  bottom: -24px;
  width: 220px;
  height: 220px;
  object-fit: contain;
  opacity: .1;
  filter: saturate(.7);
  pointer-events: none;
  user-select: none;
}

.ransom-visual {
  position: relative;
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(18, 107, 211, .16), transparent 36%);
  box-shadow: none;
  border: 0;
}

.ransom-visual::before,
.ransom-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(18, 107, 211, .22);
}

.ransom-visual::before {
  width: 310px;
  height: 310px;
}

.ransom-visual::after {
  width: 420px;
  height: 420px;
  border-style: dashed;
}

.ransom-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 20px;
  border: 4px solid rgba(232, 41, 47, .82);
  background:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,.95), transparent 34%),
    linear-gradient(145deg, #fff, #dceeff);
  color: var(--blue-950);
  font-weight: 900;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
}

.ransom-core::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px solid rgba(232, 41, 47, .16);
  box-shadow: 0 0 0 18px rgba(232, 41, 47, .035);
}

.fortress-shield {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 104px;
  display: block;
  background: url("fortress-shield.svg") center / contain no-repeat;
  filter: drop-shadow(0 10px 18px rgba(6, 34, 71, .18));
}

.ransom-core-fortress {
  padding: 12px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, .98), transparent 36%),
    linear-gradient(145deg, #fff, #dceeff);
}

.ransomware-fortress {
  width: 122px;
  height: 122px;
  filter: drop-shadow(0 14px 24px rgba(6, 34, 71, .22));
}

.ransom-node {
  position: absolute;
  z-index: 3;
  width: 132px;
  min-height: 72px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f5f9ff);
  border: 1px solid rgba(18, 107, 211, .22);
  color: var(--blue-950);
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 14px 30px rgba(6, 34, 71, .08);
}

.ransom-node small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.rn-1 { left: 28px; top: 34px; }
.rn-2 { right: 28px; top: 34px; }
.rn-3 { left: 28px; bottom: 34px; }
.rn-4 { right: 28px; bottom: 34px; }
.rn-5 { left: 50%; top: 22px; transform: translateX(-50%); }
.rn-6 { left: 50%; bottom: 22px; transform: translateX(-50%); }

.tech-chain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tech-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(6, 34, 71, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tech-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 19px;
}

.tech-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.capability-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 26px 18px;
  background: #fff;
  text-align: center;
}

.home-ecosystem .capability-item,
.about-value-section .capability-item {
  transition: background-color .3s ease, box-shadow .3s ease;
}

.home-ecosystem .capability-item::after,
.about-value-section .capability-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(78, 151, 239, .16) 48%, transparent 76%);
  transform: translateX(-120%);
  transition: transform .58s ease;
}

.capability-item strong {
  display: block;
  color: var(--blue-950);
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 8px;
}

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

.home-ecosystem .capability-item strong,
.home-ecosystem .capability-item span,
.about-value-section .capability-item strong,
.about-value-section .capability-item span {
  position: relative;
  z-index: 1;
  transition: transform .28s ease, color .28s ease;
}

@media (hover: hover) {
  .home-ecosystem .capability-item:hover {
    background: #f4f8ff;
    box-shadow: inset 0 -3px 0 var(--blue-650);
  }

  .about-value-section .capability-item:hover {
    background: #f4f8ff;
    box-shadow: inset 0 -3px 0 var(--red);
  }

  .home-ecosystem .capability-item:hover::after,
  .about-value-section .capability-item:hover::after {
    transform: translateX(120%);
  }

  .home-ecosystem .capability-item:hover strong,
  .about-value-section .capability-item:hover strong {
    transform: translateY(-3px) scale(1.06);
    color: var(--blue-650);
  }

  .home-ecosystem .capability-item:hover span,
  .about-value-section .capability-item:hover span {
    transform: translateY(2px);
    color: var(--blue-900);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pain-card,
  .pain-icon,
  .pain-card li,
  .home-ecosystem .capability-item,
  .home-ecosystem .capability-item::after,
  .home-ecosystem .capability-item strong,
  .home-ecosystem .capability-item span,
  .about-value-section .capability-item,
  .about-value-section .capability-item::after,
  .about-value-section .capability-item strong,
  .about-value-section .capability-item span {
    transition: none;
  }

  .pain-card:hover,
  .pain-card:hover .pain-icon,
  .pain-card:hover li,
  .home-ecosystem .capability-item:hover strong,
  .home-ecosystem .capability-item:hover span,
  .about-value-section .capability-item:hover strong,
  .about-value-section .capability-item:hover span {
    transform: none;
  }
}

.scenario-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.scenario-feature {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 78% 22%, rgba(42, 128, 255, .35), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
  box-shadow: var(--shadow);
}

.scenario-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(180, 217, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 217, 255, .06) 1px, transparent 1px);
  background-size: 38px 38px;
}

.scenario-feature h3,
.scenario-feature p,
.scenario-feature a {
  position: relative;
}

.scenario-feature h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.scenario-feature p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.78);
}

.scenario-feature a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 900;
  transition: transform .26s ease, background-color .26s ease, border-color .26s ease, box-shadow .26s ease;
}

.scenario-feature a::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
  transition: transform .26s ease;
}

@media (hover: hover) {
  .scenario-feature a:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .17);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  }

  .scenario-feature a:hover::after {
    transform: translateX(4px);
  }
}

.scenario-feature a:focus-visible {
  outline: 3px solid rgba(126, 193, 255, .82);
  outline-offset: 3px;
}

.scenario-feature a:active {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .scenario-feature a,
  .scenario-feature a::after {
    transition: none;
  }

  .scenario-feature a:hover,
  .scenario-feature a:hover::after,
  .scenario-feature a:active {
    transform: none;
  }
}

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

.fusion-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.fusion-card-head {
  min-height: 160px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(42, 128, 255, .36), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.fusion-card-head strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 18px;
  color: rgba(255,255,255,.38);
  font-style: italic;
}

.fusion-card-head h3 {
  margin: 0;
  font-size: 24px;
}

.fusion-card-body {
  position: relative;
  min-height: 298px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff, #fbfdff);
}

.fusion-card-body::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 118px;
  height: 118px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .38;
  pointer-events: none;
}

.fusion-card:nth-child(1) .fusion-card-body::after {
  background-image: url("fusion-product-bg.svg");
}

.fusion-card:nth-child(2) .fusion-card-body::after {
  background-image: url("fusion-solution-bg.svg");
}

.fusion-card:nth-child(3) .fusion-card-body::after {
  background-image: url("fusion-service-bg.svg");
}

.fusion-card-body p,
.fusion-card-body ul {
  position: relative;
  z-index: 1;
}

.fusion-card-body p {
  margin: 0 0 18px;
  color: var(--muted);
}

.fusion-card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fusion-card-body li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0;
  color: #334762;
  font-size: 15px;
}

.fusion-card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 8px;
  height: 2px;
  background: var(--red);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.local-service-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  isolation: isolate;
}

.service-spine {
  position: absolute;
  z-index: 0;
  left: 5.5%;
  right: 5.5%;
  top: 57px;
  height: 3px;
  border-radius: 999px;
  background: rgba(183, 214, 248, .28);
}

.service-spine::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #6eb7ff, #fff 48%, #ff6670);
  box-shadow: 0 0 18px rgba(101, 177, 255, .58);
  transform: scaleX(0);
  transform-origin: left center;
}

.service-spine::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(237, 31, 42, .16), 0 0 24px rgba(255, 255, 255, .78);
  opacity: 0;
  transform: translate(-50%, -50%);
}

.service-step {
  position: relative;
  z-index: 1;
  min-height: 198px;
  padding: 21px 15px 18px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 78% 18%, rgba(92, 181, 255, .18), transparent 34%),
    rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 18px 38px rgba(0, 13, 39, .16);
  transition: transform .28s ease, border-color .28s ease, background-color .28s ease, box-shadow .28s ease;
}

.service-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .42);
  background-color: rgba(255, 255, 255, .14);
  box-shadow: 0 24px 46px rgba(0, 13, 39, .28);
}

.service-step-visual {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 0 18px;
  border: 1px solid rgba(174, 211, 250, .9);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #e6f2ff);
  box-shadow: 0 14px 30px rgba(0, 10, 32, .25), inset 0 1px 0 #fff;
}

.service-step-visual::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(21, 93, 170, .12);
  border-radius: 12px;
}

.service-step-visual img {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(18%) sepia(61%) saturate(1533%) hue-rotate(185deg) brightness(87%) contrast(101%);
}

.service-step-number {
  position: absolute;
  z-index: 3;
  top: -9px;
  right: -9px;
  width: 29px;
  height: 29px;
  display: grid !important;
  place-items: center;
  border: 3px solid #163c72;
  border-radius: 50%;
  color: #fff !important;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(237, 31, 42, .34);
  font-size: 13px !important;
  font-weight: 800;
  line-height: 1;
}

.service-step strong,
.service-step span {
  display: block;
}

.service-step strong {
  margin-bottom: 8px;
}

.service-step span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.motion-ready .local-service-map .service-step {
  opacity: 0;
  transform: translateY(24px);
}

.motion-ready .local-service-map.is-animated .service-step {
  animation: service-step-reveal .62s cubic-bezier(.2, .75, .2, 1) forwards;
  animation-delay: calc(var(--step-index) * 110ms + 180ms);
}

.local-service-map.is-animated .service-spine::after {
  animation: service-line-draw 1.15s cubic-bezier(.2, .75, .2, 1) forwards;
}

.local-service-map.is-animated .service-spine::before {
  animation: service-pulse-travel 5.8s ease-in-out 1.25s infinite;
}

@keyframes service-step-reveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes service-line-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes service-pulse-travel {
  0% { left: 0; opacity: 0; }
  8%, 92% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .local-service-map .service-step {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .local-service-map .service-spine::after {
    transform: scaleX(1);
    animation: none;
  }

  .local-service-map .service-spine::before {
    display: none;
  }
}

.step {
  position: relative;
  min-height: 126px;
  padding: 22px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
}

.step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.step span {
  display: block;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}

.ransomware-workflow {
  position: relative;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  isolation: isolate;
}

.ransomware-workflow::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 35px;
  left: 6%;
  right: 6%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e8212d 0%, #5d9ee6 24%, #126bd3 72%, #0b386d 100%);
  box-shadow: 0 0 18px rgba(18, 107, 211, .2);
}

.ransom-response-step {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.ransom-response-visual {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid #c7dcf5;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #eaf4ff);
  box-shadow: 0 14px 30px rgba(6, 34, 71, .13), inset 0 1px 0 #fff;
}

.ransom-response-visual img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ransom-response-visual > span {
  position: absolute;
  z-index: 2;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 3px solid #edf5ff;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 16px rgba(232, 33, 45, .28);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.ransom-response-body {
  min-height: 136px;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 28px rgba(6, 34, 71, .05);
  text-align: center;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.ransom-response-step:hover .ransom-response-body {
  transform: translateY(-4px);
  border-color: rgba(18, 107, 211, .32);
  box-shadow: 0 16px 36px rgba(6, 34, 71, .09);
}

.ransom-response-body strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 15px;
}

.ransom-response-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .ransomware-workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ransomware-workflow::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .ransomware-workflow {
    grid-template-columns: 1fr;
  }

  .ransom-response-step {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }

  .ransom-response-visual {
    width: 60px;
    height: 60px;
    margin: 0;
    border-radius: 16px;
  }

  .ransom-response-visual img {
    width: 34px;
    height: 34px;
  }

  .ransom-response-visual > span {
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .ransom-response-body {
    min-height: 0;
    padding: 16px;
    text-align: left;
  }
}

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

.package-top {
  margin: -26px -26px 22px;
  padding: 22px 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  border-radius: 8px 8px 0 0;
}

.package-top h3 {
  color: #fff;
  margin: 0 0 6px;
}

.package-top span {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}

.cta-band {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.2;
}

.cta-band p {
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, .96);
  color: var(--text);
  font: inherit;
  font-size: 14px;
}

.form textarea,
.form button {
  grid-column: 1 / -1;
}

.form button {
  border: 0;
  cursor: pointer;
}

.contact-shell {
  display: grid;
  gap: 28px;
}

.contact-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: stretch;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 10%, rgba(18, 107, 211, .12), transparent 30%),
    linear-gradient(180deg, #fff, #f5f9ff);
  box-shadow: 0 16px 42px rgba(6, 34, 71, .065);
}

.contact-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.contact-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.2;
  color: var(--blue-950);
}

.contact-intro p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.contact-phone-large {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  margin: 0;
  padding: 28px 32px;
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, .18), transparent 26%),
    linear-gradient(135deg, var(--red), #b91520);
  box-shadow: 0 24px 58px rgba(232, 41, 47, .28);
  overflow: hidden;
  isolation: isolate;
}

.contact-phone-large::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 190px;
  height: 190px;
  background: url("phone-watermark.svg") center / contain no-repeat;
  opacity: .18;
  z-index: -1;
}

.contact-phone-large span {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, .78);
}

.contact-phone-large {
  font-size: clamp(38px, 4vw, 50px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr);
  gap: 28px;
  align-items: stretch;
}

.contact-location-panel,
.contact-booking-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(6, 34, 71, .06);
}

.contact-location-panel {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
}

.contact-location-panel h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 24px;
}

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

.poc-invite {
  margin: 0 0 18px;
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid rgba(18, 107, 211, .18);
  background:
    radial-gradient(circle at 88% 20%, rgba(18, 107, 211, .1), transparent 28%),
    linear-gradient(180deg, #fff, #f5f9ff);
  box-shadow: 0 12px 32px rgba(6, 34, 71, .06);
}

.poc-invite strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 18px;
}

.poc-invite ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.poc-invite li {
  position: relative;
  padding-left: 22px;
  margin: 9px 0;
  color: #334762;
  font-size: 15px;
}

.poc-invite li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(232, 41, 47, .1);
}

.contact-card {
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(6, 34, 71, .05);
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-950);
  font-size: 17px;
}

.contact-card span {
  color: #334762;
}

.static-map {
  align-self: stretch;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(6, 34, 71, .08);
  background: #fff;
}

.static-map img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
}

.map-credit {
  display: block;
  margin-top: -10px;
  color: #8190a4;
  font-size: 10px;
  line-height: 1.4;
  text-align: right;
}

.contact-form {
  background: var(--blue-950);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 18px 44px rgba(6, 34, 71, .18);
}

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

.cert-card {
  padding: 26px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(6, 34, 71, .055);
}

.about-cert-grid .cert-card {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  isolation: isolate;
}

.about-cert-grid .cert-card > * {
  position: relative;
  z-index: 1;
}

.about-cert-grid .cert-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -18px;
  bottom: -24px;
  width: 146px;
  height: 146px;
  background: var(--cert-watermark) center / contain no-repeat;
  opacity: .075;
  pointer-events: none;
  transform: rotate(-3deg);
  transition: opacity .25s ease, transform .25s ease;
}

.about-cert-grid .cert-card:hover::after {
  opacity: .115;
  transform: rotate(0deg) scale(1.03);
}

.cert-info-security {
  --cert-watermark: url("cert-watermark-info-security.svg");
}

.cert-privacy-security {
  --cert-watermark: url("cert-watermark-privacy.svg");
}

.cert-storage-security {
  --cert-watermark: url("cert-watermark-storage.svg");
}

.cert-maturity {
  --cert-watermark: url("cert-watermark-maturity.svg");
}

.cert-security-officer {
  --cert-watermark: url("cert-watermark-officer.svg");
}

.cert-security-auditor {
  --cert-watermark: url("cert-watermark-auditor.svg");
}

.cert-card > strong {
  display: inline-flex;
  min-width: 56px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue-650);
  font-weight: 900;
}

.cert-card h3,
.reason-card h3 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 20px;
}

.cert-card p,
.reason-card p {
  margin: 0;
  color: var(--muted);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.reason-card {
  padding: 26px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f6faff);
  box-shadow: 0 12px 32px rgba(6, 34, 71, .055);
}

.reason-card i {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-650);
  font-size: 34px;
  line-height: 1;
  font-style: italic;
  font-weight: 900;
}

.system-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.system-legend div {
  padding: 22px;
  border-radius: 10px;
  color: #fff;
  background: var(--tech-bg);
  box-shadow: var(--shadow);
}

.system-legend strong,
.system-legend span {
  display: block;
}

.system-legend strong {
  margin-bottom: 6px;
  font-size: 20px;
}

.system-legend span {
  color: rgba(255,255,255,.76);
}

.page-hero {
  position: relative;
  min-height: 408px;
  padding: 54px 0;
  --banner-base: #000821;
  color: #fff;
  background:
    radial-gradient(ellipse 42% 82% at 78% 50%, rgba(74, 105, 153, .09), transparent 72%),
    linear-gradient(112deg, #04172f 0%, #02102a 40%, var(--banner-base) 68%, var(--banner-base) 100%);
  overflow: hidden;
  isolation: isolate;
}

.page-hero:has(img[src*="hero-service-2026-v6"]) { --banner-base: #010721; }
.page-hero:has(img[src*="hero-systems-2026-v6"]) { --banner-base: #000620; }
.page-hero:has(img[src*="hero-solutions-2026-v6"]) { --banner-base: #00051c; }
.page-hero:has(img[src*="hero-ransomware-2026-v6"]) { --banner-base: #01031a; }
.page-hero:has(img[src*="hero-drill-2026-v6"]) { --banner-base: #000721; }
.page-hero:has(img[src*="hero-faq-2026-v6"]) { --banner-base: #01041a; }
.page-hero:has(img[src*="hero-about-2026-v6"]) { --banner-base: #00061f; }
.page-hero:has(img[src*="hero-contact-2026-v6"]) { --banner-base: #00041b; }

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 300px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.15;
  white-space: nowrap;
}

.page-hero p {
  max-width: 850px;
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, .84);
}

.page-hero .brand-origin {
  display: inline-block;
  max-width: none;
  margin: 0 0 14px;
  padding-left: 12px;
  border-left: 3px solid var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
}

.systems-page .page-hero p {
  margin-bottom: 30px;
  line-height: 1.8;
}

.page-hero-visual {
  position: relative;
  height: 300px;
  display: grid;
  place-items: center;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: transparent;
  transform: translateX(14px);
  isolation: isolate;
}

.page-hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.page-hero-visual::after {
  display: none;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(6, 34, 71, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.section-split-visual {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.section-split-visual.reverse {
  grid-template-columns: 1.05fr .95fr;
}

.section-split-visual .visual-frame {
  margin: 0;
}

.solution-band {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff, #f5f9ff);
  box-shadow: var(--shadow);
}

.solution-band-head {
  padding: 28px 32px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(18, 107, 211, .4), transparent 26%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.solution-band-head h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.solution-band-head p {
  margin: 0;
  color: rgba(255,255,255,.78);
}

.solution-band-body {
  padding: 28px 32px;
}

.faq-item h3 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 19px;
  line-height: 1.42;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.faq-hub {
  max-width: 1080px;
}

.faq-category-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f1f6fc;
}

.faq-category-tabs button {
  min-height: 46px;
  padding: 10px 14px;
  border: 0;
  border-radius: 6px;
  color: #405773;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.faq-category-tabs button:hover {
  color: var(--blue-900);
  background: rgba(255, 255, 255, .72);
}

.faq-category-tabs button.is-active {
  color: #fff;
  background: var(--blue-650);
  box-shadow: 0 10px 22px rgba(18, 107, 211, .2);
}

.faq-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 28px 0 14px;
}

.faq-category-head h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 27px;
}

.faq-category-head span {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--blue-650);
  background: #eaf3ff;
  font-size: 13px;
  font-weight: 800;
}

.faq-accordion {
  display: grid;
  gap: 10px;
}

.faq-disclosure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(6, 34, 71, .045);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-disclosure.is-animating {
  will-change: height;
}

.faq-disclosure:hover,
.faq-disclosure[open] {
  border-color: rgba(18, 107, 211, .34);
  box-shadow: 0 14px 34px rgba(6, 34, 71, .075);
}

.faq-disclosure summary {
  position: relative;
  padding: 19px 62px 19px 22px;
  color: var(--blue-950);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  list-style: none;
  cursor: pointer;
  transition: color .28s ease, background-color .28s ease;
}

.faq-disclosure summary:hover,
.faq-disclosure[open] summary {
  color: var(--blue-900);
  background: #f7fbff;
}

.faq-disclosure summary:focus-visible {
  outline: 3px solid rgba(18, 107, 211, .24);
  outline-offset: -3px;
}

.faq-disclosure summary::-webkit-details-marker {
  display: none;
}

.faq-disclosure summary::before,
.faq-disclosure summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-650);
  transform: translateY(-50%);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

.faq-disclosure summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-disclosure[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  padding: 0 62px 20px 22px;
  border-top: 1px solid #eef3f8;
  transform-origin: top;
}

.faq-answer p {
  max-width: 900px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

@media (prefers-reduced-motion: reduce) {
  .faq-disclosure,
  .faq-disclosure summary,
  .faq-disclosure summary::before,
  .faq-disclosure summary::after {
    transition: none;
  }
}

@media (max-width: 640px) {
  .faq-category-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .faq-category-tabs::-webkit-scrollbar {
    display: none;
  }

  .faq-category-tabs button {
    flex: 0 0 112px;
  }

  .faq-category-head h2 {
    font-size: 22px;
  }

  .faq-disclosure summary {
    padding: 17px 52px 17px 18px;
    font-size: 16px;
  }

  .faq-disclosure summary::before,
  .faq-disclosure summary::after {
    right: 19px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }
}

.systems-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.systems-intro-copy h2 {
  margin: 0 0 18px;
  color: var(--blue-950);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.22;
}

.systems-intro-lead {
  margin: 0 0 22px;
  color: #405773;
  font-size: 17px;
  line-height: 1.8;
}

.systems-intro-visual {
  position: relative;
  overflow: visible;
  min-height: 360px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.systems-intro-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% -4% 12% 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 72% 50%, rgba(9, 35, 64, .065), rgba(9, 35, 64, .025) 38%, transparent 74%);
}

.systems-intro-visual img {
  display: block;
  width: calc(100% + 26px);
  margin-left: -13px;
  height: auto;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 13%, #000 88%, transparent 100%);
}

.system-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.system-tier-card {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--tier-color);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 12px 32px rgba(6, 34, 71, .055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.system-tier-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 148px;
  height: 148px;
  border: 25px solid color-mix(in srgb, var(--tier-color) 8%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.system-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(6, 34, 71, .1);
}

.system-tier-index {
  display: block;
  margin-bottom: 28px;
  color: var(--tier-color);
  font-size: 38px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.system-tier-card h3 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 21px;
}

.system-tier-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.system-tier-card strong,
.system-tier-card > span:last-child {
  position: relative;
  z-index: 1;
  display: block;
}

.system-tier-card strong {
  margin-bottom: 5px;
  color: var(--blue-900);
  font-size: 14px;
}

.system-tier-card > span:last-child {
  color: #405773;
  font-size: 14px;
  line-height: 1.65;
}

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

.systems-scene-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 12px 32px rgba(6, 34, 71, .055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.systems-scene-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 107, 211, .32);
  box-shadow: 0 20px 46px rgba(6, 34, 71, .1);
}

.systems-scene-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 107, 211, .18);
  border-radius: 8px;
  background: #edf5ff;
}

.systems-scene-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.systems-scene-card h3 {
  margin: 2px 0 9px;
  color: var(--blue-950);
  font-size: 20px;
  line-height: 1.35;
}

.systems-scene-card p {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 14px;
}

.systems-scene-card span {
  display: block;
  color: #405773;
  font-size: 14px;
  line-height: 1.65;
}

.systems-scene-card span strong {
  color: var(--blue-900);
}

.industry-scenario-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}

.industry-scenario-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 26px;
  border-left: 3px solid var(--blue-650);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 28px rgba(6, 34, 71, .045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.industry-scenario-list article:hover {
  transform: translateX(4px);
  border-color: var(--red);
  box-shadow: 0 16px 36px rgba(6, 34, 71, .08);
}

.industry-scenario-list article > span {
  color: var(--blue-650);
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.industry-scenario-list h3 {
  margin: 0 0 8px;
  color: var(--blue-950);
  font-size: 20px;
}

.industry-scenario-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.systems-comparison {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}

.systems-comparison-copy {
  display: grid;
  gap: 18px;
}

.systems-comparison-copy .panel {
  padding: 28px 30px;
}

.systems-comparison-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8f8f8, #eef1f4);
  border: 1px solid var(--line);
}

.systems-comparison-visual img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: contain;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 76% 76% at 50% 50%, #000 64%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 76% at 50% 50%, #000 64%, transparent 100%);
}

.systems-case-grid .case-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
}

.systems-case-grid .case-card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 126px;
  height: 126px;
  border: 22px solid rgba(18, 107, 211, .05);
  border-radius: 50%;
}

.case-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 30px;
  color: var(--blue-650);
  font-size: 34px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.systems-case-grid h3,
.systems-case-grid p {
  position: relative;
  z-index: 1;
}

.systems-faq {
  max-width: 980px;
}

.motion-ready .systems-reveal-grid > * {
  opacity: 0;
  translate: 0 22px;
}

.motion-ready .systems-reveal-grid.is-revealed > * {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity .58s cubic-bezier(.2, .75, .2, 1),
    translate .58s cubic-bezier(.2, .75, .2, 1),
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
  transition-delay: calc(var(--card-index) * 85ms + 80ms);
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .systems-reveal-grid > * {
    opacity: 1;
    translate: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .systems-intro,
  .systems-comparison {
    grid-template-columns: 1fr;
  }

  .system-tier-grid,
  .systems-scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .systems-intro-visual,
  .systems-comparison-visual {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .system-tier-grid,
  .systems-scene-grid,
  .industry-scenario-list {
    grid-template-columns: 1fr;
  }

  .systems-intro {
    gap: 28px;
  }

  .systems-intro-visual,
  .systems-comparison-visual {
    min-height: 250px;
  }

  .system-tier-card,
  .systems-scene-card {
    min-height: auto;
  }

  .systems-scene-card {
    grid-template-columns: 56px 1fr;
    gap: 14px;
    padding: 22px;
  }

  .systems-scene-icon {
    width: 56px;
    height: 56px;
  }

  .systems-scene-icon img {
    width: 34px;
    height: 34px;
  }

  .industry-scenario-list article {
    grid-template-columns: 48px 1fr;
    padding: 21px;
  }
}

.footer {
  padding: 46px 0;
  background: #041a36;
  color: rgba(255, 255, 255, .72);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.footer a {
  color: rgba(255, 255, 255, .78);
}

.footer-contact {
  display: grid;
  gap: 6px;
  min-width: min(420px, 100%);
  text-align: right;
}

.footer-contact strong {
  margin-bottom: 0;
}

.footer-contact a {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.footer-contact span {
  font-size: 14px;
}

@media (max-width: 980px) {
  .nav {
    height: auto;
    padding: 15px 0;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .split,
  .contact-top,
  .contact-main-grid,
  .cta-band,
  .solution-showcase,
  .section-split-visual,
  .section-split-visual.reverse,
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 0;
    padding: 58px 0 44px;
  }

  .page-hero-visual {
    height: 280px;
    transform: none;
  }

  .architecture {
    min-height: 360px;
  }

  .mode-grid,
  .solutions-page .mode-grid,
  .biz-grid,
  .brand-wall,
  .systems-logo-wall,
  .pain-visual-grid,
  .service-flow-graphic,
  .local-service-map,
  .cert-grid,
  .reason-grid,
  .system-legend,
  .tech-chain,
  .capability-strip,
  .scenario-row,
  .fusion-grid,
  .packages,
  .case-grid,
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-bridge,
  .flow-arrow,
  .service-spine {
    display: none;
  }

  .drill-panel {
    grid-template-columns: 1fr 120px;
  }

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

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

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 92px;
    max-height: 42px;
  }

  .brand-name {
    display: none;
  }

  .phone {
    padding: 0 12px;
    font-size: 12px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(29px, 8vw, 34px);
  }

  .page-hero h1.page-title-long {
    font-size: clamp(22px, 7vw, 34px);
  }

  .hero-inner {
    min-height: auto;
    padding: 54px 0;
  }

  .page-hero {
    padding: 44px 0 30px;
  }

  .page-hero-visual {
    height: 220px;
    margin-top: 4px;
  }

  .hero-proof,
  .mode-grid,
  .solutions-page .mode-grid,
  .biz-grid,
  .brand-wall,
  .systems-logo-wall,
  .pain-visual-grid,
  .service-flow-graphic,
  .local-service-map,
  .cert-grid,
  .reason-grid,
  .system-legend,
  .tech-chain,
  .capability-strip,
  .scenario-row,
  .fusion-grid,
  .packages,
  .case-grid,
  .faq-list,
  .workflow,
  .form {
    grid-template-columns: 1fr;
  }

  .contact-top {
    padding: 24px;
  }

  .contact-location-panel,
  .contact-booking-panel {
    padding: 22px;
  }

  .contact-phone-large {
    min-height: 150px;
    padding: 24px;
    font-size: clamp(34px, 8vw, 48px);
  }

  .drill-panel {
    grid-template-columns: 1fr;
  }

  .drill-figure {
    min-height: 132px;
  }

  .system-note {
    display: block;
  }

  .system-note span {
    display: block;
    margin-top: 8px;
  }

  .node {
    position: static;
    width: auto;
    margin: 8px 0;
  }

  .orbit {
    width: 100%;
    border-radius: 8px;
    padding: 18px;
    aspect-ratio: auto;
  }

  .core {
    position: static;
    min-height: 130px;
    margin-bottom: 14px;
  }

  .section {
    padding: 58px 0;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-contact {
    text-align: left;
  }
}

/* Full-bleed banner treatment: the generated scene is the banner background, not a floating card. */
.hero,
.page-hero {
  --banner-overlay: linear-gradient(90deg, rgba(0, 7, 26, .98) 0%, rgba(0, 7, 26, .88) 29%, rgba(0, 7, 26, .18) 66%, rgba(0, 7, 26, .72) 100%), linear-gradient(180deg, rgba(0, 7, 26, .52) 0%, rgba(0, 7, 26, 0) 18%, rgba(0, 7, 26, 0) 82%, rgba(0, 7, 26, .38) 100%);
  background-size: 100% 100%, 100% 100%, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
}

.hero:has(img[src*="hero-home-2026-v6"]) {
  background-image: var(--banner-overlay), url("hero-home-2026-v6.png");
}
.page-hero:has(img[src*="hero-service-2026-v6"]) {
  background-image: var(--banner-overlay), url("hero-service-2026-v6.png");
}
.page-hero:has(img[src*="hero-systems-2026-v6"]) {
  background-image: var(--banner-overlay), url("hero-systems-2026-v6.png");
}
.page-hero:has(img[src*="hero-solutions-2026-v6"]) {
  background-image: var(--banner-overlay), url("hero-solutions-2026-v6.png");
}
.page-hero:has(img[src*="hero-ransomware-2026-v6"]) {
  background-image: var(--banner-overlay), url("hero-ransomware-2026-v6.png");
}
.page-hero:has(img[src*="hero-drill-2026-v6"]) {
  background-image: var(--banner-overlay), url("hero-drill-2026-v6.png");
}
.page-hero:has(img[src*="hero-faq-2026-v6"]) {
  background-image: var(--banner-overlay), url("hero-faq-2026-v6.png");
}
.page-hero:has(img[src*="hero-about-2026-v6"]) {
  background-image: var(--banner-overlay), url("hero-about-2026-v6.png");
}
.page-hero:has(img[src*="hero-contact-2026-v6"]) {
  background-image: var(--banner-overlay), url("hero-contact-2026-v6.png");
}

.hero-visual,
.page-hero-visual {
  opacity: 0;
  pointer-events: none;
}

/* Keep the desktop banner rhythm consistent and bring the background scene closer to the copy. */
.hero,
.page-hero {
  height: auto;
  min-height: 440px;
  padding: 56px 0;
  background-position: center, center, center;
}

.hero-inner,
.page-hero-inner {
  height: auto;
  min-height: 328px;
}

@media (max-width: 980px) {
  .hero,
  .page-hero {
    height: auto;
    min-height: 0;
    padding: 58px 0 44px;
  }

  .hero-inner,
  .page-hero-inner {
    height: auto;
    min-height: 0;
  }
}
