:root {
  --navy: #0f172a;
  --navy-2: #1e3a8a;
  --navy-3: #27489b;
  --gold: #f59e0b;
  --gold-soft: #f7c86c;
  --text: #1f2937;
  --muted: #5b6472;
  --line: rgba(15, 23, 42, 0.1);
  --paper: #f7f8fa;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "FangSong", "仿宋", "STFangsong", "Times New Roman", serif;
  font-size: 16px;
}

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

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

.site-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 24px 32px 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(245, 158, 11, 0.1), transparent 20%),
    linear-gradient(180deg, #0b1324 0%, #10203f 46%, #1e3a8a 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 88%);
}

.topbar,
.hero-body,
.section {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100vw - 48px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-logo,
.footer-logo {
  width: 150px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "FangSong", "仿宋", "STFangsong", serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a {
  position: relative;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
  opacity: 1;
}

.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
}

.hero-body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: end;
  min-height: 48vh;
  padding-top: 34px;
}

.hero-body-compact {
  min-height: auto;
  align-items: start;
  padding-top: 18px;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-family: "FangSong", "仿宋", "STFangsong", serif;
  font-size: 15px;
  font-weight: 700;
}

.section-kicker {
  color: var(--navy-2);
}

h1,
h2,
h3,
strong,
.button,
.card-index {
  font-family: "SimHei", "黑体", "Microsoft YaHei", sans-serif;
}

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

h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.hero-subpage h1 {
  max-width: 14ch;
  font-size: clamp(34px, 4.6vw, 54px);
}

h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.34;
  color: var(--navy);
}

h3 {
  font-size: 22px;
  line-height: 1.4;
  color: var(--navy);
}

p,
li,
span,
label {
  line-height: 1.85;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 15px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #33210a;
  background: linear-gradient(135deg, #f8d287, var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.22);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-subtitle {
  max-width: 56rem;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.92;
}

.section-intro {
  font-size: 17px;
  color: var(--muted);
}

.hero-visual {
  display: grid;
  gap: 18px;
  align-self: start;
}

.hero-meta-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  align-self: end;
  box-shadow: 0 20px 40px rgba(11, 19, 36, 0.18);
}

.hero-meta-card label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.hero-meta-card strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.5;
}

.section {
  padding: 80px 0;
}

.detail-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.detail-card,
.product-center-card,
.advantage-card,
.contact-strip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.detail-card,
.product-center-card {
  position: relative;
  overflow: hidden;
}

.detail-card::before,
.product-center-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(30, 58, 138, 0.82), rgba(245, 158, 11, 0.82));
  opacity: 0;
  transition: opacity 180ms ease;
}

.detail-card:hover,
.product-center-card:hover,
.advantage-card:hover,
.contact-strip:hover,
.brand-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 58, 138, 0.16);
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.12);
}

.detail-card:hover::before,
.product-center-card:hover::before {
  opacity: 1;
}

.detail-card {
  padding: 28px;
}

.detail-card p + p {
  margin-top: 16px;
}

.detail-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-card li + li {
  margin-top: 6px;
}

.section-gap-top {
  margin-top: 24px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.product-center-grid,
.advantage-grid {
  display: grid;
  gap: 20px;
}

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

.product-center-card {
  padding: 28px;
}

.featured-center-card {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, #15244d 0%, #1d3775 100%);
  border: none;
}

.featured-center-card h3,
.featured-center-card p,
.featured-center-card li,
.featured-center-card strong,
.featured-center-card .card-index,
.featured-center-card .product-center-tagline {
  color: var(--white);
}

.product-center-head {
  display: grid;
  gap: 8px;
}

.card-index {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.product-center-tagline {
  margin-top: 10px;
  color: var(--navy-2);
  font-family: "SimHei", "黑体", "Microsoft YaHei", sans-serif;
}

.product-center-card > p {
  margin-top: 14px;
  color: var(--muted);
}

.product-center-block {
  margin-top: 22px;
}

.product-center-block strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--navy);
}

.product-center-block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  list-style: square;
}

.product-center-block li + li {
  margin-top: 6px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--navy-2);
  font-family: "FangSong", "仿宋", "STFangsong", serif;
  font-size: 15px;
  transition: transform 180ms ease, color 180ms ease;
}

.text-link:hover {
  color: var(--navy-3);
  transform: translateX(2px);
}

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

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

.matrix-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.98));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.matrix-card:nth-child(2n) {
  background: linear-gradient(180deg, rgba(30, 58, 138, 0.05), rgba(246, 248, 252, 0.98));
}

.matrix-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 58, 138, 0.18);
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.12);
}

.matrix-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--navy-2);
  font-size: 12px;
  letter-spacing: 0.08em;
  background: rgba(30, 58, 138, 0.06);
  border: 1px solid rgba(30, 58, 138, 0.08);
}

.matrix-card strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.4;
  color: var(--navy);
}

.matrix-card p {
  margin-top: 12px;
  color: var(--muted);
}

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

.resource-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.98));
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 58, 138, 0.18);
  box-shadow: 0 26px 56px rgba(15, 23, 42, 0.12);
}

.resource-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--navy-2);
  font-size: 12px;
  letter-spacing: 0.08em;
  background: rgba(30, 58, 138, 0.06);
  border: 1px solid rgba(30, 58, 138, 0.08);
}

.resource-card h3 {
  margin-top: 18px;
}

.resource-card p {
  margin-top: 12px;
  color: var(--muted);
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.page-cases .hero-copy {
  animation: rise-fade 700ms ease both;
}

.page-cases .hero-visual {
  animation: rise-fade 700ms ease 100ms both;
}

.page-cases .product-center-grid,
.page-cases .advantage-grid,
.page-cases .case-matrix {
  animation: rise-fade 720ms ease 120ms both;
}

.advantage-card {
  padding: 26px;
}

.advantage-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.45;
}

.advantage-card p {
  margin-top: 12px;
  color: var(--muted);
}

.split-head {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: end;
}

.split-head .section-intro {
  color: var(--muted);
}

.brand-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 18px;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(18, 31, 67, 0.96), rgba(37, 67, 150, 0.94)),
    url("vi-assets/pattern-grid.svg") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.brand-panel::before {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent 70%);
  z-index: -1;
}

.panel-head {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 16px;
  align-items: center;
}

.panel-symbol {
  width: 68px;
  height: 68px;
}

.panel-kicker {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.panel-title {
  margin-top: 4px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.38;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.panel-stats div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-stats span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.panel-stats strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  line-height: 1.45;
}

.panel-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.panel-list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.14);
}

.panel-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  padding: 30px;
}

.contact-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-2);
  font-size: 13px;
}

.contact-strip strong {
  display: block;
  font-size: 20px;
  line-height: 1.45;
  color: var(--navy);
}

.footer {
  padding: 42px 32px 56px;
  color: var(--white);
  background: linear-gradient(180deg, #0f172a 0%, #142346 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.footer-brand p,
.footer-action p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-action {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.footer-action .button {
  min-width: 132px;
}

.footer-action p {
  margin-top: 0;
  max-width: 240px;
}

.footer-info {
  display: grid;
  gap: 18px;
}

.footer-info span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-info strong {
  display: block;
  font-size: 19px;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .hero-body,
  .product-center-grid,
  .case-matrix,
  .resource-grid,
  .advantage-grid,
  .split-head,
  .contact-strip,
  .detail-two-column,
  .panel-stats {
    grid-template-columns: 1fr;
  }

  .featured-center-card {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding: 16px 16px 36px;
  }

  .topbar,
  .hero-body,
  .section {
    width: min(1220px, calc(100vw - 24px));
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 10px;
    font-size: 13px;
  }

  .nav-links a {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  h1 {
    max-width: 9ch;
    font-size: 32px;
    line-height: 1.16;
  }

  h2 {
    font-size: 28px;
  }

  .hero-body {
    min-height: auto;
    gap: 22px;
    padding-top: 22px;
  }

  .hero-body-compact {
    gap: 20px;
    padding-top: 18px;
  }

  .hero-subtitle,
  .section-intro {
    font-size: 15px;
    line-height: 1.82;
  }

  .hero-meta-card,
  .detail-card,
  .brand-panel,
  .product-center-card,
  .advantage-card,
  .contact-strip {
    padding: 22px;
    border-radius: 16px;
  }

  .panel-head {
    grid-template-columns: 56px 1fr;
  }

  .panel-symbol {
    width: 56px;
    height: 56px;
  }

  .panel-title {
    font-size: 20px;
  }

  .contact-strip {
    gap: 14px;
  }

  .matrix-card {
    padding: 22px;
  }

  .resource-card {
    padding: 22px;
  }

  .footer {
    padding: 34px 16px 46px;
  }

  .footer-info strong {
    font-size: 18px;
  }
}

@keyframes rise-fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-cases .hero-copy,
  .page-cases .hero-visual,
  .page-cases .product-center-grid,
  .page-cases .advantage-grid,
  .page-cases .case-matrix {
    animation: none;
  }
}

/* Apple-inspired white theme */
:root {
  --navy: #1d1d1f;
  --navy-2: #0066cc;
  --navy-3: #0071e3;
  --gold: #0071e3;
  --gold-soft: #2997ff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.12);
  --paper: #ffffff;
  --white: #ffffff;
  --soft: #f5f5f7;
  --shadow: none;
}

body {
  color: var(--text);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body * {
  letter-spacing: 0 !important;
}

.hero {
  padding: 72px 32px 50px;
  color: var(--text);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-grid,
.brand-panel::before {
  display: none;
}

.page-cases .hero-copy,
.page-cases .hero-visual,
.page-cases .product-center-grid,
.page-cases .advantage-grid,
.page-cases .case-matrix {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  height: 48px;
  padding: 0 max(24px, calc((100vw - 1220px) / 2));
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
}

.brand-frame {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.brand-logo,
.footer-logo {
  width: 132px;
  filter: none;
}

.nav-links {
  gap: 28px;
  color: var(--text);
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.nav-links a {
  opacity: 0.78;
  transition: opacity 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  opacity: 1;
}

.nav-links a[aria-current="page"]::after {
  bottom: -17px;
  height: 1px;
  background: var(--text);
}

.hero-body {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 28px;
  min-height: 42vh;
  padding-top: 34px;
  text-align: center;
}

.hero-body-compact {
  min-height: 36vh;
  align-items: center;
  padding-top: 34px;
}

.hero-copy,
.hero-visual {
  width: min(940px, 100%);
}

.hero-copy,
.hero-visual,
.section-heading,
.detail-two-column,
.product-center-grid,
.advantage-grid,
.case-matrix,
.resource-grid {
  opacity: 1;
}

.hero-kicker,
.section-kicker {
  color: var(--muted);
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
}

h1,
h2,
h3,
strong,
.button,
.card-index {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro SC", "PingFang SC", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1,
.hero-subpage h1 {
  max-width: 14ch;
  margin: 0 auto;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.08;
  color: var(--text);
}

h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.16;
  color: var(--text);
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.22;
  color: var(--text);
}

p,
li,
span,
label {
  line-height: 1.58;
}

.hero-subtitle {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.48;
}

.section-intro {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.52;
}

.button {
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 400;
  box-shadow: none;
}

.button:hover {
  transform: none;
}

.button.primary {
  color: var(--white);
  background: var(--navy-3);
  border: 1px solid var(--navy-3);
  box-shadow: none;
}

.button.primary:hover {
  background: #0077ed;
}

.button.secondary {
  color: var(--navy-2);
  background: transparent;
  border: 1px solid transparent;
}

.hero-meta-card,
.detail-card,
.product-center-card,
.advantage-card,
.contact-strip,
.matrix-card,
.resource-card,
.brand-panel {
  color: var(--text);
  background: var(--soft);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-meta-card,
.detail-card,
.product-center-card,
.advantage-card,
.contact-strip,
.matrix-card,
.resource-card,
.brand-panel {
  padding: 30px;
}

.hero-meta-card label,
.panel-kicker,
.panel-stats span,
.detail-card ul,
.product-center-card > p,
.product-center-block ul,
.advantage-card p,
.matrix-card p,
.resource-card p,
.panel-list li,
.panel-note,
.footer-brand p,
.footer-action p,
.footer-info span,
.split-head .section-intro {
  color: var(--muted);
}

.hero-meta-card strong,
.product-center-block strong,
.advantage-card strong,
.matrix-card strong,
.contact-strip strong,
.panel-title,
.panel-stats strong {
  color: var(--text);
}

.section {
  padding: 86px 0;
}

.section-heading {
  gap: 12px;
  margin-bottom: 34px;
}

.detail-card::before,
.product-center-card::before {
  display: none;
}

.detail-card:hover,
.product-center-card:hover,
.advantage-card:hover,
.contact-strip:hover,
.brand-panel:hover,
.matrix-card:hover,
.resource-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.featured-center-card {
  background: var(--soft);
  border: 0;
}

.featured-center-card h3,
.featured-center-card p,
.featured-center-card li,
.featured-center-card strong,
.featured-center-card .card-index,
.featured-center-card .product-center-tagline {
  color: var(--text);
}

.featured-center-card p,
.featured-center-card li {
  color: var(--muted);
}

.card-index,
.product-center-tagline,
.text-link,
.matrix-card span,
.resource-label,
.contact-strip span {
  color: var(--navy-2);
  font-family: inherit;
}

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

.text-link:hover {
  color: var(--navy-3);
  transform: none;
}

.matrix-card:nth-child(2n),
.resource-card {
  background: var(--soft);
}

.matrix-card span,
.resource-label {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 14px;
}

.brand-panel {
  isolation: auto;
}

.panel-stats div {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.panel-list li::before {
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--navy-3);
  box-shadow: none;
}

.footer {
  padding: 44px 32px 52px;
  color: var(--muted);
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.footer-info strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.bilingual-en {
  display: block;
  margin-top: 0.28em;
  color: rgba(31, 41, 55, 0.58);
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: 0.72em;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.hero .bilingual-en,
.hero-meta-card label > .bilingual-en,
.hero-meta-card strong > .bilingual-en {
  color: rgba(255, 255, 255, 0.68);
}

h1 > .bilingual-en {
  margin-top: 0.35em;
  font-size: clamp(15px, 1.35vw, 21px);
  line-height: 1.35;
}

.hero-subpage h1.bilingualized,
h1.bilingualized {
  max-width: min(900px, 100%);
}

h2 > .bilingual-en {
  font-size: 0.46em;
}

h3 > .bilingual-en,
.panel-title > .bilingual-en,
.contact-strip strong > .bilingual-en {
  font-size: 0.58em;
}

.hero-subtitle > .bilingual-en,
.section-intro > .bilingual-en,
.detail-card p > .bilingual-en,
.product-center-card p > .bilingual-en,
.advantage-card p > .bilingual-en,
.matrix-card p > .bilingual-en,
.resource-card p > .bilingual-en,
.footer-brand p > .bilingual-en {
  font-size: 0.78em;
}

.nav-links a > .bilingual-en,
.button > .bilingual-en,
.text-link > .bilingual-en {
  margin-top: 0.05em;
  color: currentColor;
  font-size: 0.72em;
  line-height: 1.15;
  opacity: 0.72;
}

.button {
  flex-direction: column;
}

.panel-list li > .bilingual-en,
.product-center-block li > .bilingual-en,
.detail-card li > .bilingual-en {
  font-size: 0.82em;
}

@media (max-width: 1080px) {
  .hero-body {
    min-height: 38vh;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 68px 16px 40px;
  }

  .topbar {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    min-height: 48px;
    padding: 0 16px;
  }

  .brand-logo {
    width: 112px;
  }

  .nav-links {
    width: auto;
    max-width: calc(100vw - 158px);
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    font-size: 12px;
    scrollbar-width: none;
  }

  .topbar,
  .nav-links {
    overflow-y: hidden;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    min-height: auto;
    padding: 0;
    white-space: nowrap;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .nav-links a[aria-current="page"]::after {
    display: none;
  }

  h1,
  .hero-subpage h1 {
    max-width: 11ch;
    font-size: 40px;
    line-height: 1.1;
  }

  h1.bilingualized,
  .hero-subpage h1.bilingualized {
    max-width: 100%;
  }

  h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  h3 {
    font-size: 22px;
  }

  .hero-body,
  .hero-body-compact {
    min-height: 36vh;
    gap: 24px;
  }

  .hero-subtitle,
  .section-intro {
    font-size: 18px;
    line-height: 1.5;
  }

  .bilingual-en {
    font-size: 0.68em;
  }

  .hero-meta-card,
  .detail-card,
  .brand-panel,
  .product-center-card,
  .advantage-card,
  .contact-strip,
  .matrix-card,
  .resource-card {
    padding: 22px;
    border-radius: 8px;
  }

  .panel-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .panel-symbol {
    margin: 0 auto;
  }

  .section {
    padding: 64px 0;
  }

  .footer {
    padding: 34px 16px 42px;
  }
}
