:root {
  --color-primary: #b8924a;
  --color-primary-dark: #967538;
  --color-dark: #1a1a1a;
  --color-text: #666666;
  --color-muted: #999999;
  --color-soft: #f8f5f0;
  --color-soft-deep: #f3eee5;
  --color-border: #e8e4dc;
  --color-white: #ffffff;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.08);
  --radius-sm: 4px;
  --container: 1300px;
  /* 👇 这里可以自由调节内页banner内容区域的最大宽度 */
  --hero-content-width: 1000px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  margin: 0;
  color: var(--color-dark);
  font-family: Poppins, Arial, sans-serif;
  background: var(--color-white);
}

a {
  color: rgb(113 101 87);
  text-decoration: none;
  font-size: 12px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.is-hidden {
  display: none !important;
}

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

.page-main {
  min-height: 60vh;
}

.section-block {
  padding: 88px 0;
}

.section-block.section-soft,
.page-main.section-soft {
  background: var(--color-soft);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}

.section-head--stack {
  display: block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--color-primary);
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
}

.section-title .highlight {
  color: var(--color-primary);
}

.section-desc,
.section-summary {
  margin: 0;
  color: rgba(102, 102, 102, 0.86);
  line-height: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.site-logo {
  width: 132px;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 8px 14px;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--color-primary);
}

.site-header__aside {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.36px;
  white-space: nowrap;
}

.site-header__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--color-white);
  background: linear-gradient(rgba(246, 246, 183, 0.2) 0%, rgba(238, 219, 141, 0.2) 100%), linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 100%);
  box-shadow: 0 10px 20px rgba(184, 146, 74, 0.25);
}

.btn-secondary {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: transparent;
}

.hero-banner,
.inner-hero {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background: #0b1929 center / cover no-repeat;
}

.hero-banner {
  min-height: 920px;
}

.inner-hero {
  min-height: 500px;
}

.hero-banner::before,
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 25, 41, 0.76) 10%, rgba(11, 25, 41, 0.14) 63%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, rgba(11, 25, 41, 0.23) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0) 56%);
  z-index: 1;
  pointer-events: none;
}

.hero-banner__inner,
.inner-hero__inner {
  position: relative;
  z-index: 2;
}

.hero-banner__inner {
  padding: 140px 0 80px;
}

.hero-banner__title {
  max-width: 1300px;
  margin: 0 0 32px;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.1;
}

.hero-banner__desc {
  max-width: 560px;
  margin: 0 0 48px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.8;
}

.hero-banner__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 720px;
  margin-top: 140px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-strip__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(184, 146, 74, 0.15);
}

.hero-strip__title {
  margin: 0;
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 700;
}

.hero-strip__meta {
  margin: 2px 0 0;
  color: var(--color-white);
  font-size: 14px;
}

.hero-strip__desc {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.inner-hero__inner {
  display: flex;
  align-items: center;
  min-height: 500px;
  padding: 120px 0 70px;
}

.inner-hero__content {
  /* 你可以在这里自由调节红框内容区域的最大宽度 */
  max-width: var(--hero-content-width, 680px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span:last-child {
  color: var(--color-primary);
}

.inner-hero__title {
  margin: 0;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.15;
}

.inner-hero__desc {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.category-grid,
.post-grid,
.product-grid,
.strength-grid,
.service-grid,
.stats-grid,
.certificate-grid,
.environment-grid {
  display: grid;
  gap: 20px;
}

.category-grid,
.post-grid,
.product-grid,
.strength-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid,
.stats-grid,
.certificate-grid,
.environment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.post-card,
.product-card,
.strength-card,
.service-card,
.stat-card,
.certificate-card,
.environment-card {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.category-card {
  position: relative;
  min-height: 350px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.3) 42%, rgba(0, 0, 0, 0) 72%);
  z-index: 1;
}

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

.category-card__content {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
}

.category-card__tag {
  margin: 0 0 8px;
  color: #bdbdbd;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.category-card__title {
  margin: 0 0 10px;
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.category-card__more {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-panel {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.feature-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.feature-panel:hover .feature-panel__bg {
  transform: scale(1.05);
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.3) 42%, rgba(0, 0, 0, 0) 72%);
  z-index: 1;
}

.feature-panel__overlay {
  display: none;
}

.feature-panel__content {
  position: absolute;
  right: 64px;
  bottom: 70px;
  left: 130px;
  z-index: 3;
  color: var(--color-white);
}

.feature-panel__eyebrow {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.feature-panel__title {
  margin: 0 0 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.4;
}

.feature-panel__link {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-panel__link .btn-arrow {
  margin-left: 8px;
}

.btn-arrow {
  font-size: 12px;
}

.inline-form {
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.home-inline-form-section {
  height: 180px;
  display: flex;
  align-items: center;
  background-color: #F8F5F0;
}

.home-inline-form-section>.container {
  width: 100%;
}

.inline-form__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.inline-form__intro {
  flex-shrink: 0;
}

.inline-form__row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.inline-form__row .field {
  flex: 1;
}

.inline-form__title {
  margin: 0 0 4px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
}

.inline-form__desc {
  margin: 0;
  color: #666666;
  font-size: 13px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  color: rgba(51, 51, 51, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 42px;
  padding: 0 16px;
  color: #333333;
  background: var(--color-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(184, 146, 74, 0.12);
}

.field textarea {
  height: auto;
  min-height: 120px;
  padding: 12px 16px;
  resize: vertical;
}

.field--full {
  grid-column: 1 / -1;
}

.field-code {
  position: relative;
  flex: 1;
}

.field-code__preview {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 68px;
  height: 28px;
  object-fit: cover;
  border-radius: 3px;
}

.status-text {
  margin: 8px 0 0;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 500;
  position: absolute;
  bottom: -24px;
  right: 0;
}

.about-section__layout,
.faq-layout,
.contact-layout,
.product-detail,
.product-detail__gallery {
  display: grid;
  gap: 42px;
}

.about-section__layout {
  align-items: center;
  gap: 120px;
}

.about-section__layout,
.contact-layout,
.faq-layout,
.product-detail {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-section__media {
  position: relative;
}

.about-section__image {
  height: 808px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.about-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section__year-card {
  position: absolute;
  right: -110px;
  bottom: 100px;
  width: 200px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.15);
}

.about-section__year-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 25, 41, 0.84) 0%, rgba(11, 25, 41, 0.22) 52%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.about-section__year-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  /* 浅黑色阴影，可在此处调整透明度 (0.2) */
  z-index: 1;
}

.about-section__year-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section__year-card-content {
  position: absolute;
  inset: 0;
  padding: 32px;
  color: var(--color-white);
  z-index: 2;
}

.about-section__year {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.about-section__text p {
  color: rgba(102, 102, 102, 0.84);
  line-height: 1.8;
}

.check-list {
  display: grid;
  gap: 20px;
  margin: 32px 0 42px;
  padding-left: 0;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: #333333;
  line-height: 1.7;
  list-style: none;
  font-size: 15px;
}

.strength-card {
  position: relative;
  min-height: 560px;
  padding: 28px;
  color: var(--color-white);
}

.strength-card__bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transition: transform 0.5s ease;
  z-index: 0;
}

.strength-card:hover .strength-card__bg {
  transform: scale(1.05);
}

.strength-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 25, 41, 0.8) 0%, rgba(11, 25, 41, 0.18) 56%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.strength-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(184, 146, 74, 0.9) 0%, rgba(11, 25, 41, 0.18) 56%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.strength-card.is-featured::after,
.strength-card:hover::after {
  opacity: 1;
}

.strength-card__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.strength-card__num {
  margin-top: 70px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 78px;
  font-weight: 700;
  line-height: 1;
}

.strength-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 146, 74, 0.4);
  border-radius: 6px;
  margin-top: 14px;
}

.strength-card__icon svg {
  width: 24px;
  height: 24px;
}

.strength-card__title {
  /* margin: 0 0 10px; */
  color: var(--color-primary);
  font-size: 20px;
}

.strength-card__desc {
  /* margin: 20px 0 0; */
  margin: 0;
  color: var(--color-white);
  line-height: 1.7;
}

.strength-card__line {
  width: 32px;
  height: 2px;
  margin-top: 18px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.strength-card:hover .strength-card__line,
.strength-card.is-featured .strength-card__line {
  width: 120px;
}

.strength-card__link {
  position: absolute;
  right: 0;
  bottom: -4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.strength-card:hover .strength-card__link {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.certificate-marquee {
  position: relative;
  overflow: hidden;
}

.certificate-marquee::before,
.certificate-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 1;
  pointer-events: none;
}

.certificate-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.certificate-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.certificate-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: certificate-marquee 34s linear infinite;
}

.certificate-marquee__group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 30px;
}

.certificate-marquee__group img:first-child {
  width: 186px;
  height: 255px;
  object-fit: cover;
}

.certificate-marquee__group img:last-child {
  width: 165px;
  height: 234px;
  object-fit: cover;
}

@keyframes certificate-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.faq-grid-home {
  display: flex;
  gap: 20px;
}

.faq-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex: 1;
  gap: 40px 20px;
  transition: gap ease;
}

@media (max-width: 1024px) {
  .faq-col {
    grid-template-columns: 1fr;
  }
}

.faq-col.has-open,
.faq-col:has(.is-open) {
  gap: 20px;
}

.faq-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-soft);
  transition: background 0.2s ease;
}

.faq-card.is-open {
  background: #333333;
}

.faq-card__question {
  width: 100%;
  padding: 0 28px;
  color: #333333;
  background: transparent;
  border: 0;
  text-align: left;
}

.faq-card.is-open .faq-card__question {
  color: var(--color-white);
}

.faq-card__question strong {
  display: block;
  font-size: 18px;
  line-height: 1.4;
}

.faq-card__answer {
  display: none;
  padding: 0 30px;
  color: var(--color-white);
  line-height: 1.7;
}

.faq-card.is-open .faq-card__answer {
  display: block;
}

.post-card {
  background: var(--color-white);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}

.post-card__image {
  height: 320px;
  overflow: hidden;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.04);
}

.post-card__body {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 30px;
}

.post-card__meta,
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 12px;
}

.post-card__title {
  margin: 16px 0;
  color: #333333;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.post-card:hover .post-card__title {
  color: var(--color-primary);
}

.post-card__excerpt {
  margin: 0 0 24px;
  color: #6a7282;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.post-card__link {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.post-card:hover .post-card__link {
  color: var(--color-primary);
}

.cta-section {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background: #0b1929 center / cover no-repeat;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0b1929 10%, rgba(11, 25, 41, 0.18) 63%, rgba(255, 255, 255, 0) 100%), linear-gradient(0deg, rgba(11, 25, 41, 0.23) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0) 56%);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 110px 0;
}

.cta-section__title {
  margin: 0 0 24px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.25;
}

.cta-section__desc {
  max-width: 650px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.cta-form {
  padding: 32px;
  color: #333333;
  background: var(--color-white);
  border-radius: var(--radius-sm);
}

.cta-form__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-form__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.cta-form__icon {
  width: 26px;
  height: 26px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 14px;
  line-height: 24px;
  text-align: center;
}

.cta-form__grid {
  display: grid;
  gap: 16px;
}

.footer {
  color: rgba(255, 255, 255, 0.8);
  background: #333333;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  gap: 50px;
  padding: 60px 0 60px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.footer__logo {
  width: 100px;
/*  filter: brightness(0) invert(1);*/
}

.footer__slogan {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 14px;
  letter-spacing: 0.5px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.footer__contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #c9a84c;
  margin-top: 2px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer__social a:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

.footer__title {
  position: relative;
  margin: 0 0 30px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
}

.footer__title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 32px;
  height: 2px;
  background: #c9a84c;
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__links a,
.footer__links span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer__links a:hover,
.footer__links a.is-current {
  color: var(--color-primary);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom p,
.footer__policy a {
  margin: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.footer__policy {
  display: flex;
  gap: 24px;
}

.floating-bar {
  position: fixed;
  top: 45%;
  right: 0;
  z-index: 999;
  transform: translateY(-50%);
}

.floating-bar__panel {
  width: 111px;
  overflow: hidden;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.floating-bar__head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  background: linear-gradient(to bottom, var(--color-primary-dark), var(--color-primary));
}

.floating-bar__body {
  background: #f8f9fa;
}

.floating-bar__item,
.floating-bar__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 86px;
  padding: 12px;
  color: #333333;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease;
}

.floating-bar__item:hover,
.floating-bar__button:hover {
  background: #f0ede6;
}

.floating-bar__button:last-child {
  border-bottom: 0;
}

.product-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.product-filter__label {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
}

.product-filter__tag {
  padding: 10px 18px;
  color: #333333;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.product-filter__tag.is-active {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.product-count {
  margin: 0 0 28px;
  color: var(--color-text);
  font-size: 14px;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.product-card:hover,
.product-card.is-featured {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.product-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 24px;
  background: var(--color-soft);
}

.product-card__image img {
  max-width: 80%;
  max-height: 180px;
  object-fit: contain;
}

.product-card__body {
  padding: 18px 20px;
  border-top: 1px solid var(--color-border);
}

.product-card:hover .product-card__body,
.product-card.is-featured .product-card__body {
  color: var(--color-white);
  background: var(--color-primary);
  border-top-color: var(--color-primary);
}

.product-card__model {
  margin: 0 0 6px;
  color: var(--color-muted);
  font-size: 11px;
}

.product-card__name {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.4;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #777777;
  font-size: 12px;
}

.product-card:hover .product-card__model,
.product-card:hover .product-card__meta,
.product-card.is-featured .product-card__model,
.product-card.is-featured .product-card__meta {
  color: rgba(255, 255, 255, 0.82);
}

.product-detail__gallery {
  grid-template-columns: 1fr;
}

.product-gallery__main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.product-gallery__main img {
  max-width: 85%;
  max-height: 300px;
  object-fit: contain;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  width: 38px;
  height: 38px;
  color: #333333;
  background: var(--color-white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}

.gallery-nav--prev {
  left: 12px;
}

.gallery-nav--next {
  right: 12px;
}

.gallery-counter {
  position: absolute;
  right: 16px;
  bottom: 12px;
  color: var(--color-muted);
  font-size: 12px;
}

.product-gallery__thumbs {
  display: flex;
  gap: 12px;
}

.product-gallery__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 80px;
  padding: 8px;
  background: #f5f3ee;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.product-gallery__thumb.is-active {
  border-color: var(--color-primary);
}

.product-gallery__thumb img {
  max-width: 80%;
  max-height: 64px;
  object-fit: contain;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.product-model {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 6px 12px;
  color: #666666;
  background: #f5f3ee;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-detail__title {
  margin: 18px 0 16px;
  font-size: 32px;
  line-height: 1.3;
}

.product-divider {
  width: 50px;
  height: 3px;
  margin-bottom: 20px;
  background: var(--color-primary);
}

.product-detail__desc {
  color: #555555;
  line-height: 1.9;
}

.finish-row {
  margin-top: 28px;
}

.finish-row__title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
}

.finish-row__chips {
  display: flex;
  gap: 10px;
}

.finish-chip {
  width: 36px;
  height: 36px;
  border: 3px solid transparent;
  border-radius: 50%;
}

.finish-chip.is-active {
  outline: 1px solid var(--color-primary);
  border-color: var(--color-primary);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 51px;
  padding: 0 22px;
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.contact-pill--wa {
  background: #25d366;
}

.contact-pill--dark {
  background: #111111;
}

.contact-pill__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab-button {
  padding: 10px 18px;
  color: #666666;
  background: transparent;
  border: 1px solid #dddddd;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tab-button.is-active {
  color: #111111;
  background: #c9a84c;
  border-color: #c9a84c;
}

.faq-section+.faq-section {
  margin-top: 40px;
}

.faq-section__title {
  margin: 0 0 20px;
  padding-left: 15px;
  font-size: 18px;
  font-weight: 700;
  border-left: 3px solid #c9a84c;
}

.faq-accordion {
  border-bottom: 1px solid #f0ede6;
}

.faq-accordion__button {
  width: 100%;
  padding: 16px;
  color: #222222;
  background: transparent;
  border: 0;
  border-left: 3px solid transparent;
  text-align: left;
}

.faq-accordion.is-open .faq-accordion__button {
  background: rgba(201, 168, 76, 0.8);
  border-left-color: #c9a84c;
}

.faq-accordion__button strong {
  display: block;
  padding-right: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.faq-accordion__button-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-accordion__icon {
  color: #c9a84c;
  font-size: 20px;
  line-height: 1;
}

.faq-accordion.is-open .faq-accordion__icon {
  color: var(--color-white);
}

.faq-accordion__content {
  display: none;
  padding: 0 16px 18px;
  color: #666666;
  line-height: 1.9;
}

.faq-accordion.is-open .faq-accordion__content {
  display: block;
}

.faq-aside {
  padding: 32px;
  background: var(--color-soft);
  border-radius: var(--radius-sm);
  align-self: start;
  position: sticky;
  top: 110px;
}

.faq-aside h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.faq-aside p {
  margin: 0 0 16px;
  color: #666666;
  line-height: 1.7;
}

.faq-aside ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.faq-aside li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  color: #555555;
  font-size: 13px;
}

.faq-aside li::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-top: 8px;
  border-radius: 50%;
  background: #c9a84c;
}

.stats-grid {
  margin-top: 32px;
  border: 1px solid var(--color-border);
}

.stat-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.stat-card__value {
  margin: 0 0 6px;
  color: #111111;
  font-size: 20px;
  font-weight: 700;
}

.stat-card__label {
  margin: 0;
  color: #888888;
  font-size: 12px;
}

.certificate-grid img,
.environment-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.environment-card {
  position: relative;
  min-height: 300px;
}

.environment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(51, 51, 51, 0.58) 0%, rgba(51, 51, 51, 0.18) 48%, rgba(0, 0, 0, 0) 100%);
}

.environment-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  color: var(--color-white);
  font-size: 24px;
  background: rgba(51, 51, 51, 0.5);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 90px;
  color: var(--color-white);
  background: rgba(184, 146, 74, 0.75);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
}

.service-card__no {
  margin: 0 0 10px;
  color: rgba(184, 146, 74, 0.5);
  font-size: 24px;
  font-weight: 600;
}

.service-card__title {
  margin: 0 0 10px;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
}

.service-card__desc {
  margin: 0;
  color: rgba(102, 102, 102, 0.8);
  line-height: 1.6;
}

.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.news-pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  color: rgba(102, 102, 102, 0.8);
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.news-pagination button.is-active {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.article-wrap {
  max-width: 1040px;
  margin: 0 auto;
}

.article-cover {
  height: 460px;
  margin-bottom: 48px;
  overflow: hidden;
  border-radius: 6px;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-lead {
  margin-bottom: 40px;
  padding-left: 20px;
  color: #555555;
  border-left: 3px solid var(--color-primary);
  font-size: 16px;
  font-style: italic;
  line-height: 1.75;
}

.article-content {
  display: grid;
  gap: 28px;
}

.article-content h2 {
  margin: 6px 0 0;
  color: #333333;
  font-size: 22px;
}

.article-content p {
  margin: 0;
  color: #555555;
  line-height: 1.85;
}

.article-content figure {
  margin: 0;
}

.article-content figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.article-content figcaption {
  margin-top: 10px;
  color: #999999;
  font-size: 13px;
  font-style: italic;
  text-align: center;
}

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-content li {
  display: flex;
  gap: 12px;
  color: #555555;
  line-height: 1.7;
}

.article-content li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--color-primary);
}

.article-divider {
  height: 1px;
  margin: 56px 0;
  background: var(--color-border);
}

.article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.article-nav__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.article-nav__card:hover {
  background: #fdf9f4;
  border-color: var(--color-primary);
}

.article-nav__card--next {
  text-align: right;
  flex-direction: row-reverse;
}

.article-nav__card img {
  width: 80px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
}

.article-nav__eyebrow {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.article-nav__title {
  margin: 6px 0 0;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-info {
  padding: 0 0 20px;
}

.contact-card {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(184, 146, 74, 0.12);
  border: 1px solid rgba(184, 146, 74, 0.3);
}

.contact-card__label {
  margin: 0 0 4px;
  color: #999999;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-card__value {
  margin: 0;
  color: #333333;
  line-height: 1.6;
}

.contact-map {
  padding: 24px;
  text-align: center;
  background: #f8f6f1;
  border: 1px solid #e0ddd6;
}

.contact-map__pin {
  margin: 0 auto 12px;
  color: var(--color-primary);
  font-size: 36px;
}

.contact-map p {
  margin: 0 0 16px;
  color: #999999;
  line-height: 1.6;
}

.contact-form-card {
  padding: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.contact-note {
  margin: 12px 0 0;
  color: #999999;
  font-size: 12px;
}

@media (max-width: 1280px) {

  /* 平板端：隐藏水平菜单，显示汉堡按钮 */
  .mobile-menu-btn {
    display: block !important;
  }

  .site-header__inner {
    position: relative;
    flex-wrap: nowrap !important;
    gap: 0 !important;
  }

  .site-logo {
    z-index: 101;
    flex-shrink: 0;
  }

  /* 隐藏水平导航菜单 */
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #eee;
    z-index: 100;
    gap: 16px !important;

    display: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .site-nav.is-open {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 8px 0 !important;
    font-size: 14px !important;
  }

  /* 右侧区域：增加间距，不那么拥挤 */
  .site-header__aside {
    display: flex;
    flex: 0 0 auto !important;
    justify-content: flex-end;
    margin-right: 0;
    gap: 50px !important;
    margin-left: auto !important;
  }

  /* 电话：缩小字号 */
  .site-header__phone {
    font-size: 14px !important;
    gap: 6px !important;
    flex-shrink: 0;
  }

  .site-header__phone span {
    font-size: 13px !important;
  }

  /* TEXT ME 按钮：缩小 */
  .header-text-btn {
    width: 80px !important;
    height: 32px !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
    flex-shrink: 0;
  }

  /* 语言选择：缩小 */
  .site-header__lang {
    display: inline-flex !important;
    font-size: 12px !important;
    gap: 4px !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
    flex-shrink: 0;
  }

  .site-header__lang-text {
    display: inline !important;
    font-size: 12px !important;
  }

  /* 汉堡按钮保持可见 */
  .mobile-menu-btn {
    flex-shrink: 0;
    margin-left: 8px;
  }

  /* 隐藏菜单内的分隔线和额外链接（平板端用 aside 显示） */
  .site-nav__divider,
  .site-nav__extra {
    display: none !important;
  }

  .inline-form__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* 平板端 About 区改为单列 */
  .page-home .about-section__layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .page-home .about-section__media {
    width: 100% !important;
  }

  /* 平板端 About 文字区不被固定1040px高度限制 */
  .page-home .home-about-section {
    height: auto !important;
    min-height: auto !important;
    padding: 72px 0 !important;
    display: block !important;
  }

  /* 平板端所有页面：多列网格改为单列，防止两列布局在平板上挤压错位 */
  .split-panel,
  .faq-layout,
  .contact-layout,
  .product-detail,
  .cta-section__inner,
  .article-nav,
  .footer__inner {
    grid-template-columns: 1fr !important;
  }

  .category-grid,
  .post-grid,
  .product-grid,
  .strength-grid,
  .service-grid,
  .stats-grid,
  .certificate-grid,
  .environment-grid,
  .faq-grid-home {
    flex-direction: column !important;
  }

  .inline-form__row,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  /* 平板端 About 页面图片高度缩小 */
  .page-about .about-page-image {
    height: 420px !important;
  }

  /* 平板端联系卡片缩小 */
  .page-contact .contact-card {
    gap: 16px !important;
  }

  .page-contact .contact-card__icon {
    width: 44px !important;
    height: 44px !important;
  }

  /* 平板端 About 统计卡片改为单列 */
  .page-about .about-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* 平板端产品详情页改为单列 */
  .page-product-detail .product-detail {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* 平板端产品图库缩小 */
  .page-product-detail .product-gallery__main {
    min-height: 360px !important;
  }

  .page-product-detail .product-gallery__main img {
    max-height: 240px !important;
  }
}

@media (max-width: 1024px) {

  html {
    overflow-x: hidden;
  }

  .page-home .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .home-certificates[style],
  .home-blog-section[style],
  .home-certificates,
  .home-blog-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .section-block {
    padding: 72px 0;
  }

  .site-header__inner,
  .section-head,
  .hero-banner__actions,
  .contact-actions,
  .footer__bottom {
    flex-wrap: wrap;
  }

  .hero-banner {
    min-height: 760px;
  }

  .hero-banner__inner {
    padding-top: 110px;
  }

  .hero-strip {
    margin-top: 90px;
  }

  .split-panel,
  .about-section__layout,
  .faq-layout,
  .contact-layout,
  .product-detail,
  .cta-section__inner,
  .article-nav,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .post-grid,
  .product-grid,
  .strength-grid,
  .service-grid,
  .stats-grid,
  .certificate-grid,
  .environment-grid,
  .faq-grid-home {
    flex-direction: column;
  }

  .inline-form__row,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-panel__content {
    right: 28px;
    bottom: 36px;
    left: 28px;
  }

  .about-section__year-card {
    right: 16px;
    bottom: 16px;
  }

  /* 平板端悬浮栏：缩小并移到右下角，避免全程遮挡正文 */
  .floating-bar {
    display: block;
    top: auto !important;
    bottom: 16px !important;
    right: 8px !important;
    transform: none !important;
    z-index: 998 !important;
  }

  .floating-bar__panel {
    width: 64px !important;
    border-radius: 8px 0 0 8px !important;
  }

  .floating-bar__head {
    min-height: 40px !important;
    padding: 6px 4px !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
  }

  .floating-bar__item,
  .floating-bar__button {
    min-height: 54px !important;
    padding: 6px 4px !important;
    gap: 2px !important;
    font-size: 9px !important;
  }

  .floating-bar__item-icon {
    width: 20px !important;
    height: 20px !important;
  }

  /* 平板端给页面底部留白，防止悬浮栏遮挡最后一屏内容 */
  .page-main {
    padding-bottom: 90px !important;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-head {
    margin-bottom: 28px;
  }

  .category-grid,
  .post-grid,
  .product-grid,
  .strength-grid,
  .service-grid,
  .stats-grid,
  .certificate-grid,
  .environment-grid,
  .inline-form__row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    min-height: 680px;
  }

  .hero-strip {
    display: none;
  }

  .inner-hero,
  .inner-hero__inner {
    min-height: 420px;
  }

  .feature-panel {
    min-height: 360px;
  }

  .product-gallery__thumbs {
    flex-wrap: wrap;
  }

  .post-card__image,
  .article-cover {
    height: 240px;
  }

  .cta-form,
  .faq-aside {
    padding: 24px;
  }
}

/* Blog Detail Layout */
.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: start;
}

.card-white {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.card-dark {
  background: #333333;
  padding: 32px;
  border-radius: var(--radius-sm);
  color: #ffffff;
}

.article-help-box {
  margin-top: 48px;
  padding: 32px;
  background: #fdfdfd;
  border: 1px solid #eeeeee;
  border-radius: var(--radius-sm);
}

.sidebar-widget {
  margin-bottom: 24px;
}

.sidebar-form input,
.sidebar-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #fff;
  transition: border-color 0.2s;
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
  border-color: var(--color-primary);
}

.sidebar-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-related-list li {
  margin-bottom: 20px;
}

.sidebar-related-list li:last-child {
  margin-bottom: 0;
}

.sidebar-related-list a {
  color: #cccccc;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar-related-list a:hover {
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
}

.page-home .container {
  width: calc(100% - 260px);
  max-width: none;
}

.page-home .site-header {
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 0;
  box-shadow: 0 4px 4px rgba(168, 168, 168, 0.18);
}

.page-home .site-header__inner {
  min-height: 80px;
}

.page-home .site-nav a {
  padding: 6px 0;
}

.site-header__icon,
.site-header__lang-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  font-size: 14px;
  object-fit: contain;
}

.site-header__caret {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.site-header__icon,
.site-header__lang-icon,
.site-header__caret,
.floating-bar__item-icon,
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-home .site-header__caret {
  color: #5a5a68;
  font-size: 12px;
}



.page-home .hero-banner {
  min-height: 960px;
}

.page-home .hero-banner__inner {
  min-height: 960px;
  padding: 170px 0 0;
}

.hero-bimg {
  width: 100%;
  height: 880px;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.page-home .section-tag {
  margin-bottom: 22px;
  gap: 12px;
  letter-spacing: 3.6px;
}

.page-home .section-tag::before {
  width: 48px;
}

.page-home .hero-banner__content .section-tag {
  margin-bottom: 59px;
}

.page-home .hero-banner__title {
  max-width: 1200px;
  margin-bottom: 59px;
  font-size: 80px;
  line-height: 88px;
}

.page-home .hero-banner__desc {
  max-width: 852px;
  margin-bottom: 66px;
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 32.4px;
}

.page-home .hero-banner__actions .btn {
  min-height: 54px;
}

.page-home .hero-banner__actions .btn-primary {
  width: 251px;
}

.page-home .hero-banner__actions .btn-primary:hover,
.page-home .home-viewall-btn:hover,
.home-cta-section .cta-form__submit:hover,
.page-home .inline-form__submit:hover,
.home-cta-section .btn-primary:hover {
  filter: drop-shadow(0 4px 4px #b48732);
  transform: none;
}

.home-section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.home-section-tagline__line {
  width: 40px;
  height: 1px;
  background: #b8924a;
}

.inline-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 32px;
  color: var(--color-white);
  background: linear-gradient(rgba(246, 246, 183, 0.2) 0%, rgba(238, 219, 141, 0.2) 100%), linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 100%);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.inline-form__submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-home .hero-banner__actions .btn-secondary {
  padding: 0 38px;
}

.page-home .hero-banner__actions .btn-secondary:hover {
  color: #b8924a;
  background: #ffffff;
  border-color: #ffffff;
  transform: none;
}

.btn-arrow {
  font-size: 15px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow,
.section-link:hover .btn-arrow,
.inline-form__submit:hover .btn-arrow,
.cta-form__submit:hover .btn-arrow {
  transform: translateX(6px);
}

.hero-strip--fixed {
  position: absolute;
  bottom: 86px;
  left: 0;
  margin-top: 0;
  padding-top: 22px;
}

.page-home .hero-strip {
  gap: 40px;
  width: 720px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .hero-strip__desc {
  color: #666666;
}

.page-home .home-category-section {
  padding: 72px 0;
}

@media (min-width: 1025px) {
  .page-home .home-category-section {
    height: 1040px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.page-home .home-category-section .section-head {
  margin-bottom: 32px;
}

.page-home .home-category-section .section-title,
.page-home .home-blog-section .section-title,
.page-home .home-faq-section .section-title,
.page-home .home-certificates .section-title,
.home-cta-section .cta-section__title,
.page-home .about-section__text .section-title,
.page-home .strength-grid+.section-title {
  font-size: 52px;
  line-height: 59.8px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.section-link--dark {
  color: #0b1929;
}

.page-home .category-grid {
  gap: 20px;
}

.page-home .category-card {
  min-height: 350px;
}

.page-home .category-card__tag,
.page-home .category-card__more {
  transition: opacity 0.3s ease, transform 0.35s ease;
}

@media (min-width: 1200px) {
  .page-home .category-grid {
    grid-template-columns: repeat(3, 540px);
    justify-content: space-between;
  }

  .page-home .category-card {
    width: 540px;
    height: 350px;
    min-height: 350px;
  }
}

.page-home .category-card__content {
  transform: translateY(28px);
  transition: transform 0.35s ease;
}

.page-home .category-card:hover .category-card__content {
  transform: translateY(0);
}

.page-home .category-card__more {
  display: inline-flex;
  gap: 8px;
  opacity: 0;
}

.page-home .category-card:hover .category-card__more {
  opacity: 1;
}

.page-home .home-recommended-section .inline-form {
  margin-top: 24px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.02);
}

.inline-form__layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
}

.inline-form__intro {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 320px;
}

.page-home .inline-form__row {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.page-home .inline-form__fields .field {
  gap: 0;
}

.page-home .inline-form__fields .field input {
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.page-home .inline-form__fields .field input:focus {
  border-color: #b8924a;
  box-shadow: none;
}

.page-home .inline-form__fields .field-code__preview {
  top: 12px;
  right: 8px;
  width: 56px;
  height: 17px;
}

.inline-form__submit {
  width: 111px;
  height: 42px;
  color: #ffffff;
  background-image: linear-gradient(rgba(246, 246, 183, 0.2) 0%, rgba(238, 219, 141, 0.2) 100%), linear-gradient(90deg, #b8924a 0%, #b8924a 100%);
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.8px;
}

.page-home .about-section__layout {
  grid-template-columns: 646px minmax(0, 1fr);
  gap: 84px;
  align-items: start;
}

.page-home .about-section__media {
  width: 646px;
}

.page-home .about-section__image {
  width: 646px;
  height: 808px;
}

.page-home .about-section__year-card {
  width: 200px;
  height: 207px;
}

.page-home .about-section__text {
  margin: 0 0 0 100px;
}

.page-home .home-about-section {
  padding: 72px 0;
}

@media (min-width: 1281px) {
  .page-home .home-about-section {
    height: 1040px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
}

.page-home .home-about-section .home-section-tagline {
  margin: 30px 0 10px;
}

.page-home .about-section__text .section-title {
  max-width: 830px;
  margin-bottom: 30px;
  line-height: 70px;
}

.page-home .about-section__text p {
  max-width: 830px;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 26px;
}

.page-home .about-section__lead {
  margin-bottom: 32px;
}

.page-home .check-list {
  /* gap: 16px; */
  margin: 40px 0 50px;
}

.page-home .check-list li {
  color: #333333;
  font-size: 14px;
  line-height: 22.75px;
}

.page-home .home-about-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.page-home .home-about-btn {
  width: 270px;
  justify-content: center;
}

.page-home .home-about-outline {
  min-width: 167px;
  justify-content: center;
}

.page-home .strength-grid {
  gap: 20px;
}

.page-home .strength-card {
  min-height: 600px;
  padding: 31px;
}

.page-home .strength-card__num {
  margin-top: 85px;
  font-size: 80px;
}

.page-home .strength-card__title {
  /* margin-bottom: 8px; */
  font-size: 18px;
  font-weight: 600;
  line-height: 23.4px;
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

.page-home .strength-card__desc {
  max-width: 461px;
  font-size: 14px;
  font-weight: 300;
  line-height: 22.75px;
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
  height: 69px;
  display: flex;
  align-items: flex-start;
}

.home-certificates {
  position: relative;
  min-height: 520px;
  border-top: 1px solid #f3f4f6;
  background: #ffffff;
  display: flex;
  align-items: center;
}

.home-certificates .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.home-certificates .section-head {
  flex: 0 0 45%;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}

.certificate-display {
  flex: 0 0 55%;
  overflow: hidden;
  position: relative;
  /* Mask edges for a smoother look, optional but nice */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.cert-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: cert-marquee-anim 20s linear infinite;
}

.cert-marquee-track:hover {
  animation-play-state: paused;
}

.cert-marquee-group {
  display: flex;
  align-items: center;
  gap: 52px;
  padding-right: 52px;
  /* same as gap to maintain equal spacing between the two groups */
}

@keyframes cert-marquee-anim {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.cert-wrapper {
  position: relative;
  width: 200px;
  height: 280px;
  flex-shrink: 0;
}

.cert-frame {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  object-fit: fill;
  pointer-events: none;
}

.cert-img {
  position: absolute;
  top: 14px;
  left: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  z-index: 1;
  object-fit: contain;
  background: #fff;
}

.home-certificates::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.home-certificates::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background-position: bottom center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}

.home-certificates>* {
  position: relative;
  z-index: 2;
}

.page-home .home-certificates .section-head {
  margin-bottom: 60px;
  padding-top: 77px;
  align-items: flex-start;
}

.page-home .home-certificates .home-section-tagline {
  margin-bottom: 22px;
}

.page-home .home-certificates .section-desc {
  font-size: 15px;
  line-height: 24.375px;
}

.page-home .certificate-marquee::before,
.page-home .certificate-marquee::after {
  width: 200px;
}

.page-home .certificate-marquee__track {
  animation-duration: 40s;
}

.page-home .certificate-marquee__group {
  gap: 16px;
  padding: 0 32px;
}

.page-home .certificate-marquee__group img:first-child {
  width: 186px;
  height: 255px;
}

.page-home .certificate-marquee__group img:last-child {
  width: 165px;
  height: 234px;
}

.page-home .home-blog-section {
  padding: 130px 0;
}

.page-home .home-faq-section {
  padding: 130px 0;
}

@media (min-width: 1025px) {
  .page-home .home-faq-section {
    height: 1040px;
    padding: 0 130px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-home .home-faq-section>.container {
    width: 100%;
  }

  .page-home .home-blog-section {
    height: 960px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-home .home-blog-section>.container {
    width: 100%;
  }
}

.page-home .home-faq-section .section-head {
  margin-bottom: 60px;
  align-items: end;
}

.page-home .home-faq-section .home-section-tagline {
  margin-bottom: 32px;
}

.page-home .home-faq-section .section-summary {
  font-size: 15px;
  line-height: 27px;
}

.page-home .faq-card {
  margin-bottom: 0;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.page-home .faq-card.is-open {
  height: 160px;
  justify-content: center;
}

.page-home .faq-card__question {
  padding: 0 30px;
  height: 100px;
  display: flex;
  align-items: center;
}

.page-home .faq-card.is-open .faq-card__question {
  height: auto;
  padding: 0 30px 12px;
  align-items: flex-start;
}

.page-home .faq-card__question-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.page-home .faq-card__question strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 25.2px;
}

.page-home .faq-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  font-size: 24px;
  line-height: 25.2px;
}

.page-home .faq-card__icon-minus {
  display: none;
}

.page-home .faq-card.is-open .faq-card__icon-plus {
  display: none;
}

.page-home .faq-card.is-open .faq-card__icon-minus {
  display: inline;
}

.page-home .faq-card__answer {
  padding: 0 30px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.75px;
}

.page-home .home-viewall-btn {
  width: 190px;
}

.page-home .post-card {
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
}

.page-home .post-card__image {
  height: 321px;
}

.page-home .post-card__body {
  padding: 31px;
}

.page-home .post-card__excerpt {
  font-size: 14px;
  line-height: 22.75px;
  max-height: calc(22.75px * 2);
}

.home-cta-section {
  height: 740px;
  display: flex;
  align-items: center;
}

.home-cta-section .cta-section__inner {
  grid-template-columns: 1fr 614px;
  gap: 80px;
  padding: 0;
  align-items: center;
}

.home-cta-section .section-tag {
  margin-bottom: 32px;
}

.home-cta-section .cta-section__title {
  margin-bottom: 32px;
  color: #ffffff;
  line-height: 70px;
}

.home-cta-section .cta-section__title .highlight {
  color: #B8924A;
}

.home-cta-section .cta-section__desc {
  max-width: 684px;
  margin-bottom: 48px;
  font-size: 15px;
  line-height: 24.375px;
}

.home-cta-section .cta-form {
  width: 614px;
  height: 550px;
  box-sizing: border-box;
  padding: 33px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.home-cta-section .cta-form__head {
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.home-cta-section .cta-form__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 0;
  color: #c9a84c;
  font-size: 18px;
}

.home-cta-section .cta-form__grid {
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.home-cta-section .cta-form__submit {
  grid-column: 1 / -1;
}

.home-cta-section .cta-form__grid .field {
  gap: 6px;
}

.home-cta-section .cta-form__grid .field label {
  text-transform: none;
}

.home-cta-section .cta-form__grid .field input,
.home-cta-section .cta-form__grid .field textarea {
  background: #f8f5f0;
  border-color: #ffffff;
}

.home-cta-section .cta-form__grid .field input {
  height: 46px;
}

.home-cta-section .cta-form__grid .field textarea {
  min-height: 86px;
  resize: none;
}

.cta-form__submit {
  width: 100%;
  height: 50px;
  color: #ffffff;
  background-image: linear-gradient(rgba(246, 246, 183, 0.2) 0%, rgba(238, 219, 141, 0.2) 100%), linear-gradient(90deg, #b8924a 0%, #b8924a 100%);
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}





.floating-bar__item-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Product pages alignment refinements */
.page-products .site-header,
.page-product-detail .site-header,
.page-blog .site-header,
.page-blog-detail .site-header,
.page-faq .site-header,
.page-about .site-header,
.page-contact .site-header,
.page-service-process .site-header {
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 0;
  box-shadow: 0 4px 4px rgba(168, 168, 168, 0.18);
}

.page-products .site-nav a,
.page-product-detail .site-nav a,
.page-blog .site-nav a,
.page-blog-detail .site-nav a,
.page-faq .site-nav a,
.page-about .site-nav a,
.page-contact .site-nav a,
.page-service-process .site-nav a {
  padding: 6px 0;
}

.page-products .site-header__caret,
.page-product-detail .site-header__caret,
.page-blog .site-header__caret,
.page-blog-detail .site-header__caret,
.page-faq .site-header__caret,
.page-about .site-header__caret,
.page-contact .site-header__caret,
.page-service-process .site-header__caret {
  color: #5a5a68;
  font-size: 12px;
}

.page-products .product-list-section,
.page-product-detail .product-detail-section,
.page-product-detail .related-products-section {
  padding: 60px 0;
}

.page-product-detail .product-specs-section {
  padding: 42px 0 56px;
  background: #f8f5f0;
}

.page-product-detail .product-specs__head {
  margin-bottom: 22px;
}

.page-product-detail .product-specs__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(184, 146, 74, 0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.page-product-detail .product-specs__eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(184, 146, 74, 0.6);
}

.page-product-detail .product-specs__table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 80px;
  row-gap: 0;
}

.page-product-detail .product-specs__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  border-bottom: 1px solid #e6dfd3;
}

.page-product-detail .product-specs__item span {
  color: #999999;
  font-size: 12px;
  line-height: 18px;
}

.page-product-detail .product-specs__item strong {
  color: #333333;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-align: right;
}

.page-products .product-filter {
  gap: 16px 24px;
  margin-bottom: 32px;
}

.page-products .product-filter__tag {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.page-products .product-filter__tag:hover:not(.is-active) {
  color: var(--color-primary);
  background: rgba(184, 146, 74, 0.15);
  border-color: var(--color-primary);
}

.page-products .product-count {
  margin-bottom: 32px;
  color: #666666;
}

.page-products .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.page-products .product-card,
.page-product-detail .related-product-card {
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.page-products .product-card a,
.page-product-detail .related-product-card a {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}

.page-products .product-card__image {
  padding: 24px;
  background: var(--color-white);
  flex-shrink: 0;
}

.page-products .product-card__body,
.page-product-detail .related-product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-products .product-card__meta,
.page-product-detail .related-product-card__meta {
  margin-top: auto;
}

.page-products .product-card__details {
  color: var(--color-primary);
}

.page-products .product-card:hover .product-card__details,
.page-products .product-card.is-featured .product-card__details {
  color: var(--color-white);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination__btn,
.pagination__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  border-radius: 4px;
}

.pagination__btn {
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
}

.pagination__btn:hover,
.pagination__btn.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.pagination__btn[style*="pointer-events: none"] {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-products .product-card__image img,
.page-product-detail .related-product-card__image img {
  transition: transform 0.5s ease;
}

.page-products .product-card__body {
  padding: 16px 20px;
}

.page-products .product-card__model {
  line-height: 16.5px;
}

.page-products .product-card__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.page-products .product-card__meta {
  align-items: center;
}

.page-products .product-card__details,
.page-product-detail .related-product-card__details {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: 1;
  color: inherit;
}

.page-products .product-card__details .btn-arrow,
.page-product-detail .related-product-card__details .btn-arrow {
  transition: transform 0.2s ease;
}

.page-products .product-card:not(.is-featured):not(:hover) .product-card__meta>span:first-child {
  color: #777777;
}

.page-products .product-card:not(.is-featured):not(:hover) .product-card__details,
.page-product-detail .related-product-card:not(:hover) .related-product-card__details {
  color: var(--color-primary);
}

.page-products .product-card:hover .product-card__image img,
.page-products .product-card.is-featured .product-card__image img,
.page-product-detail .related-product-card:hover .related-product-card__image img {
  transform: scale(1.05);
}

.page-products .product-card:hover .product-card__details .btn-arrow,
.page-products .product-card.is-featured .product-card__details .btn-arrow,
.page-product-detail .related-product-card:hover .related-product-card__details .btn-arrow {
  transform: translateX(4px);
}

.page-product-detail .product-detail {
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.page-product-detail .product-detail>[data-gallery] {
  display: grid;
  gap: 16px;
  width: 790px;
}

.page-product-detail .product-detail> :last-child {
  width: 790px;
}

.page-product-detail .gallery-nav {
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.page-product-detail .gallery-nav:hover {
  color: #ffffff;
  background: var(--color-primary);
  transform: translateY(-50%) scale(1.02);
}

.page-product-detail .product-gallery__thumb {
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.page-product-detail .product-gallery__thumb:hover {
  border-color: var(--color-primary);
}

.page-product-detail .product-detail__title {
  max-width: 560px;
  line-height: 44px;
}

.page-product-detail .product-detail__desc {
  max-width: 560px;
  font-size: 14px;
  line-height: 26.6px;
}

.page-product-detail .finish-row {
  margin-top: 0;
}

.page-product-detail .finish-row__title {
  margin-bottom: 10px;
}

.page-product-detail [data-finish-label] {
  color: var(--color-primary);
}

.page-product-detail .finish-chip {
  transition: transform 0.2s ease, border-color 0.2s ease, outline-color 0.2s ease;
}

.page-product-detail .finish-chip:hover {
  transform: scale(1.04);
}

.page-product-detail .contact-actions {
  align-items: center;
}

.page-product-detail .contact-pill {
  font-size: 13px;
}

.page-product-detail .contact-pill--wa {
  justify-content: center;
  min-width: 200px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.page-product-detail .contact-pill--wa:hover {
  opacity: 0.9;
}

.page-product-detail .contact-pill--dark {
  gap: 20px;
  min-width: 280px;
  padding: 0 20px;
}

.page-product-detail .contact-pill__phone,
.page-product-detail .contact-pill__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-product-detail .contact-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.page-product-detail .contact-pill--wa .contact-pill__icon {
  color: #ffffff;
}

.page-product-detail .related-products-section .section-head {
  margin-bottom: 40px;
}

.page-product-detail .related-products-section .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.page-product-detail .related-product-card {
  height: 100%;
}

.page-product-detail .related-product-card__image {
  min-height: 200px;
  padding: 24px;
  background: #ffffff;
}

.page-product-detail .related-product-card__image img {
  max-width: 80%;
  max-height: 140px;
  object-fit: contain;
}

.page-product-detail .related-product-card__body {
  padding: 14px 16px;
}

.page-product-detail .related-product-card__body .product-card__model {
  color: #999999;
}

.page-product-detail .related-product-card__body .product-card__name {
  margin-bottom: 6px;
  color: #222222;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
}

.page-product-detail .related-product-card:hover .related-product-card__body {
  background: var(--color-primary);
  border-top-color: var(--color-primary);
}

.page-product-detail .related-product-card:hover .product-card__model,
.page-product-detail .related-product-card:hover .related-product-card__details {
  color: rgba(255, 255, 255, 0.82);
}

.page-product-detail .related-product-card:hover .product-card__name {
  color: #ffffff;
}

.page-about .about-page-intro {
  padding: 70px 0 78px;
}

.page-about .about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.page-about .about-page-badge {
  display: inline-flex;
  align-items: center;
  height: 28.5px;
  padding: 0 14px;
  margin-bottom: 16px;
  color: #c9a84c;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-about .about-page-copy .section-title {
  margin-bottom: 0;
}

.page-about .about-page-copy .product-divider,
.page-about .about-center-head .product-divider {
  margin-top: 16px;
}

.page-about .about-page-copy p {
  margin: 0 0 16px;
  color: #555555;
  font-size: 14px;
  line-height: 26.6px;
}

.page-about .about-page-copy p:first-of-type {
  color: #666666;
  font-size: 15px;
  line-height: 25.5px;
}

.page-about .about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  border: 1px solid #e8e4dc;
  background: #e8e4dc;
}

.page-about .about-stat-card {
  padding: 17px 18px;
  background: #ffffff;
}

.page-about .about-stat-card__value {
  margin: 0 0 6px;
  color: #111111;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.page-about .about-stat-card__label {
  margin: 0;
  color: #888888;
  font-size: 12px;
  line-height: 18px;
}

.page-about .about-page-image {
  height: 605px;
  overflow: hidden;
  border-radius: 4px;
}

.page-about .about-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about .about-certs-section {
  position: relative;
  padding: 80px 0 90px;
  background: #f8f5f0;
}

.page-about .about-certs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/773200f8014ee8faf6ca0d2d6b06d2090716850a.png") center/cover no-repeat;
  opacity: 0.56;
  pointer-events: none;
}

.page-about .about-certs-section .container {
  position: relative;
  z-index: 1;
}

.page-about .about-center-head {
  align-items: center;
  margin-bottom: 40px;
  text-align: center;
}

.page-about .about-cert-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  align-items: end;
}

.page-about .about-cert-card {
  height: 329px;
  overflow: hidden;
  border-radius: 2px;
}

.page-about .about-cert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about .about-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.page-about .about-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  color: #b8924a;
  background: #ffffff;
  border: 1px solid #b8924a;
  border-radius: 50%;
  font-size: 22px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.page-about .about-carousel-btn--next {
  color: #ffffff;
  background: #b8924a;
}

.page-about .about-env-section {
  padding: 60px 0 90px;
  background: #ffffff;
}

.page-about .about-env-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.page-about .about-env-card {
  border-radius: 4px;
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.page-about .about-env-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(51, 51, 51, 0.58) 0%, rgba(51, 51, 51, 0.18) 48%, rgba(0, 0, 0, 0) 100%);
}

.page-about .about-env-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about .about-env-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  color: #ffffff;
  background: rgba(51, 51, 51, 0.5);
  font-size: 24px;
  line-height: 43.2px;
}

.page-service-process .service-process-section {
  padding: 70px 0 40px;
  background: #ffffff;
}

.page-service-process .service-process-head {
  margin-bottom: 56px;
}

.page-service-process .service-process-head .home-section-tagline {
  margin-bottom: 18px;
}

.page-service-process .service-process-head .section-title {
  margin-bottom: 18px;
}

.page-service-process .service-process-head .section-desc {
  max-width: 1140px;
  color: rgba(102, 102, 102, 0.82);
  font-size: 15px;
  line-height: 24px;
}

.page-service-process .service-process-flow {
  display: grid;
  /* 👇 这里可以调节行与行之间的默认间距 */
  gap: 8px;
}

.page-service-process .service-flow-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  position: relative;
}

.page-service-process .service-flow-row--reverse {
  direction: ltr;
  position: relative;
  /* 👇 这里可以自由调节第二行（05-08）卡片整体的位置 */
  top: -55px;
  left: 0px;
}

.page-service-process .service-flow-arrow,
.page-service-process .service-flow-drop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 0;
  margin: 0 auto;
}

.page-service-process .service-flow-arrow {
  position: absolute;
  top: 100px;
  /* center with icon */
  width: 60px;
  height: 30px;
  margin: 0;
  transform: translateX(-50%);
  z-index: 2;
}

.page-service-process .service-flow-arrow:nth-of-type(1) {
  left: calc(25% - 5px);
}

.page-service-process .service-flow-arrow:nth-of-type(2) {
  left: 50%;
}

.page-service-process .service-flow-arrow:nth-of-type(3) {
  left: calc(75% + 5px);
}

.page-service-process .service-flow-arrow img {
  width: 100%;
  height: auto;
  display: block;
}

.page-service-process .service-flow-row--reverse .service-flow-arrow img {
  transform: rotate(180deg);
}

.page-service-process .service-flow-drop img {
  width: 60px;
  height: 30px;
  transform: rotate(90deg);
  display: block;
}

.page-service-process .service-flow-drop {
  position: relative;
  /* 👇 这里可以自由调节向下箭头的位置 */
  top: -27px;
  left: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  z-index: 66;
  margin-left: auto;
  margin-right: calc(12.5% - 37.5px);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}



.page-service-process .service-step-card {
  min-height: 400px;
  padding: 70px 38px 40px;
  background: #ffffff;
  border: 1px solid #ece7df;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.page-service-process .service-step-card:hover {
  transform: translateY(-2px);
  border-color: #b8924a;
  box-shadow: 0 8px 24px rgba(184, 146, 74, 0.08);
}

.page-service-process .service-step-card--first {
  border-color: rgba(184, 146, 74, 0.45);
}

.page-service-process .service-step-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: 0 auto 26px;
  color: #ffffff;
  font-size: 32px;
  background: rgba(184, 146, 74, 0.7);
  border-radius: 50%;
  flex-shrink: 0;
}

.page-service-process .service-step-card__no {
  position: relative;
  margin: 0 0 30px;
  color: rgba(184, 146, 74, 0.5);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.page-service-process .service-step-card__no::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 10px;
  background: #b8924a;
}

.page-service-process .service-step-card__title {
  margin: 0 0 16px;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.page-service-process .service-step-card__desc {
  margin: 0;
  color: rgba(102, 102, 102, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Service Process 卡片 hover 背景图效果 ===== */
.page-service-process .service-step-card {
  overflow: hidden;
}

.page-service-process .service-step-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.page-service-process .service-step-card__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 24, 22, 0.42) 0%, rgba(24, 24, 22, 0.58) 100%);
}

.page-service-process .service-step-card__icon,
.page-service-process .service-step-card__no,
.page-service-process .service-step-card__title,
.page-service-process .service-step-card__desc {
  position: relative;
  z-index: 1;
}

.page-service-process .service-step-card__icon {
  transition: background-color 0.35s ease;
}

.page-service-process .service-step-card__icon img {
  transition: filter 0.35s ease;
}

.page-service-process .service-step-card--hasbg:hover .service-step-card__bg {
  opacity: 1;
}

.page-service-process .service-step-card--hasbg:hover .service-step-card__icon {
  background: #ffffff;
}

.page-service-process .service-step-card--hasbg:hover .service-step-card__icon img {
  filter: invert(62%) sepia(55%) saturate(420%) hue-rotate(8deg) brightness(145%) contrast(88%);
}

.page-service-process .service-step-card--hasbg:hover .service-step-card__no {
  color: #ffffff;
}

.page-service-process .service-step-card--hasbg:hover .service-step-card__no::after {
  background: #ffffff;
}

.page-service-process .service-step-card--hasbg:hover .service-step-card__title {
  color: #ffffff;
  font-size: 20px;
}

.page-service-process .service-step-card--hasbg:hover .service-step-card__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.page-blog .blog-page-section,
.page-faq .faq-tabs-section,
.page-faq .faq-page-section {
  background: #ffffff;
}

.page-blog .blog-page-section {
  padding: 70px 0 40px;
  background: #f8f5f0;
}

.page-blog .post-grid {
  gap: 20px;
}

.page-blog .post-card {
  border-radius: 4px;
  box-shadow: none;
}

.page-blog .post-card a {
  display: block;
  color: inherit;
}

.page-blog .post-card__image {
  height: 240px;
}

.page-blog .post-card__image img {
  transition: transform 0.5s ease;
}

.page-blog .post-card__body {
  min-height: 240px;
  padding: 36px 31px 28px;
}

.page-blog .post-card__meta {
  gap: 6px;
  margin-bottom: 16px;
}

.page-blog .post-card__meta svg {
  flex-shrink: 0;
}

.page-blog .post-card__title {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 25.2px;
  transition: color 0.3s ease;
}

.page-blog .post-card__excerpt {
  display: -webkit-box;
  margin-bottom: 24px;
  line-height: 22.75px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-blog .post-card__footer {
  margin-top: auto;
}

.page-blog .post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  transition: color 0.3s ease;
}

.page-blog .post-card__link .btn-arrow {
  transition: transform 0.2s ease;
}

.page-blog .post-card:hover .post-card__link .btn-arrow {
  transform: translateX(4px);
}

.page-blog .news-pagination {
  margin: 60px 0 20px;
}

.page-blog .news-pagination button {
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.page-blog .news-pagination button:hover:not(.is-active):not(:disabled) {
  border-color: var(--color-primary);
}

.page-blog .news-pagination button:disabled {
  opacity: 0.4;
}

.page-faq .faq-tabs-section {
  padding: 0 0 10px;
}

.page-faq .faq-tabs {
  gap: 8px;
}

.page-faq .faq-page-section {
  padding: 0 0 60px;
}

.page-faq .faq-layout {
  gap: 60px;
}

.page-faq .faq-main {
  min-width: 0;
}

.page-faq .tab-button {
  padding: 9px 21px;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.page-faq .tab-button:hover:not(.is-active) {
  color: var(--color-primary);
  border-color: rgba(201, 168, 76, 0.5);
}

.page-faq .faq-section {
  margin-bottom: 48px;
}

.page-faq .faq-section:last-child {
  margin-bottom: 0;
}

.page-faq .faq-section+.faq-section {
  margin-top: 0;
}

.page-faq .faq-section__title {
  margin-bottom: 24px;
}

.page-faq .faq-accordion__button {
  transition: background-color 0.2s ease, border-left-color 0.2s ease;
}

.page-faq .faq-accordion:hover .faq-accordion__button {
  background: rgba(201, 168, 76, 0.15);
}

.page-faq .faq-accordion.is-open:hover .faq-accordion__button {
  background: rgba(201, 168, 76, 0.8);
}

.page-faq .faq-accordion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.page-faq .faq-accordion.is-open .faq-accordion__icon {
  transform: rotate(180deg);
}

.page-faq .faq-aside__divider {
  width: 40px;
  height: 3px;
  margin-bottom: 20px;
  background: #c9a84c;
}

.page-faq .faq-aside ul {
  margin-bottom: 32px;
}

.page-faq .faq-aside__contact {
  padding-top: 24px;
  border-top: 1px solid #e8e4dc;
}

.page-faq .faq-aside__contact-title {
  margin: 0 0 8px;
  color: #888888;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-faq .faq-aside__contact a {
  display: block;
  color: var(--color-primary);
  font-size: 14px;
}

.page-faq .faq-aside__contact a+a {
  margin-top: 4px;
}

@media (min-width: 1200px) {

  .page-products .container,
  .page-product-detail .container,
  .page-blog .container,
  .page-blog-detail .container,
  .page-faq .container,
  .page-about .container,
  .page-contact .container,
  .page-service-process .container {
    width: calc(100% - 260px);
    max-width: none;
  }
}

@media (max-width: 1320px) {
  .page-product-detail .product-detail {
    grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
    gap: 48px;
  }

  .page-about .about-cert-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1400px) {
  .page-home .inline-form__layout,
  .home-cta-section .cta-section__inner {
    grid-template-columns: 1fr;
  }

  .page-home .inline-form__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-cta-section .cta-form {
    width: 100%;
  }
}

@media (max-width: 1024px) {

  .page-products .product-grid,
  .page-product-detail .related-products-section .product-grid,
  .page-blog .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .page-product-detail .product-detail {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

  .page-product-detail .product-specs__table {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .page-faq .faq-layout {
    grid-template-columns: 1fr;
  }

  .page-faq .faq-aside {
    position: static;
  }

  .page-service-process .service-process-flow {
    gap: 20px;
  }

  .page-service-process .service-flow-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .page-service-process .service-flow-arrow,
  .page-service-process .service-flow-drop {
    display: none;
  }

  .page-home .hero-banner__title,
  .page-home .home-category-section .section-title,
  .page-home .home-blog-section .section-title,
  .page-home .home-faq-section .section-title,
  .page-home .home-certificates .section-title,
  .home-cta-section .cta-section__title,
  .page-home .about-section__text .section-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-strip--fixed {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 80px;
  }

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

  .page-home .about-section__media {
    width: 100%;
  }

  .page-home .home-faq-section .section-head {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .page-blog .post-grid {
    grid-template-columns: 1fr;
  }

  .page-about .about-stats-grid,
  .page-about .about-cert-track {
    grid-template-columns: 1fr;
  }

  .page-product-detail .product-specs__item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 0;
  }

  .page-product-detail .product-specs__item strong {
    text-align: left;
  }

  .page-blog .post-card__body {
    min-height: auto;
    padding: 28px 24px 24px;
  }

  .page-products .product-filter {
    gap: 12px;
    margin-bottom: 24px;
  }

  .page-products .product-filter__tag {
    width: auto;
  }

  .page-product-detail .contact-actions {
    gap: 12px;
  }

  .page-product-detail .contact-pill,
  .page-product-detail .contact-pill--dark {
    width: 100%;
    min-width: 0;
  }

  .page-product-detail .contact-pill--wa,
  .page-product-detail .contact-pill--dark {
    justify-content: center;
  }

  .page-product-detail .contact-pill--dark {
    flex-wrap: wrap;
    min-height: auto;
    padding: 14px 16px;
  }

  .page-product-detail .contact-pill__divider {
    display: none;
  }

  .page-product-detail .related-products-section .product-grid {
    grid-template-columns: 1fr;
  }

  .page-faq .faq-tabs-section {
    padding-top: 36px;
  }

  .page-faq .faq-page-section {
    padding-top: 40px;
  }

  .page-faq .faq-aside {
    padding: 24px;
  }

  .page-about .about-carousel-btn {
    width: 54px;
    height: 54px;
  }

  .page-about .about-env-card span {
    font-size: 18px;
  }

  .page-service-process .service-flow-row {
    grid-template-columns: 1fr;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .page-service-process .service-flow-row--reverse {
    flex-direction: column-reverse !important;
    top: 0 !important;
    margin-top: 16px !important;
  }

  .page-service-process .service-flow-arrow,
  .page-service-process .service-flow-drop {
    display: none !important;
  }


  .page-home .home-about-actions {
    flex-wrap: wrap;
  }
}


@media (min-width: 1200px) {

  .site-nav,
  .site-header__aside {
    display: contents;
  }
}

.home-certificates::before {
  opacity: 1 !important;
}

.home-certificates {
  display: flex;
  align-items: center;
}

.home-certificates .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.home-certificate-head {
  flex: 0 0 45%;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}

.cert-wrapper {
  position: relative;
  width: 220px;
  height: 300px;
}

.cert-frame {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.cert-img {
  position: absolute;
  top: 14px;
  left: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  z-index: 1;
  object-fit: cover;
}



.header-text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 40px;
  color: #ffffff;
  background-image: linear-gradient(rgba(246, 246, 183, 0.2) 0%, rgba(238, 219, 141, 0.2) 100%), linear-gradient(90deg, #b8924a 0%, #b8924a 100%);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: filter 0.2s ease;
}

.header-text-btn:hover {
  filter: drop-shadow(0 4px 4px #b48732);
}

/* Text Me Modal */
.text-me-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.text-me-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.text-me-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.text-me-modal__content {
  position: relative;
  z-index: 2;
  width: 614px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.text-me-modal__close {
  position: absolute;
  top: 32px;
  right: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #b8924a;
  background: transparent;
  border: 0;
  border-radius: 50%;
  transition: opacity 0.2s ease;
  z-index: 10;
  padding: 0;
  cursor: pointer;
}

.text-me-modal__close:hover {
  opacity: 0.8;
}

.text-me-modal .cta-form {
  padding: 0;
}

.text-me-modal .cta-form__head {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.text-me-modal .cta-form__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #333333;
}

.text-me-modal .cta-form__grid {
  display: grid;
  gap: 20px 16px;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.text-me-modal .cta-form__submit {
  grid-column: 1 / -1;
  width: 100%;
  height: 50px;
  color: #ffffff;
  background-image: linear-gradient(rgba(246, 246, 183, 0.2) 0%, rgba(238, 219, 141, 0.2) 100%), linear-gradient(90deg, #b8924a 0%, #b8924a 100%);
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.text-me-modal .cta-form__submit:hover {
  filter: drop-shadow(0 4px 4px #b48732);
}

.text-me-modal .cta-form__grid .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.text-me-modal .cta-form__grid .field label {
  color: rgba(51, 51, 51, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
}

.text-me-modal .cta-form__grid .field input,
.text-me-modal .cta-form__grid .field textarea {
  width: 100%;
  background: #f8f5f0;
  border: 1px solid #ffffff;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  color: #333333;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.text-me-modal .cta-form__grid .field input:focus,
.text-me-modal .cta-form__grid .field textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(184, 146, 74, 0.12);
}

.text-me-modal .cta-form__grid .field input {
  height: 46px;
}

.text-me-modal .cta-form__grid .field textarea {
  min-height: 86px;
  padding: 12px 16px;
  resize: none;
}

.text-me-modal .field--full {
  grid-column: 1 / -1;
}

.text-me-modal .field-code__preview {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 68px;
  height: 28px;
  object-fit: cover;
  border-radius: 3px;
}

/* 手机菜单内的分隔线和额外链接——默认隐藏，仅在手机端显示 */
.site-nav__divider,
.site-nav__extra {
  display: none !important;
}

@media (max-width: 1024px) {
  .page-home .container {
    width: min(calc(100% - 32px), var(--container)) !important;
  }

  .text-me-modal__content {
    width: calc(100% - 32px);
    max-width: 614px;
  }

  .text-me-modal .cta-form__grid {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  margin: 5px auto;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: block;
  }

  .site-header__inner {
    position: relative;
    flex-wrap: nowrap !important;
  }

  .site-logo {
    z-index: 101;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #eee;
    z-index: 100;
    gap: 16px;

    display: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .site-nav.is-open {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header__aside {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    margin-right: 0;
    gap: 8px;
  }

  .header-text-btn {
    width: 80px;
    height: 32px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .site-header__phone {
    font-size: 14px;
    gap: 4px;
  }

  /* 平板端语言选择：显示文字+图标（带金色主题） */
  .site-header__lang {
    display: inline-flex !important;
    font-size: 13px !important;
    gap: 4px !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
  }

  .site-header__lang-icon {
    width: 20px !important;
    height: 20px !important;
  }

  .site-header__lang span {
    display: inline !important;
  }

  .site-header__caret {
    display: inline !important;
  }

  /* Hamburger to X */
  .mobile-menu-btn.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ----------------------------------------------------
   Mobile Header Global Adjustments (Applies to all pages)
   ---------------------------------------------------- */
@media (max-width: 1150px) {
  .site-logo {
    width: 110px;
  }
}

/* ============ 平板端 (768px - 1024px) 美化 ============ */
@media (max-width: 1024px) and (min-width: 769px) {
  .site-header__inner {
    padding: 0 16px !important;
    gap: 16px !important;
  }

  .site-header__aside {
    gap: 50px !important;
  }

  /* 平板端电话：文字+图标，更清晰 */
  .site-header__phone {
    font-size: 13px !important;
    gap: 6px !important;
    color: var(--color-gold) !important;
  }

  .site-header__phone .site-header__icon {
    width: 22px !important;
    height: 22px !important;
  }

  /* 平板端 TEXT ME 按钮：适度缩小 */
  .header-text-btn {
    width: 70px !important;
    height: 30px !important;
    font-size: 11px !important;
    letter-spacing: 0.3px !important;
  }

  /* 平板端语言选择：正常显示 */
  .site-header__lang {
    display: inline-flex !important;
    font-size: 13px !important;
    gap: 4px !important;
    padding: 4px 8px !important;
    border-radius: 6px !important;
  }

  .site-header__lang-icon {
    width: 20px !important;
    height: 20px !important;
  }

  /* 平板端汉堡菜单：更大更好点 */
  .mobile-menu-btn {
    width: 40px !important;
    height: 40px !important;
    padding: 8px !important;
  }

  .mobile-menu-btn span {
    width: 22px !important;
    height: 2px !important;
    margin: 4px auto !important;
  }

  /* 平板端下拉菜单：更宽更舒适 */
  .site-nav {
    padding: 24px 28px !important;
    gap: 18px !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
  }

  .site-nav a {
    font-size: 15px !important;
  }
}

/* ============ 小平板 (≤768px) 过渡 ============ */
@media (max-width: 768px) {
  .site-header__inner {
    padding: 0 8px !important;
    gap: 8px !important;
  }

  .site-header__aside {
    gap: 8px !important;
  }

  .site-logo {
    width: 80px !important;
  }

  .site-header__phone {
    font-size: 12px !important;
    gap: 4px !important;
  }

  .site-header__phone .site-header__icon {
    width: 20px !important;
    height: 20px !important;
  }

  .header-text-btn {
    width: 62px !important;
    height: 28px !important;
    font-size: 10px !important;
  }

  .site-header__lang {
    font-size: 12px !important;
    padding: 3px 6px !important;
    gap: 3px !important;
  }

  .site-header__lang-icon {
    width: 18px !important;
    height: 18px !important;
  }

  .mobile-menu-btn {
    width: 36px !important;
    height: 36px !important;
    padding: 6px !important;
  }

  .mobile-menu-btn span {
    width: 20px !important;
    margin: 3px auto !important;
  }
}

@media (max-width: 576px) {

  /* 移动端强制顶部导航吸顶（全局所有页面） */
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: var(--color-white) !important;
  }

  /* 修复导航 fixed 后导致下方正文被遮挡的问题 */
  .page-main {
    padding-top: 80px !important;
  }

  /* 导航内部元素极简排列——手机端改为"图标+汉堡"极简模式 */
  .site-header__inner {
    justify-content: space-between !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
    padding: 0 4px !important;
  }

  /* aside 改为极简模式：只留电话图标和语言图标，隐藏文字 */
  .site-header__aside {
    display: flex !important;
    flex: 0 0 auto !important;
    flex-shrink: 0 !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: 0 !important;
  }

  /* Logo 保留但缩小，加适度间距 */
  .site-logo {
    flex: 0 0 auto !important;
    width: 64px !important;
  }

  /* 手机号：隐藏文字，用 0202.png 作为 36px 按钮，加圆角背景增强质感 */
  .site-header__phone {
    flex: 0 0 auto !important;
    width: 36px !important;
    height: 36px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
    overflow: visible !important;
    border-radius: 10px !important;
    background: #faf7f2 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  }

  .site-header__phone:active {
    transform: scale(0.94) !important;
  }

  .site-header__phone span {
    display: none !important;
  }

  .site-header__icon {
    width: 28px !important;
    height: 28px !important;
  }

  /* 隐藏 TEXT ME 按钮（改为在菜单内提供入口） */
  .header-text-btn {
    display: none !important;
  }

  /* 语言选择：用 语言.png 作为 36px 图标按钮，与电话图标统一视觉 */
  .site-header__lang {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    width: 36px !important;
    height: 36px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
    font-size: 0 !important;
    border-radius: 10px !important;
    background: #faf7f2 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
    right: auto !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  }

  .site-header__lang:active {
    transform: scale(0.94) !important;
  }

  .site-header__lang-trigger {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .site-header__lang-icon {
    width: 24px !important;
    height: 24px !important;
  }

  .site-header__lang span {
    display: none !important;
  }

  .site-header__caret {
    display: none !important;
  }

  /* 汉堡菜单按钮：美化样式，与图标按钮统一圆角 */
  .mobile-menu-btn {
    flex: 0 0 auto !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    margin-left: 0 !important;
    border-radius: 10px !important;
    background: #faf7f2 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  }

  .mobile-menu-btn:active {
    transform: scale(0.94) !important;
  }

  .mobile-menu-btn span {
    margin: 0 !important;
    width: 18px !important;
    height: 2px !important;
  }

  /* 手机菜单内的分隔线和额外链接样式 */
  .site-nav__divider {
    display: block !important;
    width: 100% !important;
    height: 1px !important;
    background: #eee !important;
    margin: 12px 0 !important;
    pointer-events: none !important;
  }

  .site-nav__extra {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 14px !important;
    color: #b8924a !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
  }

  .site-nav__extra img {
    width: 16px !important;
    height: 16px !important;
  }

  /* 全局修复所有页面底部的 CTA 留言板块在移动端溢出的问题 */
  .home-cta-section {
    height: auto !important;
    padding: 60px 0 !important;
  }

  .home-cta-section .cta-section__inner {
    gap: 40px !important;
    padding: 0 !important;
  }

  .home-cta-section .cta-form__grid {
    grid-template-columns: 1fr !important;
  }

  .home-cta-section .cta-form {
    padding: 24px 16px !important;
    /* margin: 0 -16px !important; */
    border-radius: 0 !important;
    height: auto !important;
  }

  .home-cta-section .form-control {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .home-cta-section .cta-form__submit {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 全局修复底部导航在极小屏幕下的双列排版 */
  .footer__inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 16px !important;
  }

  .footer__inner>div:first-child {
    grid-column: 1 / -1 !important;
  }

  /* 优化 products 页面过滤栏在极小屏幕的排版 */
  .page-products .product-list-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 24px 0 !important;
    margin-bottom: 46px !important;
  }

  .page-products .product-filter {
    gap: 10px !important;
  }

  .page-products .product-filter__label {
    width: 100% !important;
    margin-bottom: 4px !important;
  }

  .page-products .product-filter__tag {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  /* 修复 product-detail.html 移动端图片展示与内容区溢出、遮挡的问题 */
  .page-product-detail .product-detail {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }

  .page-product-detail .product-detail>[data-gallery] {
    width: 100% !important;
  }

  .page-product-detail .product-detail> :last-child {
    width: 100% !important;
  }

  .page-product-detail .product-gallery__main {
    min-height: auto !important;
    height: 320px !important;
    padding: 16px !important;
  }

  .page-product-detail .product-gallery__main img {
    max-height: 100% !important;
    max-width: 100% !important;
  }

  /* 优化 product-detail.html 底部相关推荐商品卡片：改为双列并统一样式 */
  .page-product-detail .related-products-section .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 24px !important;
  }

  .page-product-detail .related-product-card {
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-sm) !important;
  }

  .page-product-detail .related-product-card__image {
    background: var(--color-white) !important;
    border: none !important;
    padding: 24px !important;
  }

  .page-product-detail .related-product-card__body {
    border: none !important;
    border-top: 1px solid var(--color-border) !important;
    padding: 18px 20px !important;
  }

  .page-product-detail .related-product-card:hover {
    border-color: var(--color-primary) !important;
    transform: translateY(-4px) !important;
  }

  .page-product-detail .related-product-card:hover .related-product-card__body {
    color: var(--color-white) !important;
    background: var(--color-primary) !important;
    border-top-color: var(--color-primary) !important;
  }

  .page-product-detail .related-product-card:hover .product-card__model {
    color: rgba(255, 255, 255, 0.82) !important;
  }

  .page-product-detail .related-product-card:hover .related-product-card__details {
    color: rgba(255, 255, 255, 0.82) !important;
  }

  /* 修复 contact.html 移动端提交按钮与提示文字重叠的问题 */
  .page-contact .contact-note {
    position: static !important;
    line-height: normal !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    text-align: center !important;
  }

  /* 全局：手机端显示侧边悬浮栏，缩小尺寸移至右下角 */
  .floating-bar {
    display: block !important;
    top: auto !important;
    bottom: 16px !important;
    right: 8px !important;
    transform: none !important;
    z-index: 998 !important;
  }

  .floating-bar__panel {
    width: 60px !important;
    border-radius: 8px 0 0 8px !important;
  }

  .floating-bar__head {
    min-height: 40px !important;
    padding: 6px 4px !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
  }

  .floating-bar__item,
  .floating-bar__button {
    min-height: 54px !important;
    padding: 6px 4px !important;
    gap: 2px !important;
    font-size: 9px !important;
  }

  .floating-bar__item-icon {
    width: 20px !important;
    height: 20px !important;
  }

  /* 全局：手机端给页面底部加 padding，防止悬浮栏遮挡内容 */
  .page-main {
    padding-bottom: 100px !important;
  }
}

/* ============ 极窄屏 (≤375px) 修复，如 iPhone SE/5 ============ */
@media (max-width: 375px) {
  .site-header__inner {
    gap: 6px !important;
  }

  .site-header__aside {
    gap: 6px !important;
  }

  .site-logo {
    width: 52px !important;
  }

  .site-header__phone {
    width: 32px !important;
    height: 32px !important;
  }

  .site-header__icon {
    width: 26px !important;
    height: 26px !important;
  }

  .site-header__lang {
    width: 32px !important;
    height: 32px !important;
  }

  .site-header__lang-icon {
    width: 22px !important;
    height: 22px !important;
  }

  .mobile-menu-btn {
    width: 32px !important;
    height: 32px !important;
  }

  .mobile-menu-btn span {
    width: 16px !important;
  }
}
/* 手机端最小修复 */
html {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  /* 首页分类卡片改为单列 */
  .page-home .category-grid {
    grid-template-columns: 1fr !important;
  }

  /* 关于我们区域改为单列 */
  .page-home .about-section__layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* 收回关于区域右侧外伸的小图片 */
  .page-home .about-section__year-card {
    right: 12px !important;
    bottom: 12px !important;
    width: 132px !important;
  }

  /* 缩小手机端首屏高度和标题 */
  .page-home .hero-banner {
    min-height: 620px !important;
  }

  .page-home .hero-banner__title {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 1.12 !important;
  }

  /* 证书区域不再撑宽整个页面 */
  .page-home .certificate-display {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
  }
}


/* =========================================================
   SWAN Responsive Repair Patch
   Generated for sanwang.yidingyi.com.cn
   ========================================================= */

html {
  max-width: 100%;
  overflow-x: hidden;
}

.page-home .category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  min-width: 0;
}

.page-home .category-card {
  width: auto !important;
  min-width: 0;
  height: 350px;
  min-height: 0;
}

.page-home .category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-home .about-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  min-width: 0;
}

.page-home .about-section__media,
.page-home .about-section__image {
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
}

.page-home .about-section__image {
  height: clamp(420px, 52vw, 808px);
}

.page-home .about-section__text {
  margin-left: 0 !important;
  min-width: 0;
}

.page-home .about-section__year-card {
  right: clamp(16px, 3vw, 32px) !important;
  bottom: 16px;
  width: clamp(150px, 18vw, 200px) !important;
  max-width: calc(100% - 24px);
}

.page-home .inline-form__layout,
.page-home .inline-form__intro,
.page-home .inline-form__row {
  min-width: 0;
}

.page-home .inline-form__row {
  flex-wrap: wrap;
}

.page-home .inline-form__row .field {
  min-width: 0;
  flex: 1 1 160px;
}

.page-home .inline-form__row .field input,
.page-home .inline-form__row .field textarea,
.page-home .inline-form__row .field select {
  max-width: 100%;
}

@media (max-width: 1199px) {
  .page-home .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .page-home .about-section__layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .page-home .about-section__image {
    height: clamp(420px, 62vw, 650px);
  }

  .page-home .about-section__year-card {
    right: 16px !important;
    bottom: 16px;
  }

  .page-home .about-section__text {
    margin-left: 0 !important;
  }

  .page-home .home-about-section {
    height: auto !important;
    min-height: 0 !important;
    padding: 72px 0 !important;
    display: block !important;
  }

  .page-home .split-panel {
    grid-template-columns: 1fr !important;
  }

  .page-home .feature-panel__content {
    right: 40px;
    left: 40px;
  }

  .page-home .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1024px) {
  .page-home .container,
  .container {
    width: min(calc(100% - 32px), var(--container));
    max-width: none;
  }

  .page-home .category-grid,
  .page-home .post-grid,
  .page-home .product-grid,
  .page-home .strength-grid,
  .page-home .service-grid,
  .page-home .stats-grid,
  .page-home .certificate-grid,
  .page-home .environment-grid,
  .page-home .faq-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    flex-direction: initial !important;
  }

  .split-panel,
  .faq-layout,
  .contact-layout,
  .product-detail,
  .cta-section__inner,
  .article-nav,
  .footer__inner {
    grid-template-columns: 1fr !important;
  }

  .inline-form__row,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .page-home .hero-banner__inner {
    padding-top: 110px;
  }

  .page-home .hero-banner__title {
    max-width: 100%;
  }

  .page-home .home-certificates,
  .page-home .home-blog-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .floating-bar {
    transform: translateY(-50%) scale(0.85);
    transform-origin: right center;
    right: -8px;
  }
}

@media (max-width: 767px) {
  .page-home .container,
  .container {
    width: calc(100% - 32px) !important;
    max-width: none !important;
  }

  .page-home .page-main {
    margin-top: 0 !important;
  }

  .page-home .category-grid,
  .page-home .post-grid,
  .page-home .product-grid,
  .page-home .strength-grid,
  .page-home .service-grid,
  .page-home .stats-grid,
  .page-home .certificate-grid,
  .page-home .environment-grid,
  .page-home .faq-grid-home,
  .inline-form__row,
  .form-grid {
    grid-template-columns: 1fr !important;
    flex-direction: initial !important;
  }

  .page-home .category-card {
    height: min(72vw, 300px) !important;
  }

  .page-home .about-section__image {
    height: clamp(360px, 86vw, 520px) !important;
  }

  .page-home .about-section__year-card {
    right: 12px !important;
    bottom: 12px !important;
    width: 150px !important;
  }

  .page-home .about-section__year-card-content {
    padding: 20px;
  }

  .page-home .about-section__year {
    font-size: 36px;
  }

  .page-home .section-head {
    display: block;
  }

  .page-home .section-head .section-link {
    margin-top: 18px;
  }

  .page-home .hero-banner {
    min-height: 680px !important;
  }

  .page-home .hero-banner__inner {
    padding-top: 90px;
    padding-bottom: 56px;
  }

  .page-home .hero-banner__title {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 1.12;
  }

  .page-home .hero-banner__desc {
    font-size: 15px;
    line-height: 1.7;
  }

  .page-home .hero-banner__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .page-home .hero-banner__actions .btn {
    width: 100%;
  }

  .page-home .inline-form__layout {
    display: block;
  }

  .page-home .inline-form__intro {
    margin-bottom: 20px;
  }

  .page-home .inline-form__row {
    display: grid;
    gap: 12px;
  }

  .page-home .inline-form__row .field,
  .page-home .inline-form__submit {
    width: 100%;
    min-width: 0;
  }

  .page-home .inline-form__submit {
    height: 46px;
  }

  .page-home .feature-panel {
    height: 360px;
    min-height: 360px;
  }

  .page-home .feature-panel__content {
    right: 28px;
    bottom: 36px;
    left: 28px;
  }

  .page-home .footer__inner {
    grid-template-columns: 1fr !important;
  }

  #captchaImage,
  #captchaImageIndex,
  .field-code__preview img {
 
    max-width: 100% !important;
    height: auto !important;
  }

  .floating-bar {
    top: auto;
    right: 12px;
    bottom: 12px;
    transform: none;
  }

  .floating-bar__panel {
    width: auto;
    max-width: calc(100vw - 24px);
    border-radius: 999px;
  }

  .floating-bar__head {
    display: none;
  }

  .floating-bar__body {
    display: flex;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
  }

  .floating-bar__item,
  .floating-bar__button {
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    height: 44px;
    padding: 6px;
    border: 0;
    border-radius: 50%;
  }

  .floating-bar__item span,
  .floating-bar__button span {
    display: none;
  }
}

@media (max-width: 374px) {
  .page-home .container,
  .container {
    width: calc(100% - 24px) !important;
  }

  .page-home .hero-banner__title {
    font-size: 32px !important;
  }

  .floating-bar {
    right: 8px;
    bottom: 8px;
  }
}

@media (max-width: 1024px) {
  .page-home .home-cta-section,
  .page-home .cta-section {
    height: auto !important;
    min-height: 0 !important;
  }
}

/* =========================================================
   平板端 (≤1280px) 显示修复补丁
   仅覆盖 PC 端的固定高度/固定尺寸规则，不影响 1281px 以上桌面布局
   ========================================================= */
@media (max-width: 1280px) {

  /* 首页中部内联询盘区在 PC 上固定 180px 高；
     平板宽度下表单换行后内容溢出，标题与首行输入框被上方黑色面板遮住，
     这里放开高度改为自适应。 */
  .home-inline-form-section {
    height: auto !important;
    min-height: 0 !important;
    padding: 48px 0 !important;
    display: block !important;
  }

  .home-inline-form-section .inline-form {
    width: 100%;
  }

  /* 各页面底部 CTA 联系区的 740px 高度是内联样式，
     平板端改为单列后内容超高，表单底部被裁切，这里放开高度。 */
  .cta-section.home-cta-section,
  .home-cta-section {
    height: auto !important;
    min-height: 0 !important;
    padding: 70px 0 !important;
  }

  .home-cta-section .cta-section__inner {
    padding: 0 !important;
    gap: 40px !important;
  }

  /* CTA 表单在 PC 上固定 550px 高、614px 宽，
     平板单列排布后超出被裁，放开为自适应并占满列宽。 */
  .home-cta-section .cta-form {
    height: auto !important;
    width: 100% !important;
  }

  /* CTA 表单字段在平板上改为单列，避免输入框被挤压 */
  .home-cta-section .cta-form__grid {
    grid-template-columns: 1fr !important;
  }

  /* CTA 标题行高在平板上改回正常，避免超大行高撑破布局 */
  .home-cta-section .cta-section__title {
    line-height: 1.25 !important;
  }

  /* 验证码图片固定内联宽高在窄表单里会溢出，限制最大宽度 */
  .home-cta-section .field-code__preview,
  .text-me-modal .field-code__preview {
    max-width: 40% !important;
  }

  /* Hero 背景图在 PC 上是固定 880px 高；平板端区块更高时底部会出现纯深色空块，
     让背景图跟随整个 banner 高度铺满。 */
  .page-home .hero-banner .hero-bimg {
    top: 0 !important;
    height: 100% !important;
  }
}

/* =========================================================
   手机端底部快捷导航（phoneFooter）
   桌面端隐藏；手机端固定在屏幕底部
   ========================================================= */
.phoneFooter {
  display: none;
}

@media (max-width: 576px) {
  .phoneFooter {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 4px;
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    z-index: 1100;
  }

  .phoneFooter .nav0 {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 2px;
    color: #333333;
    text-decoration: none;
  }

  .phoneFooter .nav0 img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  .phoneFooter .nav0 p {
    margin: 0;
    color: inherit;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
  }

  /* 给页面底部留出空间，避免内容被固定底栏遮挡 */
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }
}
