:root {
  --bg: #f3f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --line: #d7e2f1;
  --text: #1c2a43;
  --muted: #5f6f8d;
  --primary: #0f4d8a;
  --primary-strong: #083869;
  --secondary: #1993b8;
  --radius: 16px;
  --shadow: 0 14px 36px rgba(15, 58, 109, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
}

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

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

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

.brand img {
  width: 48px;
  height: 48px;
  padding: 4px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}

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

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  transition: all 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: #1993b8;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary);
  font-size: 14px;
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.page-wrap {
  min-height: 40vh;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 85% -20%, rgba(73, 182, 232, 0.4) 0%, rgba(73, 182, 232, 0) 40%),
    linear-gradient(132deg, #0a2f5f 0%, #0f4d8a 52%, #1993b8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 22px;
  padding: 86px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.16);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.25;
}

.hero p {
  margin: 0;
  color: rgba(245, 249, 255, 0.9);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid transparent;
}

.btn-primary {
  background: #fff;
  color: var(--primary-strong);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

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

.metric-item {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

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

.metric-item span {
  color: rgba(245, 249, 255, 0.9);
  font-size: 13px;
}

.section {
  padding: 56px 0;
}

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

.section-title h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.3;
}

.section-title p {
  margin: 0;
  color: #000;
  max-width: 620px;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
}

.card p {
  margin: 0;
  color: #222;
}

.badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--primary);
  background: #e8f3ff;
}

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

.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.step-card strong {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #fff;
  font-size: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cta-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #e8f3ff 0%, #f8fcff 100%);
  border: 1px solid var(--line);
}

.cta-box p {
  margin: 0;
  color: #375479;
}

.cta-box .contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #27466e;
}

.cta-box .contact-list li + li {
  margin-top: 6px;
}

.page-hero {
  color: #fff;
  background: linear-gradient(135deg, #0b2f5f 0%, #0f4d8a 65%, #1b87b3 100%);
}

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

.page-hero h1 {
  margin: 0;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.3;
}

.page-hero p {
  margin: 8px 0 0;
  color: rgba(245, 249, 255, 0.92);
}

.richtext {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.richtext p {
  margin: 0 0 14px;
}

.richtext p:last-child {
  margin-bottom: 0;
}

.richtext img {
  max-width: 100%;
  height: auto !important;
}

.richtext table {
  width: 100%;
  border-collapse: collapse;
}

.richtext table td,
.richtext table th {
  border: 1px solid var(--line);
  padding: 8px 10px;
}

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

.article-card,
.product-card,
.gallery-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-card .inner,
.product-card .inner,
.gallery-card .inner {
  padding: 18px;
}

.article-date,
.meta-line {
  margin: 0 0 8px;
  font-size: 12px;
  color: #6781a5;
}

.article-card h3,
.product-card h3,
.gallery-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.45;
}

.article-card p,
.product-card p,
.gallery-card p {
  margin: 0;
  color: var(--muted);
}

.thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe9f5;
}

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

.text-link {
  margin-top: 10px;
  color: var(--primary);
  font-weight: 600;
}

.pager {
  margin-top: 24px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pagination .active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.empty-state {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  color: var(--muted);
  background: var(--surface-soft);
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.detail-nav {
  display: grid;
  gap: 8px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.detail-nav a {
  color: var(--muted);
}

.detail-nav .back-link {
  color: var(--primary);
  font-weight: 600;
}

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

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

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

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

.contact-form {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

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

.form-item.full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #4d6387;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c9d9ef;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.captcha-wrap {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.captcha-wrap img {
  width: 126px;
  border-radius: 10px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.hint {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.data-table th {
  background: #f2f8ff;
  color: #315781;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.download-link {
  color: var(--primary);
  font-weight: 600;
}

.job-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0 18px;
  margin-bottom: 14px;
}

.job-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 600;
}

.job-item summary::-webkit-details-marker {
  display: none;
}

.job-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.job-body {
  padding: 0 0 18px;
  border-top: 1px solid var(--line);
}

.search-inline {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.search-inline input {
  flex: 1;
  min-width: 0;
  border: 1px solid #c9d9ef;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}

.site-footer {
  margin-top: 60px;
  color: #d9e7fa;
  background: linear-gradient(160deg, #091d39 0%, #0c2b56 70%, #0b3d70 100%);
}

.footer-top {
  padding: 42px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 10px;
  color: #fff;
}

.footer-grid p {
  margin: 0;
  color: #c3d5ee;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;
  color: #c3d5ee;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li + li {
  margin-top: 8px;
}

.footer-bottom {
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #9cb3d5;
  font-size: 13px;
}

.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 4vw;
    width: min(360px, 92vw);
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #fff;
    gap: 6px;
  }

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

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 8px;
  }

  .hero-grid,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .head-inner {
    min-height: 70px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand span {
    font-size: 11px;
  }

  .section {
    padding: 44px 0;
  }

  .card-grid,
  .list-grid,
  .contact-grid,
  .form-grid,
  .step-grid,
  .card-grid.cols-2,
  .card-grid.cols-4 {
    grid-template-columns: 1fr;
  }

  .search-inline {
    flex-direction: column;
  }

  .captcha-wrap {
    flex-direction: column;
  }

  .captcha-wrap img {
    width: 100%;
    max-width: 180px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .footer-top {
    padding-top: 34px;
  }
}

/* Homepage premium visual */
.hero-lux {
  isolation: isolate;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.5;
  animation: orb-float 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb.orb-a {
  width: 380px;
  height: 380px;
  left: -120px;
  top: -110px;
  background: radial-gradient(circle at 35% 35%, rgba(106, 213, 255, 0.85), rgba(106, 213, 255, 0));
}

.hero-orb.orb-b {
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -80px;
  animation-delay: 1.6s;
  background: radial-gradient(circle at 50% 50%, rgba(57, 152, 225, 0.7), rgba(57, 152, 225, 0));
}

@keyframes orb-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-grid.hero-grid-pro {
  grid-template-columns: 1.06fr 0.94fr;
  gap: 30px;
  padding: 98px 0 88px;
}

.hero-main > p {
  max-width: 690px;
}

.hero-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-feature-list span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(245, 249, 255, 0.98);
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.hero-visual-main {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 22px 48px rgba(6, 25, 49, 0.35);
}

.hero-visual-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 52, 0.04) 34%, rgba(7, 26, 52, 0.58) 100%);
}

.hero-visual-main img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-float {
  position: absolute;
  z-index: 2;
  min-width: 180px;
  max-width: 250px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(8, 27, 56, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 8px 20px rgba(5, 19, 39, 0.35);
}

.hero-float strong {
  display: block;
  font-size: 14px;
  line-height: 1.45;
}

.hero-float p {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(240, 247, 255, 0.88);
}

.hero-float-top {
  top: 20px;
  left: 20px;
}

.hero-float-bottom {
  right: 18px;
  bottom: 18px;
}

.hero-visual-sub {
  display: grid;
  grid-template-columns: 145px 1fr;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.hero-visual-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-sub p {
  margin: 0;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(245, 249, 255, 0.92);
}

.section-ticker {
  padding-top: 60px;
  padding-bottom: 24px;
}

.ticker-list {
  list-style: none;
  margin: -46px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ticker-list li {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.ticker-list strong {
  font-size: 14px;
  color: var(--primary);
}

.ticker-list span {
  color: #486182;
  font-size: 14px;
}

.section-image-split {
  padding-top: 32px;
}

.image-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.split-media {
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.split-content {
  min-width: 0;
}

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

.card.card-license {
  padding: 18px;
  border-left: 4px solid #0f4d8a;
  background: linear-gradient(150deg, #ffffff 0%, #f4f9ff 100%);
}

.section-soft {
  background: radial-gradient(circle at 13% 9%, #f0f7ff 0%, #f8fbff 34%, #f3f7fb 100%);
}

.premium-grid {
  gap: 14px;
}

.premium-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #ffffff 0%, #f6faff 100%);
}

.premium-card .premium-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.premium-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -38px;
  top: -42px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(26, 146, 198, 0.2), rgba(26, 146, 198, 0));
}

.premium-card .serial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--secondary));
}

.premium-card .mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #d4e3f5;
  background: linear-gradient(145deg, #ffffff 0%, #edf5ff 100%);
  box-shadow: 0 6px 14px rgba(14, 62, 117, 0.12);
}

.premium-card .mini-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.scene-showcase {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.scene-showcase img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.scene-overlay-box {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  max-width: 620px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 28, 59, 0.62);
  color: #fff;
}

.scene-overlay-box h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.4;
}

.scene-overlay-box p {
  margin: 0;
  color: rgba(235, 244, 255, 0.92);
}

.focus-grid .card {
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}

.focus-grid .card h3 {
  color: #195fb8;
}

.card,
.article-card,
.product-card,
.gallery-card,
.step-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover,
.article-card:hover,
.product-card:hover,
.gallery-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 44, 84, 0.18);
  border-color: #bfd1ea;
}

.step-card {
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 77, 138, 0.45), rgba(15, 77, 138, 0));
}

.step-grid .step-card:last-child::after {
  display: none;
}

.process-section {
  position: relative;
  color: #e9f4ff;
  background: linear-gradient(120deg, rgba(7, 28, 57, 0.92) 0%, rgba(10, 54, 94, 0.9) 60%, rgba(16, 97, 132, 0.86) 100%),
    url("../images/company-bg.jpg") center/cover no-repeat;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 24%, rgba(111, 215, 255, 0.22), rgba(111, 215, 255, 0) 45%);
  pointer-events: none;
}

.process-wrap {
  position: relative;
  z-index: 1;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(200, 229, 255, 0.22);
  background: rgba(6, 25, 52, 0.26);
  backdrop-filter: blur(2px);
}

.process-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}

.section-title.section-title-light h2 {
  color: #fff;
}

.section-title.section-title-light p {
  color: rgba(228, 241, 255, 0.92);
}

.process-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 30px rgba(5, 21, 42, 0.35);
}

.process-image img {
  width: 100%;
  height: 100%;
  min-height: 130px;
  object-fit: cover;
}

.step-grid.step-grid-pro .step-card {
  border: 1px solid rgba(206, 230, 255, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(207, 233, 255, 0.07) 100%);
  box-shadow: 0 14px 28px rgba(4, 17, 34, 0.26);
}

.step-grid.step-grid-pro .step-card h3 {
  color: #fff;
}

.step-grid.step-grid-pro .step-card p {
  color: rgba(231, 243, 255, 0.92);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.step-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(216, 236, 255, 0.5);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.3) 0%, rgba(178, 218, 255, 0.14) 100%);
}

.step-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.cta-box.cta-strong {
  color: #e8f3ff;
  border: 1px solid rgba(20, 118, 176, 0.5);
  background: linear-gradient(130deg, #0b2e5b 0%, #114777 46%, #1d719f 100%);
  box-shadow: 0 20px 42px rgba(12, 41, 79, 0.32);
}

.cta-box.cta-strong h2 {
  margin: 0 0 8px;
  color: #fff;
}

.cta-box.cta-strong p {
  color: rgba(233, 243, 255, 0.9);
}

.cta-box.cta-strong .contact-list {
  color: #f1f7ff;
}

.cta-box.cta-strong a {
  color: #fff;
}

@media (max-width: 960px) {
  .hero-grid.hero-grid-pro,
  .image-split,
  .hero-visual-sub {
    grid-template-columns: 1fr;
  }

  .hero-grid.hero-grid-pro {
    padding: 84px 0 70px;
  }

  .hero-visual-main img {
    min-height: 300px;
  }

  .ticker-list {
    margin-top: -34px;
  }

  .ticker-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .scene-overlay-box {
    left: 14px;
    right: 14px;
    bottom: 12px;
    padding: 12px 14px;
  }

  .scene-overlay-box h3 {
    font-size: 19px;
  }

  .step-card::after {
    display: none;
  }

  .process-wrap {
    padding: 18px;
  }

  .process-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .hero-grid.hero-grid-pro {
    padding: 72px 0 58px;
    gap: 18px;
  }

  .hero-feature-list span {
    font-size: 12px;
    padding: 5px 10px;
  }

  .premium-card .mini-icon {
    width: 38px;
    height: 38px;
  }

  .premium-card .mini-icon img {
    width: 20px;
    height: 20px;
  }

  .hero-float {
    min-width: 150px;
    max-width: 170px;
    padding: 9px 11px;
  }

  .hero-float strong {
    font-size: 13px;
  }

  .hero-float p {
    font-size: 11px;
  }

  .hero-float-top {
    top: 10px;
    left: 10px;
  }

  .hero-float-bottom {
    right: 10px;
    bottom: 10px;
  }

  .hero-visual-main img {
    min-height: 248px;
  }

  .hero-visual-sub p {
    font-size: 12px;
  }

  .ticker-list {
    margin-top: -28px;
  }

  .ticker-list li {
    padding: 12px 14px;
  }

  .scene-showcase img {
    height: 230px;
  }

  .scene-overlay-box h3 {
    font-size: 16px;
  }

  .step-icon {
    width: 34px;
    height: 34px;
  }

  .step-icon img {
    width: 18px;
    height: 18px;
  }
}

/* About page */
.about-page .section {
  position: relative;
}

.about-hero-pro {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 86% -8%, rgba(88, 198, 246, 0.4), rgba(88, 198, 246, 0)),
    linear-gradient(132deg, #08274f 0%, #0c4175 56%, #11618e 100%);
}

.about-hero-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background: url("../images/company-bg.jpg") center/cover no-repeat;
}

.about-hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 72px 0 66px;
}

.about-hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4.8vw, 44px);
  line-height: 1.2;
}

.about-hero-copy .lead {
  margin: 0;
  color: rgba(238, 247, 255, 0.94);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.about-badges span {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(245, 250, 255, 0.98);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.about-hero-collage {
  position: relative;
  min-height: 370px;
}

.about-hero-collage figure {
  margin: 0;
}

.about-hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-main {
  position: absolute;
  inset: 0 110px 0 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 42px rgba(4, 20, 42, 0.35);
}

.collage-sub {
  position: absolute;
  right: 0;
  width: 40%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 30px rgba(5, 22, 45, 0.3);
}

.collage-a {
  top: 0;
  height: 47%;
}

.collage-b {
  bottom: 0;
  height: 47%;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
  align-items: stretch;
}

.about-copy-card {
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.about-copy-card p {
  margin: 0 0 10px;
  color: #415a7f;
}

.about-copy-card p:last-child {
  margin-bottom: 0;
}

.about-side-stack {
  display: grid;
  gap: 12px;
}

.about-side-stack figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-side-stack img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.about-capability {
  background: radial-gradient(circle at 90% 8%, #e8f4ff 0%, #eef7ff 33%, #f3f7fb 100%);
}

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

.about-cap-main {
  grid-row: span 2;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #cfe1f4;
  background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
  box-shadow: var(--shadow);
}

.about-cap-main h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.about-cap-main p {
  margin: 0 0 12px;
  color: #496383;
}

.about-cap-main img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  border-radius: 14px;
}

.about-cap-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #d5e4f5;
  background: linear-gradient(150deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: var(--shadow);
}

.about-cap-card h3 {
  margin: 10px 0 6px;
  font-size: 18px;
}

.about-cap-card p {
  margin: 0;
  color: #4a6383;
}

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

.about-scene-item {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.about-scene-item.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}

.about-scene-item.reverse figure {
  order: 2;
}

.about-scene-item.reverse .scene-text {
  order: 1;
}

.about-scene-item figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
}

.about-scene-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.scene-text h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.scene-text p {
  margin: 0;
  color: #4c6688;
}

.about-richtext {
  background: linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
}

@media (max-width: 960px) {
  .about-hero-wrap,
  .about-intro-grid,
  .about-cap-grid,
  .about-scene-item,
  .about-scene-item.reverse {
    grid-template-columns: 1fr;
  }

  .about-hero-collage {
    min-height: 330px;
  }

  .collage-main {
    inset: 0;
  }

  .collage-sub {
    width: 44%;
    height: 40%;
    border-width: 1px;
  }

  .collage-a {
    top: 10px;
  }

  .collage-b {
    bottom: 10px;
  }

  .about-cap-main {
    grid-row: auto;
  }

  .about-scene-item.reverse figure,
  .about-scene-item.reverse .scene-text {
    order: initial;
  }
}

@media (max-width: 720px) {
  .about-hero-wrap {
    padding: 62px 0 54px;
  }

  .about-hero-collage {
    min-height: 266px;
  }

  .collage-sub {
    width: 46%;
    height: 38%;
  }

  .about-copy-card,
  .about-cap-main,
  .about-cap-card {
    padding: 16px;
  }

  .about-side-stack img {
    min-height: 160px;
  }

  .about-cap-main img,
  .about-scene-item img {
    height: 190px;
  }

  .scene-text h3 {
    font-size: 19px;
  }
}
