.product-landing-page {
  background: #fff;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: -70px;
  min-height: 580px;
  background: linear-gradient(270deg, #0d1a36 0%, #14204a 30%, #0d1a36 60%, #0d1a36 100%);
  background-size: 200% 100%;
  animation: banner-shimmer 1.8s ease-in-out infinite;
}
.hero-banner.is-loaded {
  animation: none;
  background: none;
}
@media (max-width: 768px) {
  .hero-banner {
    min-height: auto;
  }
}

@keyframes banner-shimmer {
  0% {
    background-position: -100% center;
  }
  100% {
    background-position: 200% center;
  }
}
.hero-banners {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: img-fade-in 0.6s ease forwards;
}

@keyframes img-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-bg-default {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #0d2348 25%, #1a0a3d 75%, #0a1628 100%);
  z-index: 0;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 180px 60px 120px 270px;
  display: flex;
  align-items: center;
}
@media (max-width: 1600px) {
  .hero-wrapper {
    padding: 130px 56px 72px 240px;
  }
}
@media (max-width: 1470px) {
  .hero-wrapper {
    padding: 130px 56px 72px 120px;
  }
}
@media (max-width: 1200px) {
  .hero-wrapper {
    padding: 120px 40px 64px 60px;
  }
}
@media (max-width: 768px) {
  .hero-wrapper {
    padding: 100px 20px 56px 20px;
  }
}

.hero-content-left {
  flex: 0 0 auto;
  width: 52%;
  max-width: 760px;
  text-align: left;
  animation: fade-in-left 0.8s ease-out;
}
@media (max-width: 1024px) {
  .hero-content-left {
    width: 62%;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .hero-content-left {
    width: 100%;
    text-align: center;
  }
}

@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-title {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: #1a1a2e;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(26, 26, 46, 0.68);
  margin-bottom: 32px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 15px;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}
@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

.btn-primary-hero {
  height: 50px;
  padding: 0 36px;
  background: #1890ff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(24, 144, 255, 0.3);
}
.btn-primary-hero:hover {
  background: #096dd9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 144, 255, 0.4);
}

.btn-outline-hero {
  height: 50px;
  padding: 0 36px;
  background: transparent;
  color: #1890ff;
  border: 2px solid rgba(24, 144, 255, 0.5);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline-hero:hover {
  background: rgba(24, 144, 255, 0.08);
  border-color: #1890ff;
  transform: translateY(-2px);
}

.sections-content {
  background: #fff;
  min-height: 40vh;
  padding: 60px 0 20px;
}

.loading-wrap {
  padding: 60px 40px;
}

.product-section {
  margin-bottom: 160px;
  padding: 0 32px;
}
@media (max-width: 1024px) {
  .product-section {
    padding: 0 20px;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .product-section {
    padding: 0 12px;
    margin-bottom: 48px;
  }
}

.product-inner {
  display: flex;
  align-items: center;
  gap: 96px;
  max-width: 1600px;
  margin: 0 auto;
}
.reverse .product-inner {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .product-inner {
    flex-direction: column !important;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .product-inner {
    gap: 28px;
  }
}

.product-visual {
  flex: 0 0 56%;
  padding: 16px;
}
@media (max-width: 1024px) {
  .product-visual {
    flex: none;
    width: 100%;
    padding: 8px 0;
  }
}

.visual-wrapper {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  line-height: 0;
  transition: transform 0.4s ease;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}
.visual-wrapper:hover {
  transform: scale(1.012);
}
@media (max-width: 768px) {
  .visual-wrapper {
    border-radius: 12px;
  }
}

.visual-media {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 600px;
}
@media (max-width: 1599px) {
  .visual-media {
    height: 560px;
  }
}
@media (max-width: 1439px) {
  .visual-media {
    height: 520px;
  }
}
@media (max-width: 1279px) {
  .visual-media {
    height: 460px;
  }
}
@media (max-width: 1023px) {
  .visual-media {
    height: 380px;
  }
}
@media (max-width: 767px) {
  .visual-media {
    height: 240px;
  }
}

.visual-fallback {
  width: 75%;
  margin: 0 auto;
  border-radius: 22px;
  height: 600px;
}
@media (max-width: 1599px) {
  .visual-fallback {
    height: 560px;
  }
}
@media (max-width: 1439px) {
  .visual-fallback {
    height: 520px;
  }
}
@media (max-width: 1279px) {
  .visual-fallback {
    height: 460px;
  }
}
@media (max-width: 1023px) {
  .visual-fallback {
    height: 380px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .visual-fallback {
    height: 240px;
    border-radius: 12px;
  }
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 1024px) {
  .product-info {
    width: 100%;
  }
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #191b1a;
  line-height: 1.25;
  margin-bottom: 18px;
  text-align: left;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}

.section-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.9;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: block;
  color: #8b8c8f;
  font-size: 15px;
  line-height: 1.75;
}
.feature-item .feat-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #191b1a;
  line-height: 1.4;
  margin-bottom: 5px;
}
.feature-item .feat-desc {
  display: block;
  font-size: 15px;
  color: #8b8c8f;
  line-height: 1.75;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-pill-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #1890ff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 4px 16px rgba(24, 144, 255, 0.3);
}
.btn-pill-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 144, 255, 0.4);
  background: #096dd9;
}

.btn-pill-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #1890ff;
  background: transparent;
  border-radius: 8px;
  border: 1.5px solid rgba(24, 144, 255, 0.5);
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn-pill-ghost:hover {
  background: rgba(24, 144, 255, 0.06);
  border-color: #1890ff;
  transform: translateY(-1px);
}

.qr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}

.qr-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 32px;
  width: 320px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.qr-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}
.qr-close:hover {
  color: #333;
}

.qr-image-wrap {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}

.qr-image {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

.qr-tip {
  font-size: 13px;
  color: #999;
  line-height: 1.6;
}

.qr-fade-enter-active,
.qr-fade-leave-active {
  transition: opacity 0.2s ease;
}
.qr-fade-enter-active .qr-card,
.qr-fade-leave-active .qr-card {
  transition: transform 0.2s ease;
}

.qr-fade-enter-from,
.qr-fade-leave-to {
  opacity: 0;
}
.qr-fade-enter-from .qr-card,
.qr-fade-leave-to .qr-card {
  transform: scale(0.92);
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: url("../img/footer-bg.png") center/cover no-repeat;
  padding: 50px 0;
  text-align: center;
  color: #111827;
}
.cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.cta-section h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 16px;
  color: rgba(17, 24, 39, 0.76);
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-block;
  height: 48px;
  padding: 0 40px;
  background: linear-gradient(40deg, #686BFD 30%, #2488FA 100%) !important;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}
.cta-btn:hover {
  background: linear-gradient(90deg, #4f52d9 0%, #6366f1 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .hero-actions {
    justify-content: center;
  }
  .btn-primary-hero {
    height: 44px;
    padding: 0 28px;
    font-size: 14px;
    width: auto;
  }
  .section-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .feature-list {
    gap: 14px;
    margin-bottom: 24px;
  }
  .feature-item {
    font-size: 14px;
  }
  .feature-item .feat-title {
    font-size: 15px;
  }
  .feature-item .feat-desc {
    font-size: 14px;
  }
  .product-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .btn-pill-primary, .btn-pill-ghost {
    padding: 12px 24px;
    font-size: 14px;
    text-align: center;
    justify-content: center;
    width: auto;
  }
  .qr-card {
    width: 90vw;
    max-width: 320px;
    padding: 32px 24px 24px;
  }
  .cta-section {
    padding: 36px 0;
  }
  .cta-section h2 {
    font-size: 24px;
  }
  .cta-section p {
    font-size: 14px;
  }
  .cta-btn {
    height: 44px;
    padding: 0 32px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .hero-wrapper {
    padding: 90px 16px 48px 16px;
  }
  .hero-title {
    font-size: 24px;
  }
}

/* ═══ 自由搭建内容区（区块编辑器输出） ═══ */
.hb-builder-content {
  padding: 64px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #384146;
}
.hb-builder-content h1,
.hb-builder-content h2,
.hb-builder-content h3,
.hb-builder-content h4 {
  color: #181c1f;
  line-height: 1.4;
  margin: 40px 0 16px;
}
.hb-builder-content h2 {
  font-size: 30px;
}
.hb-builder-content h3 {
  font-size: 24px;
}
.hb-builder-content h4 {
  font-size: 20px;
}
.hb-builder-content p {
  margin: 0 0 16px;
}
.hb-builder-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.hb-builder-content ul,
.hb-builder-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.hb-builder-content li {
  margin-bottom: 8px;
}
.hb-builder-content a {
  color: #6366f1;
}
.hb-builder-content .wp-block-buttons {
  gap: 12px;
}
.hb-builder-content .wp-block-button__link {
  border-radius: 8px;
}
.hb-builder-content .wp-block-columns {
  gap: 24px;
}
.hb-builder-content > .container > *:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .hb-builder-content {
    padding: 40px 0;
    font-size: 15px;
  }
  .hb-builder-content h2 {
    font-size: 24px;
  }
  .hb-builder-content h3 {
    font-size: 20px;
  }
  .hb-builder-content .wp-block-columns {
    flex-wrap: wrap;
  }
}
