:root {
  --brand: #0b4ea2;
  --brand-dark: #063b7a;
  --brand-soft: #eaf3ff;
  --accent: #ff8a1f;
  --ink: #172033;
  --muted: #5a6678;
  --line: #dbe3ee;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --shadow: 0 16px 34px rgba(9, 42, 84, 0.12);
  font-family:
    "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(208, 218, 232, 0.86);
  box-shadow: 0 4px 18px rgba(19, 43, 72, 0.06);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(1440px, calc(100% - 64px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  color: var(--brand);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px;
  color: var(--brand-dark);
  background: #f5f8fc;
  border: 1px solid #d7e2ef;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  position: relative;
  height: 64px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  color: #111827;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand);
  font-weight: 700;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: clamp(520px, 40vw, 620px);
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, #f8fbff 48%, #d9ecfb 100%),
    #f8fbff;
  user-select: none;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.95) 35%, rgba(255, 255, 255, 0.62) 54%, rgba(255, 255, 255, 0.08) 76%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.18) 100%);
  content: "";
}

.hero::after {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.hero-bg::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0), rgba(248, 251, 255, 0.24));
  content: "";
}

.hero-bg img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: min(74vw, 1120px);
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 64px));
  min-height: clamp(520px, 40vw, 620px);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-content {
  width: min(650px, 50vw);
  padding: 52px 0 68px;
  user-select: text;
}

.hero h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 46px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-kicker {
  position: relative;
  margin: 22px 0 18px;
  padding-left: 46px;
  color: #111827;
  font-size: 24px;
  line-height: 1.4;
}

.hero-kicker::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 4px;
  background: var(--accent);
  content: "";
  transform: translateY(-50%);
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: #243247;
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  min-width: 144px;
  height: 48px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(8, 76, 159, 0.18);
}

.btn:disabled,
.btn.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
  transform: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #0d63c8, #064896);
}

.btn-secondary {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.88);
}

.section {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}

.section-products {
  padding: 56px 0 34px;
}

.section-about {
  padding: 58px 0 20px;
}

.case-support-section {
  width: min(1180px, calc(100% - 64px));
  padding: 24px 0 64px;
}

.case-support-shell {
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: stretch;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(245, 249, 254, 0.92)),
    linear-gradient(135deg, rgba(11, 78, 162, 0.1), rgba(238, 117, 44, 0.08));
  border: 1px solid rgba(207, 219, 234, 0.96);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(37, 62, 92, 0.09);
}

.case-support-intro {
  min-height: 100%;
  padding: 4px 4px 4px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-support-intro h2 {
  max-width: 440px;
}

.case-support-intro p:not(.eyebrow) {
  max-width: 500px;
}

.case-support-intro .text-link {
  margin-top: 8px;
}

.case-support-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.case-support-card {
  position: relative;
  min-height: 112px;
  padding: 18px 20px 18px 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48px 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 228, 238, 0.96);
  border-radius: 7px;
  box-shadow: 0 12px 24px rgba(37, 62, 92, 0.07);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.case-support-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
}

.case-support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 78, 162, 0.2);
  box-shadow: 0 18px 30px rgba(37, 62, 92, 0.12);
}

.case-support-index {
  color: rgba(11, 78, 162, 0.16);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.case-support-card svg {
  width: 36px;
  height: 36px;
  margin: 0;
  color: var(--brand);
  stroke-width: 1.9;
}

.case-support-card strong,
.case-support-card span {
  display: block;
}

.case-support-card strong {
  color: var(--brand-dark);
  font-size: 18px;
  line-height: 1.35;
}

.case-support-card div span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.case-support-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(207, 219, 234, 0.88);
  border: 1px solid rgba(207, 219, 234, 0.94);
  border-radius: 6px;
}

.case-support-strip span {
  min-height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.home-about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: stretch;
}

.home-about-copy {
  padding: 22px 0;
}

.home-about-points {
  margin: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-about-points span {
  padding: 7px 12px;
  color: var(--brand);
  background: #edf5ff;
  border: 1px solid #cddff4;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--brand-dark);
  text-decoration: underline;
}

.workshop-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.workshop-showcase figure {
  min-height: 184px;
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(37, 62, 92, 0.08);
}

.workshop-showcase figure:first-child {
  grid-row: span 2;
}

.workshop-showcase img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.32s ease;
}

.workshop-showcase figure:hover img {
  transform: scale(1.06);
}

.workshop-showcase figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 5px 10px;
  color: #fff;
  background: rgba(4, 35, 77, 0.82);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.home-capability-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-capability-panel article {
  min-height: 158px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 16px;
  background: linear-gradient(180deg, #fff, #f6f9fd);
  border: 1px solid rgba(220, 228, 238, 0.92);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(37, 62, 92, 0.08);
}

.home-capability-panel svg {
  width: 38px;
  height: 38px;
  color: var(--brand);
  stroke-width: 1.9;
}

.home-capability-panel strong,
.home-capability-panel span {
  display: block;
}

.home-capability-panel strong {
  color: var(--brand-dark);
  font-size: 19px;
  line-height: 1.35;
}

.home-capability-panel span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.75;
}

.about-workshop {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-workshop figure {
  min-height: 190px;
  aspect-ratio: 4 / 3;
}

.about-workshop figure:first-child {
  grid-row: auto;
}

.about-workshop img {
  object-fit: cover;
  padding: 0;
}

.section-apps {
  padding: 34px 0 48px;
}

.section-flow {
  padding: 24px 0 36px;
}

.home-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-flow article {
  position: relative;
  min-height: 180px;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f7fafe);
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(37, 62, 92, 0.08);
}

.home-flow article::after {
  position: absolute;
  right: -18px;
  top: -22px;
  color: rgba(11, 78, 162, 0.06);
  content: attr(data-step);
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
}

.home-flow span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

.home-flow h3 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 20px;
}

.home-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.home-cta {
  width: min(1440px, calc(100% - 64px));
  margin: 18px auto 42px;
}

.home-cta-inner {
  padding: 34px 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(135deg, #063b7a, #0d63c8);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(8, 76, 159, 0.16);
}

.home-cta .eyebrow {
  color: #ffd3a6;
}

.home-cta h2 {
  max-width: 760px;
  margin: 8px 0 12px;
  font-size: 30px;
  line-height: 1.35;
}

.home-cta p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.home-cta .btn-primary {
  border-color: #fff;
  color: var(--brand);
  background: #fff;
}

.home-cta .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.78);
}

.content-grid {
  display: grid;
  grid-template-columns: 215px repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.section-panel {
  min-height: 172px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.09), transparent 36%),
    linear-gradient(160deg, #0a57b5, #063b7b);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.section-panel h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-panel p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.panel-link {
  width: fit-content;
  min-width: 166px;
  height: 42px;
  margin-top: 18px;
  padding: 0 18px 0 20px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0, 35, 80, 0.14);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.panel-link:hover,
.panel-link:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 22px rgba(0, 35, 80, 0.2);
  transform: translateY(-1px);
}

.panel-link svg {
  width: 16px;
  height: 16px;
}

.section-apps .panel-link {
  width: 100%;
  min-width: 0;
  padding-inline: 12px;
}

.product-card {
  position: relative;
  min-height: 218px;
  padding: 22px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, #fff, #f5f8fc);
  border: 1px solid rgba(220, 228, 238, 0.86);
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(37, 62, 92, 0.07);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.product-card:focus-visible {
  outline: 3px solid rgba(11, 78, 162, 0.2);
  outline-offset: 3px;
}

.product-card img {
  width: 100%;
  height: 124px;
  object-fit: contain;
  transition: transform 0.28s ease;
}

img[data-progressive-image] {
  opacity: 0;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)) 0 0 / 180% 100%,
    #eef4fa;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

img[data-progressive-image].is-loaded {
  opacity: 1;
  background: transparent;
}

.app-card img[data-progressive-image],
.case-card img[data-progressive-image],
.product-detail-main[data-progressive-image],
.case-detail-main[data-progressive-image],
.honor-cover[data-progressive-image] {
  transition: opacity 0.28s ease, transform 0.32s ease;
}

.product-card h3,
.app-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0;
  transition: color 0.22s ease, transform 0.22s ease;
}

.product-card p {
  min-height: 38px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.proof-bar {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto 8px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.proof-item {
  min-width: 0;
  min-height: 112px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #fff, #f6f9fd);
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 6px;
  box-shadow: 0 10px 22px rgba(37, 62, 92, 0.07);
}

.proof-item + .proof-item {
  border-left: 1px solid rgba(220, 228, 238, 0.9);
  padding-left: 18px;
}

.proof-item svg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  stroke: #111827;
  stroke-width: 1.8;
}

.proof-item strong {
  display: block;
  color: #111827;
  font-size: 17px;
  line-height: 1.35;
}

.proof-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.app-grid {
  grid-template-columns: 215px repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(150px, auto);
  align-items: stretch;
}

.app-grid .section-panel {
  grid-row: span 2;
  min-height: 320px;
  padding-inline: 22px;
}

.app-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(202, 216, 232, 0.9);
  border-radius: 6px;
  color: inherit;
  background: #eef4fa;
  box-shadow: 0 10px 20px rgba(37, 62, 92, 0.07);
  text-decoration: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.app-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.app-card:focus-visible {
  outline: 3px solid rgba(11, 78, 162, 0.24);
  outline-offset: 3px;
}

.app-card::after {
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, rgba(4, 22, 48, 0), rgba(4, 22, 48, 0.72));
  content: "";
}

.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 31, 72, 0.92), rgba(5, 87, 169, 0.72)),
    url("./assets/hero-engineering.jpg") center / cover no-repeat;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 58%);
  content: "";
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 64px));
  min-height: 190px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero span,
.eyebrow {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 8px 0 10px;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.65;
}

.subpage {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 42px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}

.text-block h2,
.section-heading h2 {
  margin: 8px 0 18px;
  color: var(--brand-dark);
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: 0;
}

.text-block p {
  margin: 0 0 16px;
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
}

.info-panel,
.contact-card,
.message-form {
  padding: 26px;
  background: linear-gradient(180deg, #fff, #f6f9fd);
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.info-panel h3,
.contact-card h2,
.message-form h2 {
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1.3;
}

.info-panel dl,
.contact-card dl {
  margin: 0;
}

.info-panel div,
.contact-card div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #e5edf6;
}

.info-panel div:last-child,
.contact-card div:last-child {
  border-bottom: 0;
}

.info-panel dt,
.contact-card dt {
  color: var(--muted);
  font-size: 14px;
}

.info-panel dd,
.contact-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.6;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: -8px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-heading-center {
  text-align: center;
}

.section-heading-center p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.culture-section {
  width: min(1180px, calc(100% - 64px));
  max-width: 1180px;
  margin-top: 4px;
  padding: 42px 0 50px;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.culture-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.culture-card {
  min-height: 178px;
  padding: 8px 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.culture-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f528d;
  background: #e8edf4;
  border-radius: 50%;
}

.culture-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.4;
}

.culture-card h3 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 21px;
  line-height: 1.35;
}

.culture-card p {
  max-width: 260px;
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-grid article,
.news-list article {
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(37, 62, 92, 0.08);
}

.honor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.honor-card {
  min-height: 100%;
  padding: 28px;
  display: grid;
  gap: 20px;
  background: #fff;
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(37, 62, 92, 0.08);
}

.honor-card.has-gallery {
  cursor: default;
}

.honor-card.has-gallery:hover {
  border-color: rgba(11, 78, 162, 0.42);
  box-shadow: 0 16px 30px rgba(37, 62, 92, 0.12);
}

.honor-card.has-gallery:focus-visible {
  outline: 3px solid rgba(11, 78, 162, 0.22);
  outline-offset: 3px;
}

.honor-media {
  position: relative;
  min-height: clamp(360px, 48vw, 620px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff, #edf4fc);
  border: 1px solid #dbe5f0;
  border-radius: 6px;
}

.honor-card.has-gallery .honor-media {
  cursor: default;
}

.honor-card.has-gallery .honor-media::after {
  position: absolute;
  inset: 18px;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(8, 28, 58, 0.24);
  content: "未经许可严禁盗用、复印、转发";
  font-size: clamp(18px, 3.3vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.72);
  transform: rotate(-18deg);
  pointer-events: none;
}

.honor-cover {
  width: 100%;
  height: clamp(340px, 46vw, 600px);
  object-fit: contain;
  padding: 18px;
  background: transparent;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 0.24s ease;
}

.honor-media,
.honor-media *:not(.honor-inline-nav) {
  -webkit-user-select: none;
  user-select: none;
}

.honor-card.has-gallery .honor-media:hover .honor-cover {
  transform: scale(1.015);
}

.honor-inline-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(14, 44, 84, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 4px;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition:
    opacity 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.honor-inline-nav:hover,
.honor-inline-nav:focus-visible {
  background: rgba(11, 78, 162, 0.88);
  outline: none;
}

.honor-card.has-gallery:hover .honor-inline-nav,
.honor-card.has-gallery:focus-within .honor-inline-nav,
.honor-media:hover .honor-inline-nav,
.honor-inline-nav:focus-visible {
  opacity: 1;
}

.honor-inline-nav.is-prev {
  left: 18px;
}

.honor-inline-nav.is-next {
  right: 18px;
}

.honor-card:not(.has-gallery) .honor-media {
  min-height: 220px;
}

.feature-grid svg,
.honor-media svg {
  width: 38px;
  height: 38px;
  color: var(--brand);
}

.feature-grid h3,
.honor-grid h3,
.news-list h2,
.catalog-card h2,
.case-card h2 {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 21px;
  line-height: 1.35;
}

.honor-card-copy {
  min-width: 0;
  text-align: center;
}

.feature-grid p,
.honor-grid p,
.news-list p,
.catalog-card p,
.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.honor-grid article > span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-line article {
  padding: 24px;
  background: linear-gradient(180deg, #fff, #f7fafe);
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 6px;
}

.process-line span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

.process-line h3 {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 20px;
}

.process-line p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.catalog-grid,
.product-card-grid {
  display: grid;
  gap: 18px;
}

.product-type-filters {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.product-type-filters button {
  min-height: 34px;
  padding: 0 22px;
  color: #173761;
  background: #fff;
  border: 1px solid #d8dee8;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.product-type-filters button:hover,
.product-type-filters button.is-active {
  color: #fff;
  background: #2f528d;
  border-color: #2f528d;
  box-shadow: 0 8px 18px rgba(47, 82, 141, 0.18);
}

.product-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-list-heading {
  text-align: center;
}

.product-list-heading p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.product-list-card {
  overflow: hidden;
  min-height: 344px;
  display: grid;
  grid-template-rows: 160px minmax(0, 1fr);
  background: #fff;
  border: 1px solid #e1e6ee;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(28, 51, 82, 0.1);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.product-list-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 82, 141, 0.32);
  box-shadow: 0 16px 30px rgba(28, 51, 82, 0.14);
}

.product-list-image-button {
  width: 100%;
  height: 160px;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  display: block;
  background: #eef3f8;
  border: 0;
  cursor: pointer;
}

.product-list-image-button:focus-visible {
  outline: 3px solid rgba(11, 78, 162, 0.24);
  outline-offset: -3px;
}

.product-list-image-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-list-card:hover .product-list-image-button img,
.product-list-image-button:focus-visible img {
  transform: scale(1.04);
}

.product-list-card > div {
  min-width: 0;
  padding: 18px 18px 20px;
  display: grid;
  align-content: start;
}

.product-list-type {
  width: fit-content;
  margin: 0 0 10px;
  padding: 4px 9px;
  color: var(--brand);
  background: #eef5ff;
  border: 1px solid #d7e6f8;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.product-list-card h2 {
  margin: 0 0 10px;
  color: #071f3d;
  font-size: 18px;
  line-height: 1.35;
}

.product-list-card p,
.product-list-card span {
  color: #233a59;
  font-size: 14px;
  line-height: 1.65;
}

.product-list-card p {
  margin: 0 0 10px;
}

.product-list-card span {
  display: block;
  margin-top: 4px;
}

.product-list-card .product-list-scene {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: start;
  gap: 7px;
  margin-top: 8px;
  color: #42526a;
}

.product-list-scene svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--accent);
}

.product-list-card > div > button:not(.product-title-link) {
  width: fit-content;
  min-height: 44px;
  margin-top: 16px;
  padding: 8px 4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1f477f;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.product-list-card > div > button:not(.product-title-link) svg {
  width: 17px;
  height: 17px;
}

.product-title-link,
.case-title-link {
  width: auto;
  margin: 0;
  min-height: 44px;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
}

.product-title-link:hover,
.product-title-link:focus-visible,
.case-title-link:hover,
.case-title-link:focus-visible {
  color: var(--brand);
}

.product-title-link:focus-visible,
.case-title-link:focus-visible {
  outline: 2px solid rgba(47, 82, 141, 0.35);
  outline-offset: 3px;
  border-radius: 3px;
}

.catalog-card {
  min-height: 170px;
  padding: 26px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg, #fff, #f7fafe);
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(37, 62, 92, 0.08);
}

.catalog-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.catalog-card span {
  display: block;
  margin-top: 12px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.catalog-card em {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  color: var(--brand);
  background: #eef5ff;
  border-radius: 4px;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.product-detail-view[hidden],
.product-catalog-view[hidden] {
  display: none;
}

.product-back,
.case-back {
  margin-bottom: 30px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #243a59;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.product-back svg,
.case-back svg {
  width: 18px;
  height: 18px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
  gap: 44px;
  align-items: start;
}

.product-detail-media {
  min-width: 0;
}

.product-detail-main {
  width: 100%;
  height: 360px;
  object-fit: contain;
  padding: 22px;
  background: #eef3f8;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(28, 51, 82, 0.1);
}

.product-detail-thumb {
  width: 150px;
  height: 92px;
  margin-top: 14px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid #2f528d;
  border-radius: 6px;
  cursor: pointer;
}

.product-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.product-detail-copy h2 {
  margin: 0 0 12px;
  color: #061f3f;
  font-size: 30px;
  line-height: 1.28;
}

.product-detail-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: var(--brand);
  background: #eef5ff;
  border: 1px solid #d7e6f8;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
}

.product-detail-copy > p {
  margin: 0 0 24px;
  color: #253a58;
  line-height: 1.9;
}

.product-detail-copy dl {
  margin: 0;
  display: grid;
  gap: 18px;
}

.product-detail-copy dl div {
  display: grid;
  gap: 8px;
}

.product-detail-copy dt,
.product-detail-copy h3 {
  color: #061f3f;
  font-weight: 900;
}

.product-detail-copy dd {
  margin: 0;
  color: #253a58;
  line-height: 1.7;
}

.product-detail-copy h3 {
  margin: 28px 0 14px;
  font-size: 16px;
}

.product-detail-copy ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.product-detail-copy li {
  position: relative;
  padding-left: 24px;
  color: #253a58;
  line-height: 1.7;
}

.product-detail-copy li::before {
  position: absolute;
  left: 0;
  top: 2px;
  color: #16a35b;
  content: "✓";
  font-weight: 900;
}

.product-detail-service {
  margin-top: 26px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #f7fbff, #fff);
  border: 1px solid #d9e6f3;
  border-left: 4px solid var(--accent);
  border-radius: 6px;
}

.product-detail-service strong,
.product-detail-service span {
  display: block;
}

.product-detail-service strong {
  color: var(--brand-dark);
  font-size: 16px;
}

.product-detail-service span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.7;
}

.product-detail-action {
  width: fit-content;
  min-width: 120px;
  height: 44px;
  margin-top: 30px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #2f528d;
  border-radius: 5px;
  font-weight: 900;
  text-decoration: none;
}

.case-detail-view[hidden] {
  display: none;
}

.case-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 42px;
  align-items: start;
}

.case-detail-media {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #eef3f8;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(28, 51, 82, 0.1);
}

.case-detail-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.case-detail-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 6px 12px;
  color: #fff;
  background: rgba(6, 31, 63, 0.76);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.case-detail-copy h2 {
  margin: 0 0 12px;
  color: #061f3f;
  font-size: 30px;
  line-height: 1.28;
}

.case-detail-copy > p {
  margin: 0 0 24px;
  color: #253a58;
  line-height: 1.9;
}

.case-detail-copy dl {
  margin: 0;
  display: grid;
  gap: 18px;
}

.case-detail-copy dl div {
  display: grid;
  gap: 8px;
}

.case-detail-copy dt,
.case-detail-copy h3 {
  color: #061f3f;
  font-weight: 900;
}

.case-detail-copy dd {
  margin: 0;
  color: #253a58;
  line-height: 1.7;
}

.case-detail-copy h3 {
  margin: 28px 0 14px;
  font-size: 16px;
}

.case-detail-copy ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.case-detail-copy li {
  position: relative;
  padding-left: 24px;
  color: #253a58;
  line-height: 1.7;
}

.case-detail-copy li::before {
  position: absolute;
  left: 0;
  top: 2px;
  color: #16a35b;
  content: "✓";
  font-weight: 900;
}

.case-detail-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.case-detail-actions a {
  min-width: 120px;
  height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #2f528d;
  border-radius: 5px;
  font-weight: 900;
  text-decoration: none;
}

.case-detail-actions a:last-child {
  color: #173761;
  background: #fff;
  border: 1px solid #d4deeb;
}

.case-card > div > a[href="./products.html"],
.case-detail-actions a[href="./products.html"] {
  display: none;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(37, 62, 92, 0.08);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.case-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.case-card .case-image-link {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  overflow: hidden;
  color: inherit;
  line-height: 0;
}

.case-card .case-image-link img {
  display: block;
}

.case-card .case-image-link:focus-visible {
  outline: 3px solid rgba(47, 82, 141, 0.42);
  outline-offset: -3px;
}

.case-card div {
  padding: 22px;
}

.case-card-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  color: var(--brand);
  background: #eef5ff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.case-card a {
  width: fit-content;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1f477f;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.case-card a svg {
  width: 17px;
  height: 17px;
}

.case-card:hover,
.case-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(47, 82, 141, 0.35);
  box-shadow: 0 20px 34px rgba(37, 62, 92, 0.16);
}

.case-card:hover img,
.case-card:focus-within img {
  transform: scale(1.06);
}

.case-card:hover h2,
.case-card:focus-within h2 {
  color: var(--brand);
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-list time {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 240px;
  padding: 42px 28px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f7fafe);
  border: 1px solid rgba(220, 228, 238, 0.92);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(37, 62, 92, 0.08);
}

.empty-state svg {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--brand);
}

.empty-state h2 {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 24px;
}

.empty-state p {
  max-width: 560px;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-section {
  padding-top: 16px;
}

.faq-section details {
  margin-bottom: 12px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(220, 228, 238, 0.9);
  border-radius: 6px;
}

.faq-section summary {
  cursor: pointer;
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 800;
}

.faq-section details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 28px;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 20px;
}

.wecom-card {
  padding: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 26px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(9, 80, 166, 0.08), rgba(255, 255, 255, 0.92) 48%),
    #fff;
  border: 1px solid rgba(220, 228, 238, 0.92);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(37, 62, 92, 0.08);
}

.wecom-copy span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.wecom-copy h2 {
  margin: 8px 0 10px;
  color: var(--brand-dark);
  font-size: 24px;
}

.wecom-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.wecom-qr {
  padding: 12px;
  background: #fff;
  border: 1px solid #d8e4f2;
  border-radius: 6px;
  box-shadow: inset 0 0 0 4px #f4f8fd;
}

.wecom-qr img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.map-card {
  grid-column: 1 / -1;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(220, 228, 238, 0.92);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(37, 62, 92, 0.08);
}

.map-card-head {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.map-card-head span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.map-card-head h2 {
  margin: 5px 0 0;
  color: var(--brand-dark);
  font-size: 24px;
}

.map-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.map-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 99, 200, 0.1), rgba(255, 138, 31, 0.08)),
    linear-gradient(180deg, #f8fbff, #eef5fd);
  border: 1px solid #d8e4f2;
  border-radius: 6px;
}

.interactive-map {
  width: 100%;
  min-height: 360px;
}

.interactive-map[hidden] {
  display: none;
}

.map-open-link {
  min-width: 136px;
  height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(47, 82, 141, 0.94);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(20, 44, 80, 0.2);
  z-index: 2;
}

.map-open-link:hover,
.map-open-link:focus-visible {
  background: #1f3f75;
}

.map-static {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    url("./assets/contact-map-bg.png") center center / cover no-repeat;
}

.map-static-real {
  background: var(--map-bg, url("./assets/contact-map-bg.png")) center center / cover no-repeat;
}

.map-static-grid,
.map-static-roads,
.map-static-labels {
  position: absolute;
  inset: 0;
  display: none;
}

.map-static-real .map-static-grid,
.map-static-real .map-static-roads,
.map-static-real .map-static-labels {
  display: none !important;
}

.map-grid-v,
.map-grid-h {
  position: absolute;
  display: block;
  background: rgba(113, 138, 168, 0.14);
}

.map-grid-v {
  top: 0;
  bottom: 0;
  width: 1px;
}

.map-grid-h {
  left: 0;
  right: 0;
  height: 1px;
}

.map-grid-v.is-left {
  left: 22%;
}

.map-grid-v.is-center {
  left: 50%;
}

.map-grid-v.is-right {
  left: 78%;
}

.map-grid-h.is-top {
  top: 24%;
}

.map-grid-h.is-middle {
  top: 50%;
}

.map-grid-h.is-bottom {
  top: 76%;
}

.map-road {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 0 0 1px rgba(186, 201, 219, 0.78),
    0 8px 18px rgba(37, 62, 92, 0.08);
}

.map-road::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  border-top: 1px dashed rgba(108, 129, 156, 0.42);
}

.map-road.is-primary {
  top: 48%;
  left: -6%;
  width: 112%;
  height: 54px;
  transform: rotate(-6deg);
}

.map-road.is-secondary {
  top: -10%;
  left: 56%;
  width: 44px;
  height: 122%;
  transform: rotate(12deg);
}

.map-road.is-tertiary {
  top: 14%;
  left: 8%;
  width: 54%;
  height: 34px;
  transform: rotate(28deg);
  opacity: 0.86;
}

.map-label {
  position: absolute;
  color: rgba(70, 92, 121, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.map-label.is-lng-left {
  left: 18px;
  bottom: 12px;
}

.map-label.is-lng-center {
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
}

.map-label.is-lng-right {
  right: 18px;
  bottom: 12px;
}

.map-label.is-lat-top {
  left: 12px;
  top: 18px;
  writing-mode: vertical-rl;
}

.map-label.is-lat-middle {
  left: 12px;
  top: 50%;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.map-label.is-lat-bottom {
  left: 12px;
  bottom: 18px;
  writing-mode: vertical-rl;
}

.map-static-pin {
  position: absolute;
  left: calc(var(--map-pin-x, 51.5) * 1%);
  top: calc(var(--map-pin-y, 58.5) * 1%);
  transform: translate(-50%, -99%);
  z-index: 2;
}

.map-pin-marker {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  width: 36px;
  height: 36px;
  background: #3d8cf4;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 12px 22px rgba(61, 140, 244, 0.26);
  transform: translateX(-50%) rotate(-45deg);
  z-index: 1;
}

.map-pin-marker::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: #fff;
  border-radius: 50%;
}

.map-static-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.map-pin-bubble {
  position: relative;
  z-index: 3;
  min-width: 248px;
  max-width: 320px;
  margin-top: 0;
  padding: 13px 16px 12px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(213, 210, 206, 0.96);
  border-radius: 4px;
  box-shadow:
    0 14px 26px rgba(73, 74, 77, 0.14),
    0 2px 6px rgba(73, 74, 77, 0.08);
}

.map-pin-bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.97);
  border-right: 1px solid rgba(213, 210, 206, 0.96);
  border-bottom: 1px solid rgba(213, 210, 206, 0.96);
  transform: translateX(-50%) rotate(45deg);
}

.map-pin-bubble span {
  display: inline-flex;
  color: #a79b92;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.map-pin-bubble strong {
  display: block;
  margin-top: 3px;
  padding-bottom: 8px;
  color: #4f4d4c;
  border-bottom: 1px solid rgba(216, 211, 205, 0.96);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
}

.map-pin-bubble p {
  margin: 7px 0 0;
  color: #7a7570;
  font-size: 12px;
  line-height: 1.45;
}

.map-pin-bubble small {
  display: block;
  min-width: 0;
  color: rgba(122, 117, 112, 0.88);
  font-size: 10px;
  line-height: 1.35;
}

.map-pin-footer {
  margin-top: 9px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.map-pin-footer .map-open-link {
  justify-self: end;
  width: auto;
  min-width: 118px;
  height: 34px;
  padding: 0 12px;
  font-size: 12px;
}

.map-open-link-mobile {
  display: none;
}

.map-frame {
  background: #ece9e6;
  border-color: #d6d0ca;
}

.map-static {
  background:
    url("./assets/contact-map-bg.png") center center / cover no-repeat;
}

.map-address-card {
  min-height: 360px;
  padding: 34px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.map-address-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(11, 78, 162, 0.2);
}

.map-address-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.4;
}

.map-address-copy span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.map-address-copy strong {
  display: block;
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1.35;
}

.map-address-copy p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.map-fallback {
  min-height: 420px;
  padding: 28px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(13, 99, 200, 0.1), rgba(255, 138, 31, 0.08)),
    linear-gradient(180deg, #f8fbff, #eef5fd);
}

.map-fallback[hidden] {
  display: none;
}

.map-fallback svg {
  width: 58px;
  height: 58px;
  padding: 13px;
  color: #fff;
  background: var(--brand);
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(11, 78, 162, 0.2);
}

.map-fallback strong {
  display: block;
  color: var(--brand-dark);
  font-size: 24px;
}

.map-fallback span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.map-status {
  font-size: 14px;
}

.map-info {
  min-width: 220px;
  padding: 2px 0;
}

.map-info strong,
.map-info span {
  display: block;
}

.map-info strong {
  color: var(--brand-dark);
  font-size: 15px;
}

.map-info span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.message-form {
  display: grid;
  gap: 14px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-error {
  color: #c0362c;
}

.form-status.is-success {
  color: #0f7a48;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  max-width: min(420px, calc(100% - 32px));
  padding: 12px 16px;
  color: #fff;
  background: rgba(4, 35, 77, 0.96);
  border-radius: 6px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.copy-email-button {
  margin: 0;
  min-height: 44px;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
  text-align: left;
  text-decoration: none;
  white-space: normal;
  word-break: break-all;
  overflow-wrap: anywhere;
}

.copy-email-button:hover,
.copy-email-button:focus-visible {
  color: var(--brand);
  text-decoration: underline;
}

.phone-consult {
  display: grid;
  gap: 5px;
}

.phone-consult strong,
.phone-consult span {
  display: block;
}

.phone-consult span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.contact-phone-button {
  width: fit-content;
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  background: #eef6ff;
  border: 1px solid #c9def5;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.contact-phone-button:hover,
.contact-phone-button:focus-visible {
  color: var(--brand-dark);
  background: #fff;
  border-color: var(--brand);
  outline: 2px solid rgba(11, 78, 162, 0.16);
}

.phone-dialog[hidden] {
  display: none;
}

.phone-dialog {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.phone-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 35, 0.52);
}

.phone-dialog-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(220, 228, 238, 0.96);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 18, 35, 0.28);
}

.phone-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #42526a;
  background: #f4f7fb;
  border: 1px solid #dbe3ee;
  border-radius: 4px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}

.phone-dialog-close span {
  display: block;
  transform: translateY(-1px);
}

.phone-dialog-kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.phone-dialog-panel h2 {
  margin: 8px 36px 10px 0;
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1.35;
}

.phone-dialog-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.phone-dialog-number {
  min-height: 48px;
  margin: 20px 0 18px;
  padding: 14px 16px;
  display: block;
  color: #111827;
  background: #f7fafc;
  border: 1px solid #dce6f2;
  border-radius: 6px;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0;
  word-break: break-word;
}

.phone-dialog-actions {
  display: flex;
  gap: 12px;
}

.phone-dialog-actions .btn {
  min-width: 0;
  flex: 1 1 0;
}

.phone-dialog-status {
  min-height: 22px;
  margin-top: 14px !important;
  font-size: 13px;
}

body.has-modal-open {
  overflow: hidden;
}

.footer-contact .copy-email-button:hover,
.footer-contact .copy-email-button:focus-visible {
  color: #fff;
}

.footer-contact .copy-email-button {
  align-items: flex-start;
}

.footer-contact .phone-consult {
  gap: 3px;
}

.footer-contact .phone-consult span {
  color: rgba(255, 255, 255, 0.74);
}

.footer-contact .contact-phone-button {
  min-height: 40px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.footer-contact .contact-phone-button:hover,
.footer-contact .contact-phone-button:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.78);
}

.message-form label {
  display: grid;
  gap: 8px;
}

.message-form label.has-error::after {
  color: #c0362c;
  content: attr(data-error);
  font-size: 12px;
  line-height: 1.5;
}

.message-form span {
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.message-form label.has-error span {
  color: #c0362c;
}

.message-form input,
.message-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfdbea;
  border-radius: 4px;
  font: inherit;
  resize: vertical;
}

.message-form input:focus,
.message-form textarea:focus {
  outline: 2px solid rgba(11, 78, 162, 0.18);
  border-color: var(--brand);
}

.message-form input.is-invalid,
.message-form textarea.is-invalid {
  background: #fff7f5;
  border-color: #d65a51;
}

.message-form input.is-invalid:focus,
.message-form textarea.is-invalid:focus {
  outline: 2px solid rgba(214, 90, 81, 0.18);
  border-color: #c0362c;
}

.product-card:hover,
.product-card:focus-within,
.app-card:hover,
.app-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(37, 62, 92, 0.14);
}

.product-card:hover {
  border-color: rgba(11, 78, 162, 0.32);
}

.product-card:hover img,
.product-card:focus-within img {
  transform: scale(1.05);
}

.product-card:hover h3,
.product-card:focus-within h3 {
  color: var(--brand);
  transform: translateY(-2px);
}

.app-card:hover img {
  transform: scale(1.04);
}

.app-card h3 {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 8px 12px;
  color: #fff;
  background: rgba(6, 47, 98, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  text-align: left;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
}

.reason-band {
  margin-top: 24px;
  color: var(--ink);
  background: var(--surface-soft);
  border-top: 1px solid var(--line);
}

.reason-inner {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 52px 0 58px;
}

.reason-inner h2 {
  margin: 0 0 30px;
  text-align: center;
  font-size: 34px;
  letter-spacing: 0;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.reason-list div {
  min-height: 150px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 0 12px 26px rgba(9, 42, 84, 0.08);
}

.reason-list strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
}

.reason-list span {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.site-footer {
  padding: 26px 24px 18px;
  color: #fff;
  background: #315487;
  font-size: 13px;
}

.footer-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.3fr;
  gap: 44px;
}

.footer-col h2 {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
}

.footer-contact ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  stroke-width: 2.4;
}

.footer-contact a,
.footer-nav a {
  color: inherit;
  text-decoration: none;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 3px;
}

.footer-nav h2 {
  margin-bottom: 4px;
}

.footer-nav a {
  width: max-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  transform: translateX(3px);
}

.footer-about p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.footer-bottom {
  width: min(1140px, 100%);
  margin: 16px auto 0;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    gap: 18px;
  }

  .nav-link {
    height: 42px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-bg img {
    width: 82vw;
  }

  .hero-inner {
    min-height: 500px;
  }

  .hero-content {
    width: min(600px, 56vw);
  }

  .hero h1 {
    font-size: 38px;
  }

  .content-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-about {
    grid-template-columns: 1fr;
  }

  .case-support-shell {
    grid-template-columns: 1fr;
  }

  .case-support-intro h2,
  .case-support-intro p:not(.eyebrow) {
    max-width: 760px;
  }

  .home-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-cta-inner {
    grid-template-columns: 1fr;
  }

  .home-cta-actions {
    justify-content: flex-start;
  }

  .section-panel {
    grid-column: 1 / -1;
    min-height: 142px;
  }

  .app-grid {
    grid-template-columns: 215px repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(164px, auto);
  }

  .app-grid .section-panel {
    grid-column: auto;
    grid-row: span 2;
    min-height: 336px;
  }

  .app-card-featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .proof-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item + .proof-item {
    border-left: 1px solid rgba(220, 228, 238, 0.9);
    padding-left: 18px;
  }

  .reason-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .culture-grid,
  .about-workshop,
  .case-grid,
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-layout,
  .case-detail-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px 42px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-about p {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .hero-inner,
  .section,
  .proof-bar,
  .reason-inner,
  .subpage,
  .page-hero > div {
    width: min(100% - 24px, 620px);
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 12px;
    padding: 9px 0;
  }

  .brand {
    font-size: 20px;
    line-height: 1.28;
    white-space: normal;
  }

  .nav-toggle {
    display: inline-flex;
    height: 36px;
    padding: 0 10px;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    padding: 8px 0 4px;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-top: 1px solid #e3ebf5;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    height: 42px;
    padding: 0 10px;
    border-radius: 4px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.is-active {
    background: #edf5ff;
  }

  .hero {
    min-height: auto;
    display: grid;
    background: linear-gradient(180deg, #fff 0%, #f7fbff 48%, #eaf4fd 100%);
    padding-bottom: 0;
  }

  .hero::before {
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.97) 58%, rgba(255, 255, 255, 0.2) 100%);
  }

  .hero::after {
    display: none;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    grid-row: 2;
    height: clamp(230px, 58vw, 290px);
    margin-top: -6px;
    background: #e8f4fd;
  }

  .hero-bg::after {
    inset: 0;
    height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.06) 30%, rgba(255, 255, 255, 0) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 42%);
  }

  .hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% 38%;
  }

  .hero-inner {
    grid-row: 1;
    min-height: auto;
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.22;
  }

  .hero-kicker {
    margin: 16px 0 12px;
    padding-left: 34px;
    font-size: 18px;
  }

  .hero-kicker::before {
    width: 24px;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 18px;
    gap: 10px;
  }

  .btn {
    height: 44px;
    min-width: calc(50% - 5px);
    padding: 0 16px;
  }

  .section-products {
    padding: 38px 0 24px;
  }

  .section-about {
    padding: 40px 0 16px;
  }

  .section-apps {
    padding: 26px 0 32px;
  }

  .section-flow {
    padding: 22px 0 30px;
  }

  .home-about {
    gap: 18px;
  }

  .home-about-copy {
    padding: 0;
  }

  .home-about-points {
    margin: 16px 0;
    gap: 8px;
  }

  .content-grid,
  .proof-bar,
  .reason-list,
  .feature-grid,
  .culture-grid,
  .workshop-showcase,
  .home-capability-panel,
  .home-flow,
  .process-line,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .app-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .app-grid .section-panel,
  .app-card-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .app-grid .section-panel {
    min-height: 142px;
    padding: 24px 22px;
  }

  .home-cta {
    width: min(100% - 24px, 620px);
    margin-bottom: 36px;
  }

  .home-cta-inner {
    padding: 24px 18px;
    gap: 18px;
  }

  .home-cta h2 {
    font-size: 22px;
  }

  .home-cta-actions {
    justify-content: stretch;
  }

  .home-cta-actions .btn {
    width: 100%;
  }

  .case-support-section {
    padding: 18px 0 44px;
  }

  .case-support-shell {
    padding: 20px;
    gap: 18px;
  }

  .case-support-steps,
  .case-support-strip {
    grid-template-columns: 1fr;
  }

  .case-support-card {
    min-height: 0;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px 14px;
  }

  .case-support-card svg {
    grid-column: 1;
    grid-row: 2;
    width: 32px;
    height: 32px;
  }

  .case-support-card div {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .honor-card {
    padding: 18px;
    gap: 16px;
  }

  .honor-media {
    min-height: clamp(300px, 96vw, 500px);
  }

  .honor-cover {
    height: clamp(280px, 92vw, 480px);
    padding: 10px;
  }

  .honor-card.has-gallery .honor-media::after {
    inset: 14px;
    font-size: clamp(15px, 6vw, 24px);
  }

  .honor-inline-nav {
    width: 36px;
    height: 46px;
    font-size: 28px;
    opacity: 1;
  }

  .honor-inline-nav.is-prev {
    left: 10px;
  }

  .honor-inline-nav.is-next {
    right: 10px;
  }

  .page-hero > div {
    min-height: 150px;
    padding: 26px 0;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero p {
    font-size: 14px;
    line-height: 1.65;
  }

  .text-block h2,
  .section-heading h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .culture-section {
    padding: 32px 0 34px;
  }

  .culture-grid {
    gap: 16px;
  }

  .culture-card {
    min-height: 0;
    padding: 12px 18px;
  }

  .culture-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }

  .culture-icon svg {
    width: 28px;
    height: 28px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .catalog-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .product-list-card {
    grid-template-rows: 170px minmax(0, 1fr);
  }

  .product-list-image-button {
    height: 170px;
  }

  .catalog-card img {
    height: 125px;
  }

  .product-type-filters {
    justify-content: flex-start;
  }

  .product-type-filters button {
    min-height: 34px;
    padding: 0 14px;
  }

  .product-detail-main {
    height: 230px;
    padding: 16px;
  }

  .product-detail-copy h2,
  .case-detail-copy h2 {
    font-size: 26px;
  }

  .product-detail-copy > p,
  .case-detail-copy > p {
    margin-bottom: 18px;
    line-height: 1.8;
  }

  .product-detail-copy dl,
  .case-detail-copy dl {
    gap: 14px;
  }

  .product-detail-service {
    margin-top: 20px;
    padding: 16px;
  }

  .product-detail-action,
  .case-detail-actions a {
    width: 100%;
    margin-top: 22px;
  }

  .honor-card {
    padding: 18px;
    gap: 16px;
  }

  .info-panel div,
  .contact-card div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-card {
    min-height: 0;
    padding: 18px 16px 14px;
  }

  .product-card img {
    height: 118px;
    margin-bottom: 12px;
  }

  .product-card p {
    min-height: 0;
  }

  .app-card {
    min-height: 168px;
    aspect-ratio: 16 / 9;
    padding: 0;
  }

  .home-capability-panel article {
    min-height: 0;
    padding: 18px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .home-capability-panel svg {
    width: 34px;
    height: 34px;
  }

  .home-capability-panel span {
    margin-top: 5px;
    line-height: 1.65;
  }

  .map-frame,
  .interactive-map,
  .map-static,
  .map-address-card {
    min-height: 0;
  }

  .map-pin-bubble {
    min-width: 0;
    max-width: 260px;
    padding: 12px 14px;
  }

  .map-pin-bubble strong {
    font-size: 16px;
  }

  .map-pin-bubble p {
    font-size: 13px;
  }

  .map-pin-footer {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .map-pin-footer .map-open-link {
    width: auto;
    min-width: 104px;
    padding: 0 10px;
    white-space: nowrap;
  }

  .map-address-card {
    padding: 24px 18px;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }

  .map-address-icon {
    width: 52px;
    height: 52px;
  }

  .map-address-icon svg {
    width: 28px;
    height: 28px;
  }

  .map-address-copy strong {
    font-size: 20px;
  }

  .map-address-copy p {
    font-size: 15px;
  }

  .map-open-link {
    width: 100%;
  }

  .proof-item {
    min-height: 92px;
    padding: 16px;
  }

  .proof-item + .proof-item {
    padding-left: 16px;
  }

  .proof-item svg {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .home-flow article {
    min-height: 0;
    padding: 20px;
  }

  .case-card img {
    height: 170px;
  }

  .case-card div {
    padding: 18px;
  }

  .case-card p {
    line-height: 1.7;
  }

  .contact-card,
  .info-panel,
  .map-card {
    padding: 20px;
  }

  .map-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .map-card-head h2 {
    font-size: 22px;
  }

  .map-frame,
  .interactive-map,
  .map-static,
  .map-fallback {
    height: 320px;
    min-height: 320px;
  }

  .map-frame {
    width: 100%;
  }

  .map-pin-bubble {
    width: min(260px, calc(100vw - 84px));
    max-width: min(260px, calc(100vw - 84px));
    padding: 10px 12px;
  }

  .map-pin-bubble::before {
    display: none;
  }

  .map-pin-bubble span,
  .map-pin-bubble small {
    display: none;
  }

  .map-pin-bubble strong {
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 14px;
    line-height: 1.35;
  }

  .map-pin-bubble p {
    font-size: 11px;
    line-height: 1.4;
  }

  .map-pin-footer {
    display: block;
    margin-top: 8px;
  }

  .map-pin-footer .map-open-link {
    width: 100%;
    min-width: 0;
  }

  .map-pin-marker {
    top: calc(100% - 6px);
    width: 38px;
    height: 38px;
    border-width: 4px;
  }

  .map-pin-marker::after {
    inset: 9px;
  }

  .map-fallback {
    padding: 22px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 12px;
  }

  .map-fallback svg {
    width: 48px;
    height: 48px;
    padding: 11px;
  }

  .map-fallback strong {
    font-size: 20px;
  }

  .map-open-link {
    right: 10px;
    left: 10px;
    bottom: 10px;
    width: auto;
    min-width: 0;
  }

  .wecom-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wecom-qr {
    width: min(188px, 100%);
  }

  .phone-dialog {
    padding: 16px;
  }

  .phone-dialog-panel {
    padding: 22px;
  }

  .phone-dialog-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(9, 42, 84, 0.12);
  }

  .phone-dialog-panel h2 {
    margin-right: 34px;
    font-size: 21px;
  }

  .phone-dialog-number {
    font-size: 19px;
  }

  .phone-dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .phone-dialog-actions .btn {
    width: 100%;
  }

  .site-footer {
    padding: 26px 18px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-col h2 {
    margin-bottom: 9px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 14px;
  }

  .footer-nav h2 {
    grid-column: 1 / -1;
  }

  .footer-nav a {
    width: fit-content;
  }

  .footer-contact ul {
    gap: 7px;
  }

  .footer-contact li {
    gap: 8px;
    line-height: 1.45;
  }

  .footer-about p {
    line-height: 1.55;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 14px;
    flex-direction: column;
    gap: 2px;
    text-align: left;
    align-items: flex-start;
  }

}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .btn:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .btn {
    min-width: 0;
    width: auto;
  }
}


.honor-cover {
  transform: rotate(var(--honor-rotation, 0deg));
}

.honor-card.has-gallery .honor-media:hover .honor-cover {
  transform: rotate(var(--honor-rotation, 0deg)) scale(1.015);
}
