.page-products {
  --prod-line: linear-gradient(90deg, transparent, var(--color-green), var(--color-orange), transparent);
  --prod-glow-a: radial-gradient(circle, rgba(123, 92, 240, 0.22), transparent 62%);
  --prod-glow-b: radial-gradient(circle, rgba(0, 255, 133, 0.14), transparent 55%);
  --prod-card-radius: 20px;
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: clip;
}

/* ========== 面包屑 ========== */
.page-products .container > .breadcrumbs {
  padding-top: 26px;
  margin-bottom: 0;
}

/* ========== Hero ========== */
.page-products .prod-hero {
  position: relative;
  padding: 40px 0 0;
  background:
    var(--prod-glow-a) top right / 520px 520px no-repeat,
    var(--prod-glow-b) left center / 480px 480px no-repeat,
    var(--color-bg);
  border-bottom: 1px solid rgba(0, 255, 133, 0.14);
  overflow: hidden;
}
.page-products .prod-hero::before {
  content: "";
  position: absolute;
  top: 60px;
  right: -60px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(123, 92, 240, 0.3);
  border-radius: 50%;
  transform: skewX(-9deg);
  pointer-events: none;
}
.page-products .prod-hero::after {
  content: "";
  position: absolute;
  top: 200px;
  left: -120px;
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(0, 255, 133, 0.22);
  border-radius: 50%;
  transform: skewX(7deg);
  pointer-events: none;
}
.page-products .prod-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  padding-bottom: 72px;
}
.page-products .prod-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-products .prod-hero-kicker {
  margin-bottom: 18px;
}
.page-products .prod-hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  transform: skewX(-2deg);
  margin-bottom: 22px;
}
.page-products .prod-hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 34em;
  margin-bottom: 30px;
}
.page-products .prod-hero-actions {
  margin-bottom: 34px;
}
.page-products .prod-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
  border-top: 1px solid rgba(169, 178, 192, 0.2);
  padding-top: 24px;
}
.page-products .prod-hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.page-products .prod-hero-stats dt {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--color-green);
  letter-spacing: -0.02em;
}
.page-products .prod-hero-stats dd {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.4;
}

.page-products .prod-hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}
.page-products .prod-device-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.page-products .prod-device-orbit-a {
  width: 400px;
  height: 400px;
  border: 1px solid rgba(0, 255, 133, 0.22);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: prod-orbit-spin 16s linear infinite;
}
.page-products .prod-device-orbit-b {
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(255, 122, 0, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: prod-orbit-spin-rev 12s linear infinite;
}
@keyframes prod-orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes prod-orbit-spin-rev {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .page-products .prod-device-orbit-a,
  .page-products .prod-device-orbit-b {
    animation: none;
  }
}

.page-products .prod-device {
  position: relative;
  width: 250px;
  height: 520px;
  border-radius: 38px;
  background: linear-gradient(145deg, var(--color-surface-2), #0e1429);
  border: 2px solid rgba(0, 255, 133, 0.34);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(0, 255, 133, 0.13),
    inset 0 0 30px rgba(255, 122, 0, 0.05);
  padding: 14px;
  z-index: 1;
}
.page-products .prod-device-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  background: var(--color-bg);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.page-products .prod-device-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--color-surface);
}
.page-products .prod-device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-products .prod-device-caption {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  background: rgba(27, 35, 64, 0.78);
  border: 1px solid rgba(0, 255, 133, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 1;
}
.page-products .prod-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 rgba(0, 255, 133, 0.5);
  animation: prod-pulse 1.8s ease-out infinite;
}
@keyframes prod-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 133, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(0, 255, 133, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 133, 0); }
}

.page-products .prod-ticker {
  position: relative;
  display: flex;
  gap: 28px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 122, 0, 0.26);
  border-bottom: 1px solid rgba(255, 122, 0, 0.26);
  background: linear-gradient(90deg, rgba(255, 122, 0, 0.12), rgba(123, 92, 240, 0.1), rgba(0, 255, 133, 0.08));
  padding: 14px 0;
  transform: skewX(-2deg);
}
.page-products .prod-ticker span {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  white-space: nowrap;
}
.page-products .prod-ticker span::before {
  content: "◆ ";
  color: var(--color-orange);
}

/* ========== 公共章节 ========== */
.page-products .prod-section {
  padding: 68px 0;
  position: relative;
}
.page-products .prod-section-head {
  margin-bottom: 36px;
}
.page-products .prod-section .section-desc {
  max-width: 36em;
}

/* ========== 移动端 App 区 ========== */
.page-products .prod-app-section {
  background:
    linear-gradient(180deg, transparent 60%, rgba(27, 35, 64, 0.44) 60%),
    radial-gradient(circle at 85% 20%, rgba(123, 92, 240, 0.13), transparent 42%);
}
.page-products .prod-app-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--prod-line);
  opacity: 0.7;
}
.page-products .prod-app-grid {
  display: grid;
  gap: 28px;
}
.page-products .prod-app-info {
  background: var(--color-surface);
  border-radius: var(--prod-card-radius);
  border: 1px solid rgba(232, 237, 242, 0.08);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}
.page-products .prod-app-info::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(0, 255, 133, 0.08);
  pointer-events: none;
}
.page-products .prod-platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.page-products .prod-app-feature-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.page-products .prod-app-feature-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 16px;
  background: var(--color-surface-2);
  border-radius: 12px;
  border-left: 3px solid var(--color-green);
}
.page-products .prod-app-feature-list strong {
  font-size: 0.96rem;
  font-weight: 700;
}
.page-products .prod-app-feature-list span {
  font-size: 0.84rem;
  color: var(--color-text-muted);
}
.page-products .prod-app-feature-list .mono {
  color: var(--color-green);
  font-size: 0.82rem;
}
.page-products .prod-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-products .prod-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-surface-2), var(--color-surface));
  border: 1px solid rgba(0, 255, 133, 0.16);
  border-radius: var(--prod-card-radius);
  padding: 34px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.page-products .prod-qr-card:hover {
  border-color: rgba(0, 255, 133, 0.45);
  transform: translateY(-4px);
}
.page-products .prod-qr-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--prod-line);
  opacity: 0.8;
}
.page-products .prod-qr-svg {
  width: 148px;
  height: 148px;
  display: block;
  border-radius: 10px;
  margin-bottom: 18px;
}
.page-products .prod-qr-title {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 6px;
}
.page-products .prod-qr-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ========== 核心功能 ========== */
.page-products .prod-features-section {
  background:
    linear-gradient(rgba(123, 92, 240, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 92, 240, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-products .prod-feature-grid {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}
.page-products .prod-feature-card {
  background: var(--color-surface);
  border-radius: var(--prod-card-radius);
  border: 1px solid rgba(232, 237, 242, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.page-products .prod-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 133, 0.34);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}
.page-products .prod-feature-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
  background: var(--color-surface-2);
}
.page-products .prod-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ease);
}
.page-products .prod-feature-card:hover .prod-feature-media img {
  transform: scale(1.03);
}
.page-products .prod-feature-body {
  position: relative;
  padding: 26px 24px 28px;
  flex: 1;
}
.page-products .prod-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 255, 133, 0.12);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.page-products .prod-feature-icon svg {
  width: 22px;
  height: 22px;
}
.page-products .prod-feature-index {
  position: absolute;
  top: 26px;
  right: 24px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  opacity: 0.55;
}
.page-products .prod-feature-body h3 {
  font-size: 1.32rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.page-products .prod-feature-desc {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 0 18px;
}
.page-products .prod-feature-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-products .prod-feature-tags li {
  font-size: 0.78rem;
  color: var(--color-text);
  background: var(--color-surface-2);
  border: 1px solid rgba(0, 255, 133, 0.18);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ========== 版本特性 ========== */
.page-products .prod-version-section {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.07), rgba(123, 92, 240, 0.08));
}
.page-products .prod-version-grid {
  display: grid;
  gap: 36px;
}
.page-products .prod-version-copy .section-eyebrow {
  color: var(--color-orange);
}
.page-products .prod-version-lead {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 30em;
  margin: 18px 0 22px;
}
.page-products .prod-version-note {
  display: flex;
  gap: 12px;
  background: rgba(0, 255, 133, 0.06);
  border-left: 3px solid var(--color-green);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  max-width: 30em;
}
.page-products .prod-note-mark {
  color: var(--color-green);
  font-size: 0.82rem;
  line-height: 1.8;
}
.page-products .prod-version-note p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.page-products .prod-version-table-wrap {
  background: var(--color-surface);
  border-radius: var(--prod-card-radius);
  border: 1px solid rgba(232, 237, 242, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.page-products .prod-version-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.page-products .prod-version-table thead {
  background: rgba(11, 16, 32, 0.8);
}
.page-products .prod-version-table th {
  text-align: left;
  font-weight: 700;
  color: var(--color-text);
  padding: 16px 18px;
  white-space: nowrap;
  border-bottom: 2px solid rgba(0, 255, 133, 0.28);
}
.page-products .prod-version-table th:first-child {
  border-bottom-color: rgba(255, 122, 0, 0.3);
}
.page-products .prod-version-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(169, 178, 192, 0.12);
  color: var(--color-text-muted);
  vertical-align: top;
  line-height: 1.5;
}
.page-products .prod-version-table tr:last-child td {
  border-bottom: none;
}
.page-products .prod-version-table td:first-child {
  color: var(--color-text);
  font-weight: 600;
  white-space: nowrap;
}
.page-products .prod-version-up {
  display: inline-block;
  background: rgba(0, 255, 133, 0.12);
  color: var(--color-green);
  border: 1px solid rgba(0, 255, 133, 0.22);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  white-space: nowrap;
}

/* ========== 数据服务方案 ========== */
.page-products .prod-plans-section {
  background:
    radial-gradient(circle at 20% 70%, rgba(0, 255, 133, 0.08), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(123, 92, 240, 0.12), transparent 40%);
}
.page-products .prod-plans-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}
.page-products .prod-plan-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--prod-card-radius);
  border: 1px solid rgba(232, 237, 242, 0.08);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.page-products .prod-plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 133, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.page-products .prod-plan-pro {
  border-color: rgba(0, 255, 133, 0.34);
  background:
    linear-gradient(180deg, rgba(0, 255, 133, 0.06), transparent 30%),
    var(--color-surface);
}
.page-products .prod-plan-enterprise {
  border-color: rgba(123, 92, 240, 0.36);
}
.page-products .prod-plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-bg);
  background: linear-gradient(90deg, var(--color-green), #4dff9d);
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0.03em;
}
.page-products .prod-plan-badge-dark {
  background: linear-gradient(90deg, var(--color-purple), #8f6dfa);
  color: var(--color-text);
}
.page-products .prod-plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.page-products .prod-plan-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.page-products .prod-plan-price {
  color: var(--color-green);
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(0, 255, 133, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
}
.page-products .prod-plan-enterprise .prod-plan-price {
  color: var(--color-purple);
  background: rgba(123, 92, 240, 0.12);
}
.page-products .prod-plan-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
}
.page-products .prod-plan-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
  display: grid;
  gap: 10px;
}
.page-products .prod-plan-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--color-text);
}
.page-products .prod-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 800;
}
.page-products .prod-plan-enterprise .prod-plan-features li::before {
  color: var(--color-purple);
}
.page-products .prod-plan-card .btn {
  align-self: flex-start;
}

.page-products .prod-arch {
  display: grid;
  gap: 18px;
  background: var(--color-surface);
  border-radius: var(--prod-card-radius);
  border: 1px solid rgba(232, 237, 242, 0.08);
  overflow: hidden;
}
.page-products .prod-arch img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.page-products .prod-arch-caption {
  padding: 0 24px 24px;
}
.page-products .prod-arch-caption span {
  font-size: 0.76rem;
  color: var(--color-green);
  letter-spacing: 0.14em;
}
.page-products .prod-arch-caption p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 6px 0 0;
  max-width: 36em;
}

/* ========== 使用场景 ========== */
.page-products .prod-scenes-section {
  background: linear-gradient(180deg, rgba(169, 178, 192, 0.04), transparent);
}
.page-products .prod-scenes-grid {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}
.page-products .prod-scene-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--prod-card-radius);
  border: 1px solid rgba(232, 237, 242, 0.07);
  padding: 28px 26px 24px;
  overflow: hidden;
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.page-products .prod-scene-card:hover {
  border-color: rgba(255, 122, 0, 0.36);
  transform: translateY(-4px);
}
.page-products .prod-scene-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.06);
  pointer-events: none;
}
.page-products .prod-scene-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 0.85rem;
  color: var(--color-orange);
  opacity: 0.68;
}
.page-products .prod-scene-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 122, 0, 0.12);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.page-products .prod-scene-icon svg {
  width: 22px;
  height: 22px;
}
.page-products .prod-scene-card h3 {
  font-size: 1.16rem;
  font-weight: 800;
  margin: 0 0 10px;
}
.page-products .prod-scene-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.72;
  margin: 0 0 18px;
}
.page-products .prod-scene-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-green);
  text-decoration: none;
}
.page-products .prod-scene-link span {
  transition: transform var(--duration) var(--ease);
}
.page-products .prod-scene-link:hover span {
  transform: translateX(4px);
}

/* ========== 信任收尾 ========== */
.page-products .prod-trust {
  padding: 70px 0 0;
  background:
    linear-gradient(180deg, rgba(123, 92, 240, 0.08), rgba(0, 255, 133, 0.04)),
    var(--color-bg);
  border-top: 1px solid rgba(123, 92, 240, 0.22);
  color: var(--color-text);
}
.page-products .prod-trust-inner {
  display: grid;
  gap: 40px;
  padding-bottom: 30px;
}
.page-products .prod-trust-copy .section-eyebrow {
  color: var(--color-green);
}
.page-products .prod-trust-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  transform: skewX(-2deg);
}
.page-products .prod-trust-copy p {
  color: var(--color-text-muted);
  line-height: 1.72;
  max-width: 34em;
  margin: 0 0 24px;
}
.page-products .prod-trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.page-products .prod-trust-item {
  background: var(--color-surface);
  border: 1px solid rgba(232, 237, 242, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  text-align: center;
  gap: 4px;
  transition: border-color var(--duration) var(--ease);
}
.page-products .prod-trust-item:hover {
  border-color: rgba(0, 255, 133, 0.32);
}
.page-products .prod-trust-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-green);
}
.page-products .prod-trust-item span:last-child {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ========== 响应式：768px ========== */
@media (min-width: 768px) {
  .page-products .prod-hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
  }
  .page-products .prod-hero-copy {
    order: 0;
  }
  .page-products .prod-hero-visual {
    min-height: 520px;
  }
  .page-products .prod-app-grid {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: stretch;
  }
  .page-products .prod-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-products .prod-feature-card:last-child {
    grid-column: 1 / -1;
  }
  .page-products .prod-plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-products .prod-scenes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-products .prod-version-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }
  .page-products .prod-trust-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .page-products .prod-arch {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
  .page-products .prod-arch-caption {
    padding: 24px;
  }
}

/* ========== 响应式：1024px ========== */
@media (min-width: 1024px) {
  .page-products .prod-hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    padding-bottom: 96px;
  }
  .page-products .prod-hero-copy {
    align-self: center;
  }
  .page-products .prod-hero-visual {
    min-height: 560px;
  }
  .page-products .prod-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-products .prod-feature-card:last-child {
    grid-column: auto;
  }
  .page-products .prod-scenes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-products .prod-section {
    padding: 88px 0;
  }
}
