:root {
  --pink: #e13b83;
  --pink-soft: #ff4fb0;
  --white: #f8f4f8;
  --muted: #beb6c1;
  --panel: rgba(18, 10, 24, .86);
  --line: rgba(225, 59, 131, .38);
  --nav-color: #E2EEE9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.7;
  background: #030306;
  animation: pageFadeIn .7s ease both;
}

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

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

.container {
  width: min(1680px, calc(100% - 220px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  background: rgba(5, 4, 8, .5);
  border-bottom: 1px solid rgba(255, 76, 165, .28);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand img {
  width: 80px;
  height: auto;
  transition: transform .35s ease, filter .35s ease;
}

.brand:hover img {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 0 14px rgba(255, 91, 180, .55));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(56px, 7vw, 132px);
  margin-left: 70px;
  font-size: 20px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 26px 0 22px;
  color: var(--nav-color);
  transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 87, 178, .72);
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 3px;
  content: "";
  background: var(--pink);
  transition: .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
  left: 0;
}

.contact-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 96px;
  padding: 6px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(180deg, #ee5798, #d93279);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(225, 59, 131, .45);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-button::before,
.outline-button::before {
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -45%;
  z-index: -1;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.52), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.contact-button:hover,
.outline-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(255, 72, 174, .72), 0 10px 26px rgba(0, 0, 0, .35);
  border-color: rgba(255,255,255,.46);
}

.contact-button:hover::before,
.outline-button:hover::before {
  left: 112%;
}

.contact-button:active,
.outline-button:active {
  transform: translateY(0) scale(.97);
}

.contact-button:focus-visible,
.outline-button:focus-visible,
.slider-btn:focus-visible,
.nav-toggle:focus-visible,
.main-nav a:focus-visible {
  outline: 2px solid rgba(255, 122, 199, .95);
  outline-offset: 4px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  z-index: 0;
  height: min(816px, calc(100vw * 816 / 1920));
  background:
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.55) 30%, rgba(0,0,0,.05) 62%),
    url("../images/hero-bg.jpg") center top / 100% 100% no-repeat;
}

.hero-content {
  padding-top: 110px;
  animation: heroTextIn .85s ease .08s both;
}

.hero-kicker {
  margin: 0 0 24px;
  font-size: clamp(38px, 3.55vw, 66px);
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--pink);
  font-size: clamp(58px, 5.2vw, 96px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 28px 0 20px;
  font-size: clamp(22px, 2vw, 36px);
  letter-spacing: .35em;
}

.hero-company {
  margin: 0;
  color: #c0266d;
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 700;
}

.about-section {
  position: relative;
  margin-top: 0;
  min-height: 380px;
  padding: 48px 0 40px;
  background:url("../images/about-factory.png") center top / 100% 100% no-repeat;
  overflow: hidden;
}


.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 820px);
  gap: 36px;
  align-items: start;
}

h2 {
  margin: 0 0 18px;
  font-size: 27px;
  line-height: 1.3;
}

h2 span {
  margin-right: 14px;
  color: var(--pink);
  font-size: 44px;
  font-style: italic;
  font-weight: 800;
}

.about-copy p {
  margin: 0;
  max-width: 820px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-align: justify;
}

.outline-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  margin-top: 30px;
  min-width: 198px;
  height: 66px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid rgba(225, 59, 131, .78);
  border-radius: 8px;
  background: rgba(8, 5, 12, .64);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.outline-button:hover {
  background: rgba(225, 59, 131, .22);
}

.video-section {
  padding: 0 0 66px 120px;
  background: #050409 url('../images/about-video.png') no-repeat center center;
  background-size: cover;
}

.video-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 0;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  cursor: pointer;
  aspect-ratio: 16 / 10;
}

.video-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.news-card img,
.certificate-track img {
  transition: transform .45s ease, filter .45s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 80, 178, .62);
  box-shadow: 0 14px 30px rgba(0,0,0,.36), 0 0 22px rgba(225, 59, 131, .38);
}

.video-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.video-card span,
.slider-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #050507;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.video-card span {
  animation: playPulse 1.9s ease-in-out infinite;
}

.video-card:hover span {
  background: var(--pink);
  box-shadow: 0 0 0 8px rgba(225, 59, 131, .18), 0 0 28px rgba(255, 87, 178, .72);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card span::after {
  position: absolute;
  top: 17px;
  left: 23px;
  content: "";
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 21px solid #fff;
}

.news-section,
.certificate-section {
  padding: 80px 0 70px;
  border-top: none;
  background: #000;
}

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

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.news-card a {
  display: block;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 80, 178, .72);
  box-shadow: 0 18px 34px rgba(0,0,0,.4), 0 0 26px rgba(225, 59, 131, .28);
}

.news-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.12) brightness(1.08);
}

.news-card h3 {
  transition: color .2s ease;
}

.news-card:hover h3 {
  color: #fff;
}

.news-card h3 {
  flex: 1;
  min-height: 78px;
  margin: 22px 34px 4px;
  font-size: 21px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card time {
  display: block;
  margin: 0 34px 18px;
  color: var(--pink);
  font-size: 16px;
}

.certificate-section {
  padding: 80px 0 80px;
  background: url('/assets/images/cert-bg.png') left center / contain no-repeat #000;
  border-top: 1px solid rgba(225, 59, 131, .16);
  min-height: 500px;
}

.certificate-slider {
  position: relative;
  padding: 40px 0 0;
}

.certificate-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  perspective: 1200px;
}

.certificate-track figure {
  margin: 0;
  flex-shrink: 0;
  width: 220px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  filter: drop-shadow(0 0 18px rgba(244, 76, 183, .35));
  transition: transform .5s cubic-bezier(.4, 0, .2, 1), filter .5s ease, opacity .5s ease;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

/* Side cards - smaller */
.certificate-track figure.side-left,
.certificate-track figure.side-right {
  width: 180px;
  height: 260px;
  filter: drop-shadow(0 0 10px rgba(244, 76, 183, .2));
}

/* Main center card - larger */
.certificate-track figure.center {
  width: 260px;
  height: 380px;
  z-index: 10;
  filter: drop-shadow(0 0 30px rgba(244, 76, 183, .6));
}

.certificate-track figure:hover {
  filter: drop-shadow(0 0 26px rgba(244, 76, 183, .7));
}

.certificate-track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(225, 59, 131, .6);
  border-radius: 50%;
  background: rgba(10, 8, 16, 0.85);
  color: #fff;
  cursor: pointer;
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(225, 59, 131, .26);
  z-index: 20;
}

.slider-btn::before {
  display: none;
}

.slider-btn::after {
  content: '‹';
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.slider-btn.next::after {
  content: '›';
}

.slider-btn:hover {
  background: #d93279;
  border-color: rgba(255, 255, 255, .6);
  box-shadow: 0 0 30px rgba(255, 77, 174, .5);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.94);
}

.slider-btn.next {
  right: 10px;
  left: auto;
}

/* Pagination dots */
.cert-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.cert-pagination span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all .25s ease;
}

.cert-pagination span.active {
  background: #d93279;
  width: 28px;
  border-radius: 5px;
}

/* ============ Article Detail Page ============ */
.article-page {
  background: #050409;
  color: #d4ccd8;
}

.article-hero {
  padding: 140px 0 30px;
  background: linear-gradient(180deg, #0a0510 0%, #050409 100%);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #8a7da8;
}

.article-breadcrumb a {
  color: #8a7da8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
  color: #e13b83;
}

.article-breadcrumb .sep {
  color: #4a3d68;
}

.article-breadcrumb span:last-child {
  color: #d4ccd8;
}

.article-main-section {
  padding: 0 0 80px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.article-content-area {
  min-width: 0;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

/* Widget container override for article page */
.article-content-area .container,
.article-sidebar .container {
  padding: 0;
  width: auto;
  max-width: none;
}

.article-content-area .tc-box,
.article-sidebar .tc-box {
  margin: 0;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-sidebar {
    position: static;
  }

  .article-hero {
    padding: 110px 0 20px;
  }
}

@media (max-width: 600px) {
  .article-hero {
    padding: 90px 0 16px;
  }

  .article-main-section {
    padding: 0 0 48px;
  }

  .article-breadcrumb {
    font-size: 13px;
  }
}

/* ====== Other styles continue below ====== */

.site-footer {
  position: relative;
  padding: 64px 0 56px;
  background: url("../images/footer-bg.png") center bottom / cover no-repeat #050409;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

address {
  margin: 0 auto;
  font-style: normal;
  font-size: 20px;
  font-weight: 500;
}

address p,
.footer-meta p {
  margin: 0 0 14px;
}

.footer-meta {
  color: rgba(255,255,255,.48);
  text-align: right;
  font-size: 18px;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes playPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(225, 59, 131, .34);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(225, 59, 131, 0);
  }
}

@keyframes neonLine {
  0%,
  100% {
    filter: drop-shadow(0 0 12px #ff34c4);
  }
  50% {
    filter: drop-shadow(0 0 24px #ff4fb0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1280px) {
  .container {
    width: min(1120px, calc(100% - 48px));
  }

  .site-header {
    height: 72px;
  }

  .brand img {
    width: 70px;
  }

  .main-nav {
    gap: 42px;
    margin-left: 20px;
    font-size: 17px;
  }

  .main-nav a {
    padding: 35px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: calc(100% - 32px);
  }

  .site-header {
    height: 64px;
  }

  .brand img {
    width: 70px;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 6px;
    background: rgba(255,255,255,.04);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  }

  .nav-toggle:hover {
    border-color: rgba(255, 80, 178, .72);
    box-shadow: 0 0 18px rgba(225, 59, 131, .36);
  }

  .nav-toggle:active {
    transform: scale(.96);
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform .22s ease, opacity .22s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    opacity: 0;
    margin: 0;
    padding: 14px;
    background: rgba(5,4,8,.96);
    border: 1px solid rgba(225, 59, 131, .24);
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }

  .main-nav.open {
    gap: 2px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 10px 6px;
  }

  .contact-button {
    min-width: 80px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .hero {
    height: calc(100vw * 856 / 1920);
    min-height: 280px;
    background:
      linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.46) 48%, rgba(0,0,0,.08) 100%),
      url("../images/hero-bg.jpg") center top / 100% 100% no-repeat;
  }

  .hero-content {
    padding-top: 18px;
  }

  .hero-kicker {
    margin-bottom: 6px;
    font-size: clamp(20px, 6vw, 30px);
  }

  h1 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .hero-subtitle {
    margin: 8px 0 10px;
    font-size: clamp(13px, 3.8vw, 18px);
    letter-spacing: .12em;
  }

  .hero-company {
    font-size: clamp(12px, 3.5vw, 16px);
  }

  .about-section {
    margin-top: -1px;
    min-height: 340px;
    padding-top: 24px;
    padding-bottom: 28px;
    background:
      linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.62) 56%, rgba(0,0,0,.2) 100%),
      linear-gradient(180deg, rgba(5,4,9,.12) 0%, rgba(5,4,9,.18) 58%, #050409 100%),
      url("../images/about-factory.png") center top / 100% auto no-repeat;
  }

  .about-copy p {
    font-size: 15px;
  }

  .video-section {
    padding: 0 0 40px;
  }

  .video-row,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .video-card {
    width: 100%;
    max-width: 420px;
  }

  .certificate-slider {
    padding: 18px 56px 0;
  }

  .certificate-track {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .certificate-track figure {
    flex: 0 0 76%;
    scroll-snap-align: center;
  }

  /* Reset desktop focus-carousel sizing on mobile */
  .certificate-track figure.center,
  .certificate-track figure.side-left,
  .certificate-track figure.side-right {
    width: auto;
    height: 320px;
    z-index: auto;
    filter: drop-shadow(0 0 18px rgba(244, 76, 183, .35));
  }

  .slider-btn {
    width: 36px;
    height: 36px;
  }

  .slider-btn::after {
    font-size: 18px;
  }

  .slider-btn::before {
    display: none;
  }

  .cert-modal {
    gap: 8px;
    padding: 0 8px;
  }

  .cert-modal-nav {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .cert-modal-dialog img {
    max-width: calc(100vw - 96px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  address {
    margin: 0;
    font-size: 17px;
  }

  .footer-meta {
    text-align: left;
    font-size: 14px;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
}

.video-modal-dialog {
  position: relative;
  width: min(960px, 92vw);
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}

.video-modal-close:hover {
  background: rgba(225, 59, 131, .8);
}

.video-modal-player {
  display: block;
  width: 100%;
  height: auto;
  max-height: 85vh;
  background: #000;
}

/* ============ News Page Styles ============ */
.news-page {
  background: #0a0810;
  color: #e0dce8;
}

/* News Hero Section */
.news-hero {
  padding: 40px 0 40px;
  background:
    url('/assets/images/news-bg.png') no-repeat center center;
  background-size: cover, auto;
  position: relative;
  overflow: hidden;
}

.news-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 16, 0.4) 0%, rgba(10, 8, 16, 0.2) 50%, rgba(10, 8, 16, 0.9) 100%);
  pointer-events: none;
}

.news-hero .container {
  position: relative;
  z-index: 1;
  text-align: left;
  max-width: 1200px;
  padding-left: 40px;
}

.news-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 3px;
  line-height: 1.2;
}

.news-hero-subtitle {
  font-size: 16px;
  color: #c0b8d0;
  margin: 0;
  letter-spacing: 2px;
}

/* News Section Titles */
.news-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-section-title .title-icon {
  width: 56px;
  height: 56px;
  vertical-align: middle;
  object-fit: contain;
}

/* News Tags */
.news-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #d93279 0%, #b32565 100%);
  border-radius: 5px;
  letter-spacing: 0.5px;
}

/* Hot News Section */
.news-hot-section {
  padding: 60px 0;
  background: #000;
}

.news-hot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Hot Main Card */
.news-hot-main {
  min-height: 420px;
}

.news-hot-card {
  display: block;
  height: 100%;
  background: linear-gradient(145deg, #1a1230 0%, #150d25 100%);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(225, 59, 131, 0.2);
}

.news-hot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(225, 59, 131, 0.3);
}

.news-hot-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.news-hot-img img {
  width: 100%;
  height: 100%;
  object-fit:  cover;
  transition: transform 0.4s ease;
  background: #1a1230;
}

.news-hot-card:hover .news-hot-img img {
  transform: scale(1.05);
}

.news-hot-content {
  padding: 24px;
}

.news-hot-img .news-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.news-hot-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-hot-desc {
  font-size: 14px;
  color: #9b8cb8;
  margin: 0 0 16px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-hot-content time {
  font-size: 13px;
  color: #6b5b82;
}

/* Hot Side List */
.news-hot-side {
  display: flex;
  flex-direction: column;
}

.news-side-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.news-side-item {
  display: flex;
  gap: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #1a1230 0%, #150d25 100%);
  border: 1px solid rgba(225, 59, 131, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-side-item:hover {
  transform: translateX(4px);
  border-color: rgba(225, 59, 131, 0.4);
  box-shadow: 0 8px 24px rgba(225, 59, 131, 0.2);
}

.news-side-img {
  flex-shrink: 0;
  width: 180px;
  height: 132px;
  border-radius: 8px;
  overflow: hidden;
}

.news-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1a1230;
}

.news-side-info {
  flex: 1;
  margin-left: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2px 0;
}

.news-side-info .news-tag {
  align-self: flex-start;
  margin-bottom: 6px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(225, 59, 131, 0.4);
  border-radius: 5px;
  letter-spacing: 0.5px;
  box-shadow: none;
  text-transform: none;
}

.news-side-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #e0dce8;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-side-info time {
  font-size: 12px;
  color: #8a7a9c;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-side-info time::before {
  content: '●';
  color: #d93279;
  font-size: 8px;
}

/* Featured News Section */
.news-featured-section {
  padding: 60px 0 80px;
  background: #000;
}

.news-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.news-featured-card {
  display: block;
  background: linear-gradient(145deg, #151028 0%, #100a1c 100%);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 59, 131, 0.3);
  box-shadow: 0 16px 32px rgba(225, 59, 131, 0.2);
}

.news-featured-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.news-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  background: #1a1230;
}

.news-featured-card:hover .news-featured-img img {
  transform: scale(1.05);
}

.news-featured-img .news-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
}

.news-featured-content {
  padding: 20px;
}

.news-featured-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #e0dce8;
  margin: 0 0 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-featured-meta time {
  font-size: 13px;
  color: #d93279;
}

.read-more {
  font-size: 13px;
  color: #e0dce8;
  font-weight: 500;
  transition: color 0.2s ease;
}

.news-featured-card:hover .read-more {
  color: #d93279;
}

/* Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.news-pagination .page-btn {
  padding: 8px 16px;
  font-size: 14px;
  color: #9b8cb8;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.news-pagination .page-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.news-pagination .page-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #9b8cb8;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.news-pagination .page-num:hover {
  color: #fff;
  border-color: rgba(225, 59, 131, 0.5);
}

.news-pagination .page-num.active {
  color: #fff;
  background: linear-gradient(135deg, #d93279 0%, #b32565 100%);
  border-color: transparent;
}

/* News Page Responsive */
@media (max-width: 900px) {
  .news-hot-grid {
    grid-template-columns: 1fr;
  }

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

  .news-hero-title {
    font-size: 32px;
  }

  .news-hero {
    padding: 60px 0 40px;
  }
}

@media (max-width: 600px) {
  .news-featured-grid {
    grid-template-columns: 1fr;
  }

  .news-hero-title {
    font-size: 24px;
  }

  .news-hero-subtitle {
    font-size: 15px;
  }

  .news-section-title {
    font-size: 22px;
  }

  .news-hot-img {
    height: 180px;
  }

  .news-hot-title {
    font-size: 18px;
  }

  .news-side-item {
    flex-direction: column;
  }

  .news-side-img {
    width: 100%;
    height: 150px;
  }
}

/* ============ About Page Styles ============ */
.about-page {
  background: #0a0810;
  color: #e0dce8;
}

/* About Hero - 与首页 .hero 完全一致的背景处理，保证两张图无缝衔接 */
.about-hero {
  height: min(856px, calc(100vw * 856 / 1920));
  padding: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.55) 30%, rgba(0,0,0,.05) 62%),
    url("../images/hero-bg.jpg") center top / 100% 100% no-repeat;
  position: relative;
  overflow: hidden;
}

.about-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  animation: heroTextIn .85s ease .08s both;
}

.about-hero-kicker {
  margin: 0 0 24px;
  font-size: clamp(38px, 3.55vw, 66px);
  line-height: 1.1;
  color: var(--pink);
  letter-spacing: 0;
}

.about-hero-title {
  margin: 0;
  color: var(--pink);
  font-size: clamp(58px, 5.2vw, 96px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.about-hero-subtitle {
  margin: 28px 0 20px;
  font-size: clamp(22px, 2vw, 36px);
  letter-spacing: .35em;
  color: #e0dce8;
}

.about-hero-company {
  margin: 0;
  color: #c0266d;
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 700;
  letter-spacing: 1px;
}

/* About Stats - 与首页 .about-section 完全一致的背景处理 */
.about-stats {
  position: relative;
  margin-top: 0;
  padding: 140px 0 66px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.18) 72%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(5,4,9,.12) 0%, rgba(5,4,9,.18) 58%, #050409 100%),
    url("../images/about-factory.png") center top / 100% 100% no-repeat;
  overflow: hidden;
}

.about-stats-row {
  display: flex;
  justify-content: flex-start;
  gap: 48px;
  padding-top: 60px;
}

.about-stat-item {
  text-align: left;
  padding: 0;
  background: transparent;
  border: none;
  transition: none;
}

.about-stat-item:hover {
  border-color: transparent;
  transform: none;
}

.about-stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stat-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.about-stat-value {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  line-height: 1;
}

.about-stat-value span {
  font-size: 14px;
  font-weight: 500;
 color: rgba(255, 255, 255, 0.6);
}

.about-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* About Intro */
.about-intro {
  padding: 80px 0;
  background: #000;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-intro-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
  position: relative;
  display: inline-block;
  padding: 20px 36px 20px 20px;
  margin-left: -12px;
  background: url("../images/title.png") no-repeat center center / 100% 100%;
}

.about-intro-text h2::before {
  display: none;
}

.about-intro-text p {
  font-size: 15px;
  color: #c0b8d0;
  line-height: 1.8;
  margin: 0 0 16px;
}

.about-intro-gallery {
  padding-top: 8px;
}

/* About 页视频区 - 复用 .video-card 但适配 2x2 网格 */
.about-video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-video-row .video-card {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* About Quality */
.about-quality {
  padding: 80px 0;
  background: url("../images/quality‌-bg.png") no-repeat center center / 100% 100%;
}

.about-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 40px;
  position: relative;
  display: inline-block;
  padding: 20px 36px 20px 20px;
  margin-left: -12px;
  background: url("../images/title.png") no-repeat center center / 100% 100%;
}

.about-section-title::before {
  display: none;
}

.about-quality-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.about-quality-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: linear-gradient(145deg, #151028 0%, #100a1c 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.about-quality-item:hover {
  border-color: rgba(225, 59, 131, 0.3);
  transform: translateY(-2px);
}

.about-quality-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
}

.about-quality-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.about-quality-cert {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.about-quality-desc {
  font-size: 12px;
  color: #9b8cb8;
}

/* About Cooperation */
.about-cooperation {
  padding: 80px 0;
  background:
    url("../images/about-service.png") center center / contain no-repeat #000;
  position: relative;
}

.about-cooperation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
}

.about-cooperation-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateY(-40px);
}

.about-cooperation-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0;
  background: transparent;
  border: none;
  transition: none;
  text-align: left;
}

.about-cooperation-item:hover {
  border-color: transparent;
}

.about-cooperation-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 59, 131, 0.15);
  border-radius: 50%;
}

.about-cooperation-icon svg {
  width: 28px;
  height: 28px;
  color: #ff7ab6;
}

.about-cooperation-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-cooperation-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.about-cooperation-item p {
  font-size: 13px;
  color: #c0b8d0;
  margin: 0;
  line-height: 1.8;
}

.about-cooperation-text {
  text-align: left;
}

/* About Certificates */
.about-certificates {
  padding: 80px 0;
   background:
    url("../images/cert-bg.png") center center / contain no-repeat #000;
}

.about-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-left: 100px;
  margin-right: 100px;
}

.about-cert-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(225, 59, 131, 0.2);
}

.about-cert-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px 10px;
}

/* About Contact */
.about-contact {
  padding: 60px 0 80px;
  background: #000;
}

.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(145deg, #151028 0%, #100a1c 100%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about-contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-contact-label {
  font-size: 13px;
  color: #9b8cb8;
  margin-bottom: 4px;
}

.about-contact-value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* About Responsive */
@media (max-width: 900px) {
  .about-hero {
    height: calc(100vw * 856 / 1920);
    min-height: 280px;
    background:
      linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.46) 48%, rgba(0,0,0,.08) 100%),
      url("../images/hero-bg.jpg") center top / 100% 100% no-repeat;
  }

  .about-hero-kicker {
    margin-bottom: 6px;
    font-size: clamp(20px, 6vw, 30px);
  }

  .about-hero-title {
    font-size: clamp(30px, 9vw, 44px);
  }

  .about-hero-subtitle {
    margin: 8px 0 10px;
    font-size: clamp(13px, 3.8vw, 18px);
    letter-spacing: .12em;
  }

  .about-hero-company {
    font-size: clamp(12px, 3.5vw, 16px);
  }

  .about-stats-row {
    flex-wrap: wrap;
    gap: 32px;
  }

  .about-quality-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-intro-grid,
  .about-cooperation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-contact-grid {
    grid-template-columns: 1fr;
  }

  .about-hero .container {
    padding-top: 80px;
  }

  .about-stats {
    min-height: 600px;
    padding: 96px 0 48px;
  }
}

@media (max-width: 600px) {
  .about-stats-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .about-quality-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-video-row {
    grid-template-columns: 1fr;
  }

  .about-hero .container {
    padding-top: 60px;
  }

  .about-stats {
    min-height: 480px;
    padding: 72px 0 36px;
  }

  .about-section-title {
    font-size: 22px;
  }

  .about-intro-text h2 {
    font-size: 24px;
  }

  .about-stat-value {
    font-size: 24px;
  }

  .about-quality-icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .about-certificates {
    padding: 56px 0;
  }
  .about-cert-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-left: auto;
    margin-right: auto;
   }

  .about-cert-item {
    aspect-ratio: 16 / 9;
  }

  .about-cert-item img {
    padding: 8px;
  }

  .about-section-title {
    font-size: 20px;
    margin-bottom: 28px;
  }
}

/* ============ Certificate Lightbox ============ */
.cert-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cert-modal.is-open {
  display: flex;
}

.cert-modal-dialog {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: certModalZoom .3s ease;
}

@keyframes certModalZoom {
  from { opacity: 0; transform: scale(.85); }
  to { opacity: 1; transform: scale(1); }
}

.cert-modal-dialog img {
  max-width: calc(90vw - 120px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(225, 59, 131, .3);
}

.cert-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(225, 59, 131, .6);
  border-radius: 50%;
  background: rgba(10, 8, 16, .9);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  z-index: 10;
}

.cert-modal-close:hover {
  background: #d93279;
  transform: rotate(90deg);
}

.cert-modal-nav {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(225, 59, 131, .5);
  border-radius: 50%;
  background: rgba(10, 8, 16, .9);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  z-index: 10;
}

.cert-modal-nav:hover {
  background: #d93279;
  border-color: #fff;
}

.cert-modal-nav.prev {
  order: -1;
}

.cert-modal-nav.next {
  order: 1;
}

.cert-modal-mask {
  position: absolute;
  inset: 0;
  cursor: zoom-out;
}

/* Certificate slider pagination dots */
.cert-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.cert-pagination span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all .25s ease;
}

.cert-pagination span.active {
  background: #d93279;
  width: 28px;
  border-radius: 5px;
}

/* ============ Article Detail Page ============ */
.article-page {
  background: #050409;
  color: #d4ccd8;
}

.article-hero {
  padding: 140px 0 30px;
  background: linear-gradient(180deg, #0a0510 0%, #050409 100%);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #8a7da8;
}

.article-breadcrumb a {
  color: #8a7da8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-breadcrumb a:hover {
  color: #e13b83;
}

.article-breadcrumb .sep {
  color: #4a3d68;
}

.article-breadcrumb span:last-child {
  color: #d4ccd8;
}

.article-main-section {
  padding: 0 0 80px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.article-content-area {
  min-width: 0;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

/* Widget container override for article page */
.article-content-area .container,
.article-sidebar .container {
  padding: 0;
  width: auto;
  max-width: none;
}

.article-content-area .tc-box,
.article-sidebar .tc-box {
  margin: 0;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-sidebar {
    position: static;
  }

  .article-hero {
    padding: 110px 0 20px;
  }
}

@media (max-width: 600px) {
  .article-hero {
    padding: 90px 0 16px;
  }

  .article-main-section {
    padding: 0 0 48px;
  }

  .article-breadcrumb {
    font-size: 13px;
  }
}


/* ===== 粒子背景 ===== */
    .particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .particle {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(230,57,139,0.8) 40%, transparent 70%);
      animation: float-particle linear infinite;
    }
    @keyframes float-particle {
      0% { transform: translateY(0) scale(1); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
    }
