:root {
  --bg: #ffffff;
  --bg-2: #f3f8ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #102033;
  --muted: #5f7288;
  --primary: #1268e8;
  --cyan: #08aeea;
  --mint: #0faf92;
  --violet: #6657e8;
  --line: rgba(18, 104, 232, 0.16);
  --shadow: 0 20px 60px rgba(18, 104, 232, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(18, 104, 232, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(18, 104, 232, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 82% 8%, rgba(18, 104, 232, 0.16), transparent 30%),
    radial-gradient(circle at 12% 34%, rgba(8, 174, 234, 0.12), transparent 24%),
    linear-gradient(145deg, #ffffff, var(--bg-2));
  background-size: 58px 58px, 58px 58px, auto, auto, auto;
}

a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
ul, ol { margin: 0; padding: 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: #fff;
  color: #06213a;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(184, 200, 220, 0.18);
  background: rgba(7, 20, 38, 0.96);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 104, 232, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 104, 232, 0.24);
}

.brand-text { font-size: 17px; }

.site-header .brand-text {
  color: #fff;
}

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

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: #b8c8dc;
  font-size: 15px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 200, 220, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero,
.section,
.page-hero,
.site-footer {
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100dvh - 74px);
  padding-top: 72px;
  padding-bottom: 80px;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
}

.hero-slogan {
  margin-bottom: 18px;
  color: var(--primary);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
}

.hero-desc,
.section-lead,
.page-hero p,
.capability-card p,
.service-preview span,
.scenario-strip p,
.case-card p,
.text-panel p,
.service-detail p,
.process-list span,
.contact-panel,
.form-note,
.cta-section p {
  color: var(--muted);
  line-height: 1.78;
}

.hero-desc {
  max-width: 690px;
  font-size: 18px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #13c5ff);
  box-shadow: 0 18px 38px rgba(18, 104, 232, 0.24);
}

.button.secondary {
  color: var(--primary);
  background: rgba(18, 104, 232, 0.06);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: #eaf4ff;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 38%);
}

.home-carousel,
.home-products,
.home-cases,
.home-footer {
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
}

.home-carousel {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  padding: 0 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(18, 104, 232, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(242, 248, 255, 0.92), rgba(255, 255, 255, 0.96));
}

.slide-track {
  position: relative;
  width: 100%;
  aspect-ratio: 8 / 3;
  min-height: 0;
}

.home-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.home-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.slide-visual,
.product-image-placeholder {
  display: grid;
  place-items: center;
  min-height: 0;
  border: 1px dashed rgba(18, 104, 232, 0.32);
  border-radius: var(--radius);
  color: #1d4f91;
  background:
    linear-gradient(90deg, rgba(18, 104, 232, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(18, 104, 232, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #f5f9ff, #eaf4ff);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.slide-visual {
  min-height: 0;
}

.full-slide-visual {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.slide-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.slide-controls {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slide-dot {
  width: 42px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 104, 232, 0.18);
  cursor: pointer;
}

.slide-dot.active {
  background: var(--primary);
}

.home-products,
.home-cases {
  padding-top: 82px;
  padding-bottom: 82px;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.single-product-section .section-heading {
  max-width: 640px;
}

.product-feature-single {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, rgba(18, 104, 232, 0.06));
  box-shadow: var(--shadow);
}

.datapal-section {
  background: linear-gradient(180deg, #fff, #f5f9ff);
}

.datapal-section .section-heading {
  max-width: 940px;
  margin: 0 auto 34px;
  text-align: center;
}

.datapal-section .section-heading h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
}

.datapal-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.datapal-copy span,
.datapal-os-grid span,
.datapal-sku-grid span {
  color: var(--primary);
  font-weight: 900;
}

.datapal-copy h3 {
  margin: 14px 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.16;
}

.datapal-copy p,
.datapal-os-grid p,
.datapal-sku-grid p,
.datapal-sku-grid p {
  color: var(--muted);
  line-height: 1.76;
}

.datapal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.datapal-screen {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 104, 232, 0.18);
  border-radius: var(--radius);
  background: #f2f6ff;
  box-shadow: 0 24px 60px rgba(18, 104, 232, 0.16);
}

.datapal-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.datapal-os-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.datapal-os-grid article,
.datapal-sku-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.datapal-os-grid article {
  min-height: 150px;
  padding: 20px;
}

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

.datapal-sku-grid article {
  min-height: 290px;
  padding: 24px;
}

.datapal-sku-grid h3 {
  margin: 14px 0 12px;
  font-size: 24px;
}

.datapal-sku-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  list-style: none;
}

.datapal-sku-grid li {
  padding: 7px 10px;
  border: 1px solid rgba(18, 104, 232, 0.16);
  border-radius: var(--radius);
  color: #1d4f91;
  background: rgba(18, 104, 232, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.product-feature.reverse .product-copy {
  order: 2;
}

.product-copy span,
.home-case-panel span {
  color: var(--primary);
  font-weight: 900;
}

.product-copy h3,
.home-case-panel h3 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.product-copy p,
.home-case-panel p {
  color: var(--muted);
  line-height: 1.76;
}

.product-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  list-style: none;
}

.product-copy li {
  padding: 8px 12px;
  border: 1px solid rgba(18, 104, 232, 0.16);
  border-radius: var(--radius);
  color: #1d4f91;
  background: rgba(18, 104, 232, 0.06);
  font-weight: 800;
}

.home-cases {
  background: linear-gradient(180deg, #f3f8ff, rgba(255, 255, 255, 0.86));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.case-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.case-tab.active,
.case-tab:hover,
.case-tab:focus-visible {
  color: #fff;
  background: var(--primary);
  outline: none;
}

.home-case-panel {
  display: none;
  width: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.home-case-panel.active {
  display: grid;
}

.home-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding-top: 42px;
  padding-bottom: 34px;
  color: #b8c8dc;
  background: #071426;
}

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

.home-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.home-footer nav a {
  color: #eef6ff;
  font-weight: 800;
}

.footer-meta {
  display: grid;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid rgba(184, 200, 220, 0.22);
}

.footer-meta p,
.footer-brand p {
  margin: 0;
}

.home-footer .footer-meta {
  grid-column: 1;
}

.footer-qr {
  justify-self: end;
  align-self: start;
  display: grid;
  gap: 10px;
  justify-items: center;
  margin: 0;
  color: #eef6ff;
  font-size: 13px;
  font-weight: 800;
}

.footer-qr img {
  display: block;
  width: 118px;
  height: 118px;
  border: 6px solid #fff;
  border-radius: var(--radius);
  background: #fff;
  object-fit: cover;
}

.section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.section-intro,
.split-section,
.contact-layout,
.cta-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 46px;
  align-items: start;
}

.section h2,
.page-hero h1 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.18;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.surface-section {
  background: linear-gradient(180deg, rgba(239, 247, 255, 0.9), rgba(255, 255, 255, 0.72));
  border-top: 1px solid rgba(18, 104, 232, 0.1);
  border-bottom: 1px solid rgba(18, 104, 232, 0.1);
}

.capability-grid,
.service-preview-grid,
.case-grid,
.value-grid,
.service-detail-grid,
.scenario-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.case-grid,
.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.capability-card,
.service-preview,
.case-card,
.value-grid article,
.text-panel,
.service-detail,
.contact-panel,
.contact-form,
.scenario-strip article,
.process-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.capability-card,
.service-preview,
.case-card,
.value-grid article,
.text-panel,
.service-detail,
.contact-panel,
.contact-form,
.scenario-strip article {
  padding: 26px;
}

.capability-card,
.case-card,
.service-detail {
  min-height: 250px;
}

.card-index,
.capability-card span,
.case-card span,
.scenario-strip span {
  color: var(--primary);
  font-weight: 900;
}

.capability-card h3,
.service-preview strong,
.case-card h3,
.service-detail h3 {
  display: block;
  margin: 16px 0 12px;
  font-size: 23px;
}

.capability-card ul,
.service-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  list-style: none;
}

.capability-card li,
.service-detail li {
  padding: 7px 10px;
  border: 1px solid rgba(18, 104, 232, 0.16);
  border-radius: var(--radius);
  color: #1d4f91;
  background: rgba(18, 104, 232, 0.06);
  font-size: 13px;
}

.service-preview {
  min-height: 190px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-preview:hover,
.service-preview:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(18, 104, 232, 0.42);
  outline: none;
}

.page-hero {
  padding-top: 92px;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 16%, rgba(8, 174, 234, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(18, 104, 232, 0.1), transparent 62%);
}

.page-hero p {
  max-width: 780px;
  font-size: 18px;
}

.page-hero .button {
  margin-top: 22px;
}

.about-hero,
.service-hero,
.case-hero,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 42px;
  align-items: end;
  padding: 96px max(22px, calc((100vw - var(--max)) / 2)) 82px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 20%, rgba(18, 104, 232, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(18, 104, 232, 0.08), transparent 58%);
}

.about-hero h1,
.service-hero h1,
.case-hero h1,
.contact-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.12;
}

.about-hero p,
.service-hero p,
.case-hero p,
.contact-hero p,
.about-quote p,
.story-copy p,
.story-steps p,
.principle-band p,
.matrix-main p,
.service-matrix p,
.delivery-lane p,
.featured-case p,
.case-row p,
.map-panel p {
  color: var(--muted);
  line-height: 1.78;
}

.about-quote,
.case-summary,
.contact-cards,
.map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-quote {
  padding: 30px;
}

.about-quote span,
.featured-copy span,
.case-summary span,
.contact-cards span,
.map-panel span,
.matrix-main span {
  color: var(--primary);
  font-weight: 900;
}

.about-quote strong {
  display: block;
  margin: 14px 0 12px;
  font-size: 30px;
  line-height: 1.22;
}

.about-story,
.featured-case,
.contact-workspace {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: start;
}

.story-steps {
  display: grid;
  gap: 16px;
}

.story-steps article {
  display: grid;
  grid-template-columns: 52px 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.story-steps span {
  color: var(--primary);
  font-weight: 900;
}

.principle-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 0;
}

.principle-band article {
  padding: 40px 34px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.principle-band article:last-child {
  border-right: 0;
}

.principle-band strong {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 30px;
}

.service-hero {
  align-items: center;
}

.service-hero .button {
  justify-self: end;
}

.service-matrix {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(3, auto);
  gap: 18px;
}

.service-matrix article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-matrix .matrix-main {
  grid-row: span 3;
  min-height: 420px;
  background: linear-gradient(135deg, #fff, rgba(18, 104, 232, 0.08));
}

.matrix-main h2 {
  margin: 16px 0;
  font-size: clamp(34px, 4vw, 54px);
}

.matrix-main ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
  list-style: none;
}

.matrix-main li {
  padding: 14px;
  border-radius: var(--radius);
  color: #1d4f91;
  background: rgba(18, 104, 232, 0.06);
}

.delivery-lane {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  list-style: none;
}

.delivery-lane li {
  padding: 24px;
  border-top: 4px solid var(--primary);
  background: #fff;
  box-shadow: var(--shadow);
}

.delivery-lane span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.case-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: baseline;
  padding: 28px;
}

.case-summary strong {
  color: var(--primary);
  font-size: 52px;
}

.featured-case {
  background: linear-gradient(135deg, rgba(18, 104, 232, 0.08), rgba(255, 255, 255, 0.7));
}

.featured-copy h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.featured-points {
  display: grid;
  gap: 14px;
}

.featured-points article,
.case-row {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

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

.case-row {
  display: grid;
  grid-template-columns: 150px 240px 1fr;
  gap: 18px;
  align-items: center;
}

.case-row span {
  color: var(--primary);
  font-weight: 900;
}

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

.contact-cards article {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(18, 104, 232, 0.06);
}

.contact-cards strong {
  display: block;
  margin-top: 8px;
}

.contact-workspace {
  align-items: stretch;
}

.contact-workspace .contact-form {
  order: 1;
}

.map-panel {
  order: 2;
  display: grid;
  align-content: end;
  min-height: 460px;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(18, 104, 232, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(18, 104, 232, 0.07) 1px, transparent 1px),
    #f4f9ff;
  background-size: 36px 36px;
}

.map-panel strong {
  margin: 12px 0;
  font-size: 32px;
}

.contact-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 0;
}

.contact-topics article {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--primary);
  background: #fff;
  font-weight: 900;
}

.value-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
}

.value-grid span {
  color: var(--muted);
  line-height: 1.7;
}

.scenario-strip article {
  min-height: 160px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 178px;
  padding: 26px 20px;
  counter-increment: process;
}

.process-list li::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  color: #fff;
  background: var(--primary);
  outline: none;
}

.filter-card.is-hidden { display: none; }

.contact-layout {
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 22px 0;
}

.contact-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(18, 104, 232, 0.12);
}

.contact-list dt {
  color: var(--text);
  font-weight: 900;
}

.contact-list dd {
  margin: 6px 0 0;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  border: 1px dashed rgba(18, 104, 232, 0.36);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(18, 104, 232, 0.04);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: 2px solid rgba(18, 104, 232, 0.16);
}

.form-note {
  margin: 0;
}

.center-action {
  margin-top: 30px;
  text-align: center;
}

.cta-section {
  align-items: center;
  border-top: 1px solid rgba(18, 104, 232, 0.1);
}

.cta-section .button {
  justify-self: end;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(184, 200, 220, 0.22);
  color: #b8c8dc;
  background: #071426;
}

.site-footer p {
  margin: 0;
}

.site-footer .footer-meta {
  padding-top: 0;
  border-top: 0;
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px max(22px, calc((100vw - var(--max)) / 2)) 86px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.88), rgba(7, 20, 38, 0.42) 58%, rgba(7, 20, 38, 0.72)),
    url("assets/contact-hero-bg.png") center / cover no-repeat,
    #071426;
}

.contact-page-hero > div {
  position: relative;
  z-index: 1;
}

.contact-page-hero .eyebrow {
  color: #9bdcff;
}

.contact-page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.12;
}

.contact-page-hero p {
  max-width: 820px;
  color: #cfe5ff;
  font-size: 18px;
  line-height: 1.78;
}

.contact-two-column {
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
}

.contact-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 26px;
  padding-top: 88px;
  padding-bottom: 88px;
  background: #fff;
}

.contact-business-panel,
.contact-campus-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-campus-panel {
  background:
    linear-gradient(135deg, rgba(18, 104, 232, 0.06), rgba(8, 174, 234, 0.05)),
    #fff;
}

.contact-panel-head span {
  color: var(--primary);
  font-weight: 900;
}

.contact-panel-head h2 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.contact-panel-head p,
.contact-info-list dd,
.campus-role-grid p,
.contact-location-band p {
  color: var(--muted);
  line-height: 1.78;
}

.contact-panel-image {
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(18, 104, 232, 0.14);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  background: #eaf4ff;
}

.contact-panel-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
}

.contact-info-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(18, 104, 232, 0.12);
}

.contact-info-list dt {
  color: var(--primary);
  font-weight: 900;
}

.contact-info-list dd {
  margin: 0;
}

.contact-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-topic-list span {
  padding: 8px 12px;
  border: 1px solid rgba(18, 104, 232, 0.16);
  border-radius: var(--radius);
  color: #1d4f91;
  background: rgba(18, 104, 232, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.campus-role-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.campus-role-grid div {
  padding: 18px;
  border: 1px solid rgba(18, 104, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.campus-role-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.campus-role-grid p {
  margin: 0;
}

.campus-apply {
  margin-top: 20px;
}

.solution-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: center;
  padding: 92px max(22px, calc((100vw - var(--max)) / 2)) 86px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.9), rgba(7, 20, 38, 0.46) 58%, rgba(7, 20, 38, 0.72)),
    url("assets/solution-hero-bg.png") center / cover no-repeat,
    #071426;
}

.solution-hero > * {
  position: relative;
  z-index: 1;
}

.solution-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.12;
}

.solution-hero .eyebrow {
  color: #9bdcff;
}

.solution-hero p,
.solution-hero-panel p,
.solution-section-head p,
.solution-loop-copy p,
.solution-loop-list p,
.solution-scene-copy p,
.solution-scene-detail li,
.solution-proof-card p,
.solution-delivery-lane p {
  color: var(--muted);
  line-height: 1.78;
}

.solution-hero-copy > p {
  max-width: 760px;
  color: #cfe5ff;
  font-size: 18px;
}

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

.solution-hero-panel {
  padding: 34px;
  border: 1px solid rgba(155, 220, 255, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(9, 34, 68, 0.74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.solution-hero-panel span {
  color: #9bdcff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
  white-space: nowrap;
}

.solution-hero-panel strong {
  display: block;
  margin: 20px 0 12px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
}

.solution-hero-panel p {
  color: #cfe5ff;
}

.solution-anchor-nav {
  position: sticky;
  top: 74px;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(18, 104, 232, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.solution-anchor-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: var(--radius);
  color: #2f455d;
  font-weight: 800;
}

.solution-anchor-nav a:hover,
.solution-anchor-nav a:focus-visible {
  color: var(--primary);
  background: rgba(18, 104, 232, 0.08);
  outline: none;
}

.solution-product-section,
.solution-loop-section,
.solution-scenes-section,
.solution-proof-section,
.solution-delivery-section {
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
}

.solution-product-section,
.solution-loop-section,
.solution-scenes-section,
.solution-delivery-section {
  scroll-margin-top: 152px;
}

.solution-product-section,
.solution-scenes-section,
.solution-delivery-section {
  padding-top: 88px;
  padding-bottom: 92px;
  background: #fff;
}

.solution-section-head {
  max-width: 900px;
  margin-bottom: 34px;
}

.solution-section-head h2,
.solution-loop-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.18;
}

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

.solution-layer-grid article {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, rgba(18, 104, 232, 0.045));
  box-shadow: var(--shadow);
}

.solution-layer-grid span,
.solution-scene-copy span,
.solution-proof-card span {
  color: var(--primary);
  font-weight: 900;
}

.solution-layer-grid h3 {
  margin: 16px 0 12px;
  font-size: 24px;
}

.solution-layer-grid p {
  color: var(--muted);
  line-height: 1.78;
}

.solution-loop-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
  padding-top: 84px;
  padding-bottom: 88px;
  background:
    linear-gradient(90deg, rgba(18, 104, 232, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(18, 104, 232, 0.05) 1px, transparent 1px),
    #f4f9ff;
  background-size: 36px 36px;
}

.solution-loop-list {
  display: grid;
  gap: 14px;
  list-style: none;
  counter-reset: solutionLoop;
}

.solution-loop-list li {
  display: grid;
  grid-template-columns: 54px minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  counter-increment: solutionLoop;
}

.solution-loop-list li::before {
  content: "0" counter(solutionLoop);
  color: var(--primary);
  font-weight: 900;
}

.solution-loop-list span {
  font-weight: 900;
}

.solution-loop-list p {
  margin: 0;
}

.solution-scenes-section {
  padding-bottom: 72px;
}

.solution-scene-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.solution-scene-row:last-child {
  border-bottom: 1px solid var(--line);
}

.solution-scene-index {
  color: rgba(18, 104, 232, 0.24);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.solution-scene-copy h3 {
  margin: 12px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.22;
}

.solution-scene-detail {
  padding: 24px;
  border: 1px solid rgba(18, 104, 232, 0.16);
  border-radius: var(--radius);
  background: #f5f9ff;
}

.solution-scene-detail strong {
  display: block;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 20px;
}

.solution-scene-detail ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.solution-scene-detail li {
  position: relative;
  padding-left: 18px;
}

.solution-scene-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.solution-proof-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
  padding-bottom: 88px;
  background: #fff;
}

.solution-proof-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, rgba(18, 104, 232, 0.06));
  box-shadow: var(--shadow);
}

.solution-proof-card strong {
  display: block;
  margin: 14px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.16;
}

.solution-delivery-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(8, 174, 234, 0.14), transparent 28%),
    linear-gradient(180deg, #f4f9ff, #fff);
  border-top: 1px solid rgba(18, 104, 232, 0.1);
}

.solution-delivery-lane {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  list-style: none;
}

.solution-delivery-lane li {
  min-height: 220px;
  padding: 24px;
  border-top: 4px solid var(--primary);
  background: #fff;
  box-shadow: var(--shadow);
}

.solution-delivery-lane span {
  color: var(--primary);
  font-weight: 900;
}

.solution-delivery-lane strong {
  display: block;
  margin: 14px 0 12px;
  font-size: 22px;
}

.about-page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #071426;
}

.about-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 38, 0.82), rgba(7, 20, 38, 0.2) 58%, rgba(7, 20, 38, 0.58)),
    linear-gradient(180deg, transparent, rgba(7, 20, 38, 0.5));
}

.about-page-hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 0 0 68px;
  color: #fff;
}

.about-page-hero__content p {
  margin-bottom: 12px;
  color: #9bdcff;
  font-size: 13px;
  font-weight: 900;
}

.about-page-hero__content h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.12;
}

.about-anchor-nav {
  position: sticky;
  top: 74px;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(18, 104, 232, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.about-anchor-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: var(--radius);
  color: #2f455d;
  font-weight: 800;
}

.about-anchor-nav a:hover,
.about-anchor-nav a:focus-visible {
  color: var(--primary);
  background: rgba(18, 104, 232, 0.08);
  outline: none;
}

.about-profile-section,
.about-position-section,
.about-capability-section,
.about-vision-section {
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
}

.about-profile-section,
.about-position-section,
.about-capability-section,
.about-vision-section {
  scroll-margin-top: 152px;
}

.about-profile-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.74fr) minmax(0, 1.26fr);
  gap: 72px;
  padding-top: 88px;
  padding-bottom: 88px;
  background: #fff;
}

.about-section-title {
  position: relative;
}

.about-section-title::before {
  content: "";
  display: block;
  width: 46px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.about-section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.about-profile-section .about-section-title h2 {
  font-size: clamp(26px, 3vw, 40px);
  white-space: nowrap;
}

.about-profile-copy {
  display: grid;
  gap: 22px;
  color: #30475f;
  font-size: 17px;
  line-height: 1.9;
}

.about-profile-copy p {
  margin: 0;
}

.about-position-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    linear-gradient(90deg, rgba(18, 104, 232, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(18, 104, 232, 0.05) 1px, transparent 1px),
    #f4f9ff;
  background-size: 36px 36px;
}

.about-position-card {
  min-height: 250px;
  padding: 34px;
  border: 1px solid rgba(18, 104, 232, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.about-position-card span,
.about-capability-list span {
  color: var(--primary);
  font-weight: 900;
}

.about-position-card strong {
  display: block;
  margin: 18px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.about-position-card p,
.about-capability-list p,
.about-vision-section p {
  color: var(--muted);
  line-height: 1.78;
}

.about-profile-copy p,
.about-position-card p,
.about-vision-section > p {
  text-indent: 2em;
}

.about-capability-section {
  padding-top: 88px;
  padding-bottom: 92px;
  background: #fff;
}

.about-capability-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.about-capability-list article {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.about-capability-list h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
}

.about-capability-list p {
  margin: 0;
}

.about-vision-section {
  display: grid;
  grid-template-columns: minmax(440px, 1.25fr) minmax(0, 0.75fr);
  gap: 54px;
  align-items: start;
  padding-top: 82px;
  padding-bottom: 86px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 8%, rgba(8, 174, 234, 0.34), transparent 28%),
    linear-gradient(135deg, #071426, #0a2c58 58%, #071426);
}

.about-vision-section .eyebrow,
.about-vision-section p {
  color: #b8d8f5;
}

.about-vision-section h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.18;
  white-space: nowrap;
}

.about-vision-section > p {
  margin: 31px 0 0;
  font-size: 17px;
}

@media (max-width: 1020px) {
  .hero,
  .home-slide,
  .product-feature,
  .datapal-hero-card,
  .datapal-os-grid,
  .datapal-sku-grid,
  .home-case-panel,
  .home-footer,
  .section-intro,
  .split-section,
  .contact-layout,
  .cta-section,
  .about-hero,
  .service-hero,
  .case-hero,
  .contact-hero,
  .about-story,
  .featured-case,
  .contact-workspace,
  .service-matrix,
  .capability-grid,
  .service-preview-grid,
  .case-grid,
  .value-grid,
  .service-detail-grid,
  .scenario-strip,
  .process-list,
  .delivery-lane,
  .principle-band,
  .case-row,
  .solution-hero,
  .solution-layer-grid,
  .solution-loop-section,
  .solution-scene-row,
  .solution-proof-section,
  .solution-delivery-lane,
  .contact-two-column {
    grid-template-columns: 1fr;
  }

  .about-profile-section,
  .about-position-section,
  .about-vision-section {
    grid-template-columns: 1fr;
  }

  .about-profile-section {
    gap: 36px;
  }

  .about-capability-list article {
    grid-template-columns: 64px 1fr;
  }

  .about-capability-list article p {
    grid-column: 2;
  }

  .solution-loop-list li {
    grid-template-columns: 44px 1fr;
  }

  .solution-loop-list p {
    grid-column: 2;
  }

  .home-carousel {
    min-height: auto;
  }

  .slide-track {
    min-height: 0;
  }

  .product-feature.reverse .product-copy {
    order: 0;
  }

  .datapal-actions .button {
    width: auto;
  }

  .home-footer nav {
    justify-content: flex-start;
  }

  .site-footer,
  .home-footer {
    grid-template-columns: 1fr;
  }

  .home-footer .footer-meta {
    grid-column: auto;
  }

  .footer-qr {
    justify-self: start;
  }

  .service-matrix .matrix-main {
    grid-row: auto;
    min-height: auto;
  }

  .service-hero .button {
    justify-self: start;
  }

  .principle-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-steps article {
    grid-template-columns: 44px 1fr;
  }

  .story-steps article p {
    grid-column: 2;
  }

  .hero {
    min-height: auto;
  }

  .cta-section .button {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 20, 38, 0.98);
  }

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

  .site-nav a {
    justify-content: flex-start;
  }

  .about-anchor-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .about-anchor-nav a,
  .solution-anchor-nav a {
    flex: 0 0 auto;
  }

  .solution-anchor-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }
}

@media (max-width: 560px) {
  .brand-text {
    max-width: 11em;
    font-size: 15px;
  }

  .hero,
  .section,
  .page-hero,
  .home-products,
  .home-cases {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-carousel {
    padding-top: 0;
    padding-bottom: 42px;
  }

  .slide-track {
    min-height: 0;
  }

  .product-image-placeholder {
    min-height: 260px;
  }

  .full-slide-visual {
    min-height: 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .datapal-hero-card,
  .product-feature-single {
    padding: 22px;
  }

  .datapal-actions .button {
    width: 100%;
  }

  .hero-media {
    aspect-ratio: 1 / 1;
  }

  .about-page-hero {
    min-height: 280px;
  }

  .about-page-hero__content {
    padding-bottom: 44px;
  }

  .about-profile-section,
  .about-position-section,
  .about-capability-section,
  .about-vision-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .about-position-card {
    padding: 24px;
  }

  .about-capability-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-capability-list article p {
    grid-column: auto;
  }

  .solution-hero,
  .solution-product-section,
  .solution-loop-section,
  .solution-scenes-section,
  .solution-proof-section,
  .solution-delivery-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .solution-hero-actions {
    flex-direction: column;
  }

  .solution-hero-panel,
  .solution-layer-grid article,
  .solution-scene-detail,
  .solution-proof-card,
  .solution-delivery-lane li {
    padding: 22px;
  }

  .solution-scene-index {
    font-size: 38px;
  }

  .solution-loop-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .solution-loop-list p {
    grid-column: auto;
  }

  .contact-page-hero,
  .contact-two-column {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .contact-business-panel,
  .contact-campus-panel {
    padding: 22px;
  }

  .contact-info-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
