@font-face {
  font-family: PMInter;
  src: url('/Public/common/fonts/inter-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: PMNoto;
  src: url('/Public/common/fonts/noto-sans-sc-900.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: PMBebas;
  src: url('/Public/common/fonts/bebas-neue.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

:root {
  --pm-blue: #15356f;
  --pm-deep: #0a1e45;
  --pm-red: #e53935;
  --pm-ink: #14213d;
  --pm-muted: #607089;
  --pm-line: #d9e1ee;
  --pm-paper: #f4f7fb;
  --pm-white: #fff;
  --pm-cyan: #39b8d6;
  --pm-shadow: 0 28px 80px rgba(10, 30, 69, .16);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-xl: 30px;
  --radius-2xl: 34px;
  --radius-pill: 999px;
  --stack-spacing: 48px;
  --section-padding: 60px;
  --transition-organic: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  background: linear-gradient(135deg, #f7faff 0%, #eef4fb 45%, #f9fbfd 100%);
}

.pm-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.pm-page {
  overflow: hidden;
  color: var(--pm-ink);
  font: 16px/1.75 "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

.pm-breadcrumb-wrap {
  margin-top: 88px;
  background: #f3f6fb;
  border-bottom: 1px solid var(--pm-line);
}

.pm-breadcrumb {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 17px;
  font-weight: 900;
  color: #5b677c;
}

.pm-breadcrumb a {
  color: #5b677c;
}

.pm-breadcrumb span {
  color: #aab4c5;
}

.pm-breadcrumb strong {
  color: var(--pm-blue);
  font-weight: 900;
}

.pm-hero {
  position: relative;
  min-height: 620px;
  padding: 60px 0;
  color: #fff;
  background: radial-gradient(circle at 76% 16%, rgba(57, 184, 214, .42), transparent 28%), linear-gradient(135deg, #071832 0%, #0a1e45 46%, #15356f 100%);
}

.pm-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(0deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.pm-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pm-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: #bdd8ff;
  font-weight: 900;
  text-decoration: none;
}

.pm-eyebrow {
  margin: 0 0 16px;
  color: var(--pm-red);
  font: 900 14px/1 PMInter, sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.pm-hero h1 {
  margin: 0;
  font: 900 clamp(36px, 5vw, 64px)/1.06 PMInter, PMNoto, sans-serif;
  letter-spacing: -2px;
  max-width: 720px;
}

.pm-lead {
  margin: 24px 0 0;
  max-width: 680px;
  color: #d8e7ff;
  font-size: 19px;
  line-height: 1.6;
}

.pm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.pm-tags span {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
}

.pm-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 56px;
  padding: 0 32px;
  border-radius: var(--radius-xs);
  font-weight: 900;
  font-size: 17px;
  transition: all .35s var(--transition-organic);
  cursor: pointer;
  text-decoration: none;
}

.pm-btn--primary {
  background: var(--pm-red);
  color: #fff;
  box-shadow: 0 14px 30px rgba(229, 57, 53, .3);
}

.pm-btn--primary:hover {
  background: #b71c1c;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(229, 57, 53, .4);
}

.pm-btn--ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(10px);
}

.pm-btn--ghost:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-4px);
}

.pm-hero__media {
  position: relative;
}

.pm-photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: var(--pm-shadow);
  cursor: zoom-in;
}

.pm-photo-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .35) 45%, transparent 62%);
  transform: translateX(-120%);
  animation: scan 5.8s ease-in-out infinite;
}

.pm-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  padding: 30px 34px 90px;
  filter: drop-shadow(0 24px 26px rgba(10, 30, 69, .18));
}

.pm-photo-card__caption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #142a59 0%, #3f527a 100%);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 14px 30px rgba(10, 30, 69, .2);
}

.pm-photo-card__caption b {
  font: 900 28px/1.15 PMInter, PMNoto, sans-serif;
  letter-spacing: .02em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .28);
}

.pm-photo-card__caption span {
  font-size: 18px;
  color: #eaf2ff;
}

.pm-metric-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 0;
  position: relative;
  z-index: 2;
}

.pm-metric-board div {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--pm-deep);
  box-shadow: var(--pm-shadow);
}

.pm-metric-board small {
  display: block;
  color: var(--pm-muted);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 4px;
}

.pm-metric-board strong {
  display: block;
  font: 400 24px/1 PMBebas, sans-serif;
  color: var(--pm-blue);
}

@keyframes scan {
  0%, 45% {
    transform: translateX(-120%)
  }
  70%, 100% {
    transform: translateX(120%)
  }
}

.pm-sticky-nav {
  position: sticky;
  top: 70px;
  z-index: 20;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--pm-line);
}

.pm-sticky-nav .pm-shell {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.pm-sticky-nav .pm-shell::-webkit-scrollbar {
  display: none;
}

.pm-sticky-nav a {
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--pm-muted);
  font-weight: 900;
  font-size: 15px;
  text-decoration: none;
  transition: all .3s;
}

.pm-sticky-nav a:hover, .pm-sticky-nav a.active {
  background: var(--pm-blue);
  color: #fff;
}

.pm-section {
  padding: var(--section-padding) 0;
}

.pm-section__head {
  max-width: 820px;
  margin-bottom: var(--stack-spacing);
}

.pm-section__head h2 {
  margin: 0;
  color: var(--pm-deep);
  font: 900 clamp(32px, 4vw, 48px)/1.08 PMInter, PMNoto, sans-serif;
  letter-spacing: -1.5px;
}

.pm-section__head p:not(.pm-eyebrow) {
  margin: 16px 0 0;
  color: var(--pm-muted);
  font-size: 18px;
}

.pm-table-card {
  overflow: auto;
  border: 1px solid var(--pm-line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--pm-shadow);
}

.pm-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.pm-table th, .pm-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--pm-line);
}

.pm-table th {
  background: var(--pm-blue);
  color: #fff;
  font-weight: 900;
}

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

.pm-table td:nth-child(2) {
  font-weight: 900;
  color: var(--pm-blue);
}

.pm-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pm-spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  background: var(--pm-paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--pm-line);
}

.pm-spec-item span {
  color: var(--pm-muted);
  font-weight: 900;
  font-size: 16px;
}

.pm-spec-item b {
  color: var(--pm-blue);
  font: 900 20px PMInter, sans-serif;
}

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

.pm-config-card {
  position: relative;
  min-height: 170px;
  padding: 30px 34px 32px;
  border: 1px solid rgba(21, 53, 111, .16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(244, 247, 251, .88)),
    radial-gradient(circle at 92% 12%, rgba(57, 184, 214, .16), transparent 34%);
  box-shadow: 0 18px 46px rgba(10, 30, 69, .08);
  overflow: hidden;
}

.pm-config-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--pm-red), var(--pm-cyan));
}

.pm-config-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(21, 53, 111, .08);
  color: #5c6b83;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

.pm-config-card b {
  display: block;
  margin-top: 22px;
  color: var(--pm-deep);
  font: 900 clamp(22px, 2.4vw, 30px)/1.45 PMInter, PMNoto, sans-serif;
  letter-spacing: -.03em;
  word-break: break-word;
}

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

.pm-holographic-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 12%, rgba(57, 184, 214, .28), transparent 28%),
    linear-gradient(165deg, #0a1e45 0%, #15356f 100%);
  color: #fff;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 30px 70px rgba(10, 30, 69, .18);
}

.pm-holographic-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 42px 90px rgba(10, 30, 69, .25);
}

.pm-holographic-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .15) 45%, transparent 62%);
  transform: translateX(-120%);
}

.pm-holographic-card:hover:before {
  animation: scan 1.5s ease-in-out;
}

.pm-holographic-card .deco-text {
  position: absolute;
  top: 10px;
  right: -10px;
  font: 400 80px/1 PMBebas, sans-serif;
  color: rgba(255, 255, 255, .05);
  pointer-events: none;
}

.pm-holographic-card span {
  display: block;
  color: var(--pm-cyan);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.pm-holographic-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .32);
}

.pm-holographic-card p {
  margin: 12px 0 0;
  font-size: 15px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.5;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .28);
}

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

.pm-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--pm-shadow);
  transition: all .35s;
}

.pm-gallery__item button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.pm-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: .5s var(--transition-organic);
}

.pm-gallery__item:hover img {
  transform: scale(1.1);
}

.pm-gallery__item figcaption {
  padding: 20px 24px;
}

.pm-gallery__item b {
  display: block;
  color: var(--pm-blue);
  font-size: 18px;
  font-weight: 900;
}

.pm-gallery__item p {
  margin: 6px 0 0;
  color: var(--pm-muted);
  font-size: 14px;
}

.pm-proof-grid {
  display: grid;
  grid-template-columns: minmax(430px, .9fr) 1fr;
  gap: 30px;
  align-items: stretch;
}

.pm-score-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--pm-blue), var(--pm-deep));
  color: #fff;
  box-shadow: 0 28px 70px rgba(10, 30, 69, .18);
}

.pm-score-card__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.pm-score-card__head span {
  display: block;
  color: #d8e7ff;
  font-size: 15px;
  font-weight: 900;
}

.pm-score-card__head strong {
  display: block;
  font: 400 86px/1 PMBebas, sans-serif;
  margin-top: 8px;
}

.pm-score-card__head em {
  display: block;
  color: #ffca28;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 4px;
  white-space: nowrap;
  transform: translateY(-10px);
}

.pm-score-card p {
  margin: 16px 0 26px;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
}

.pm-score-bars {
  display: grid;
  gap: 14px;
}

.pm-score-row {
  display: grid;
  grid-template-columns: 74px 1fr 34px;
  gap: 14px;
  align-items: center;
}

.pm-score-row span,
.pm-score-row b {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.pm-score-row b {
  text-align: right;
}

.pm-score-row i {
  height: 10px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .16);
}

.pm-score-row i em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #78d5ef 0%, #2d6cdf 58%, #e53935 100%);
  box-shadow: 0 0 18px rgba(120, 213, 239, .48);
}

.pm-review-list {
  position: relative;
  max-height: 470px;
  overflow: hidden;
  padding-right: 4px;
  mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
}

.pm-review-track {
  display: grid;
  gap: 16px;
  animation: reviewMarquee 28s linear infinite;
}

.pm-review-list:hover .pm-review-track {
  animation-play-state: paused;
}

.pm-review-card {
  padding: 24px 30px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--pm-line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .03);
}

.pm-review-card header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pm-review-card b {
  font-size: 18px;
  color: var(--pm-blue);
}

.pm-review-card span {
  color: #ff9800;
  font-weight: 900;
}

.pm-review-card p {
  margin: 0;
  color: var(--pm-muted);
  font-size: 16px;
}

@keyframes reviewMarquee {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-50% - 8px));
  }
}

.pm-article {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--pm-line);
  box-shadow: var(--pm-shadow);
}

.pm-article img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 32px auto;
  display: block;
}

.pm-faq-list {
  display: grid;
  gap: 16px;
}

.pm-faq-list details {
  background: #fff;
  border: 1px solid var(--pm-line);
  border-radius: var(--radius-md);
  padding: 0 24px;
}

.pm-faq-list summary {
  padding: 20px 0;
  font-weight: 900;
  color: var(--pm-blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pm-faq-list summary:after {
  content: "+";
  font-size: 24px;
}

.pm-faq-list details[open] summary:after {
  content: "-";
}

.pm-faq-list p {
  padding-bottom: 20px;
  color: var(--pm-muted);
  margin: 0;
}

.pm-consult {
  padding: 60px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--pm-blue), var(--pm-deep));
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.pm-consult h2 {
  font: 900 48px/1.1 PMInter, sans-serif;
  margin: 0 0 16px;
}

.pm-consult p {
  font-size: 20px;
  color: rgba(255, 255, 255, .8);
}

.pm-consult__box {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--pm-deep);
}

.pm-consult__box b {
  display: block;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pm-muted);
  margin-bottom: 8px;
}

.pm-consult__box span {
  display: block;
  font: 400 64px/1 PMBebas, sans-serif;
  color: var(--pm-blue);
  margin-bottom: 24px;
}

.pm-faq-list details {
  background: #fff;
  border: 1px solid var(--pm-line);
  border-radius: var(--radius-md);
  padding: 0 24px;
  transition: all .3s;
}

.pm-faq-list details:hover {
  border-color: var(--pm-blue);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

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

.pm-related-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--pm-line);
  overflow: hidden;
  text-decoration: none;
  transition: all .35s var(--transition-organic);
  display: flex;
  flex-direction: column;
}

.pm-related-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--pm-shadow);
  border-color: var(--pm-blue);
}

.pm-related-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pm-related-card > div {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pm-related-card b {
  display: block;
  font-size: 17px;
  color: var(--pm-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pm-related-card p {
  margin: 0;
  font-size: 14px;
  color: var(--pm-muted);
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pm-related-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.pm-related-specs span {
  margin: 0;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  background: rgba(21, 53, 111, .08);
  color: var(--pm-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.pm-related-card > div > span {
  margin-top: auto;
  padding-top: 12px;
  color: var(--pm-blue);
  font-weight: 900;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .pm-hero__grid, .pm-spec-grid, .pm-config-grid, .pm-holographic-grid, .pm-gallery, .pm-proof-grid, .pm-consult, .pm-related-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .pm-consult {
    width: calc(100% - 28px);
    min-width: 0;
    padding: 28px 18px;
    border-radius: 24px;
    gap: 24px;
    margin-bottom: 40px;
  }

  .pm-consult__content,
  .pm-consult__box {
    min-width: 0;
    width: auto;
  }

  .pm-consult h2 {
    font-size: 32px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .pm-consult p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.7;
  }

  .pm-consult__box {
    padding: 24px 16px;
    border-radius: 22px;
  }

  .pm-consult__box span {
    font-size: 42px;
    line-height: 1;
    overflow-wrap: anywhere;
    margin-bottom: 18px;
  }

  .pm-consult__box .pm-btn {
    width: 100% !important;
    min-width: 0;
    padding: 0 12px;
  }

  .pm-holographic-grid {
    grid-template-columns: 1fr;
  }
  .pm-metric-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .pm-config-card {
    min-height: 0;
    padding: 24px 24px 26px;
  }

  .pm-score-card__head {
    display: block;
  }

  .pm-score-card__head em {
    margin-top: 10px;
    transform: none;
  }

  .pm-score-row {
    grid-template-columns: 68px 1fr 30px;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pm-review-track {
    animation: none;
  }
}
