/* ===== FUXIN INNER PAGES ===== */

.inner-hero {
  margin-top: var(--header-h);
  padding: 78px 32px 52px;
  background-image:
    linear-gradient(135deg, rgba(18, 51, 31, 0.92), rgba(22, 69, 40, 0.78)),
    var(--inner-hero-image, linear-gradient(135deg, rgba(18, 51, 31, 0.92), rgba(22, 69, 40, 0.78)));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.inner-hero-wrap,
.page-shell,
.content-shell {
  max-width: var(--max-w);
  margin: 0 auto;
}

.inner-hero .eyebrow {
  color: #7ee087;
  margin-bottom: 14px;
}

.inner-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
}

.inner-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 32px 0;
  font-size: 13px;
  color: var(--text-muted);
}

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

.page-shell {
  padding: 64px 32px;
}

.page-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(24, 54, 33, 0.06);
}

.side-panel h3 {
  padding: 18px 20px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.side-panel a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 20px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid #edf3ee;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.side-panel a:hover,
.side-panel a.is-active {
  color: var(--accent);
  background: #f3faf3;
  padding-left: 24px;
}

.content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 12px 28px rgba(24, 54, 33, 0.05);
}

.content-card + .content-card,
.section-block + .section-block {
  margin-top: 24px;
}

.section-block h2,
.content-card h2 {
  font-size: 24px;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 16px;
}

.section-block h3,
.content-card h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}

.content-card p,
.section-block p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.category-strip a,
.category-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-muted);
  font-size: 13px;
}

.category-strip a:hover,
.category-strip .is-active {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

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

.listing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 42px rgba(24, 54, 33, 0.09);
  border-color: var(--border-bright);
}

.listing-img {
  background: #f1f6f1;
  overflow: hidden;
}

.listing-img img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

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

.listing-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.listing-meta span,
.listing-meta time {
  font-size: 11px;
  color: var(--accent);
  background: rgba(51, 184, 61, 0.1);
  border-radius: 999px;
  padding: 3px 9px;
}

.listing-body h3 {
  font-size: 16px;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 8px;
}

.listing-body p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.product-spec-list {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.product-spec-list li {
  position: relative;
  padding-left: 14px;
  color: #496b53;
  font-size: 12px;
  line-height: 1.55;
}

.product-spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.listing-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.product-center-page {
  padding-top: 36px;
}

.product-center-strip {
  margin-bottom: 24px;
}

.product-center-intro {
  display: block;
  margin-bottom: 28px;
}

.product-center-intro p {
  max-width: 840px;
}

.product-family + .product-family {
  margin-top: 36px;
}

.product-group-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 6px;
  margin-top: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  border-bottom: 1px solid var(--border);
}

.product-group-label,
.product-catalog-card {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.product-group-label::before {
  content: "";
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: var(--accent);
}

.product-group-label:first-child {
  margin-top: 0;
}

.product-catalog-card .listing-img img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 18px;
  background: #fff;
}

.product-catalog-card .listing-body {
  min-height: 190px;
}

.product-category-grid,
.product-detail-card-grid {
  align-items: stretch;
}

.product-category-block {
  display: contents;
}

.product-category-block .product-group-label a {
  color: inherit;
}

.product-category-block .product-group-label a:hover {
  color: var(--accent);
}

.product-category-card .listing-body {
  min-height: 170px;
}

.product-item-card .listing-img img {
  aspect-ratio: 16 / 10;
}

.product-detail-page {
  display: grid;
  gap: 24px;
}

.pd-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.pd-hero-copy h2 {
  margin: 12px 0 12px;
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.2;
}

.pd-hero-copy p {
  color: var(--text-muted);
  line-height: 1.8;
}

.pd-key-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.pd-key-grid div {
  padding: 12px 14px;
  color: #204b2a;
  background: #f2f8f3;
  border: 1px solid #dceade;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.pd-hero-media {
  display: grid;
  place-items: center;
  min-height: 320px;
  background: linear-gradient(180deg, #f8fbf8 0%, #edf5ee 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.pd-hero-media img {
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  padding: 26px;
}

.pd-section {
  padding: 28px;
}

.product-detail-page .article-body {
  max-width: 880px;
}

.product-detail-page .article-body p {
  max-width: 820px;
  color: #385542;
  font-size: 15px;
  line-height: 1.9;
}

.product-detail-page .article-body h2 {
  font-size: 18px;
  margin: 22px 0 10px;
}

.product-note-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.product-note-list li {
  position: relative;
  padding: 12px 14px 12px 34px;
  color: #24452d;
  background: #f5faf6;
  border: 1px solid #dceade;
  border-radius: 8px;
  line-height: 1.65;
}

.product-note-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pd-two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pd-spec-row span,
.pd-spec-row strong {
  display: block;
  padding: 13px 16px;
  font-size: 13px;
  line-height: 1.55;
}

.pd-spec-row span {
  color: var(--text-muted);
  background: #f3f8f4;
  border-right: 1px solid var(--border);
}

.pd-spec-row strong {
  color: var(--text);
  font-weight: 700;
}

.pd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pd-gallery-grid .pd-thumb {
  background: #f8fbf8;
}

.pd-gallery-grid .pd-thumb img {
  object-fit: contain;
  padding: 10px;
}

.pd-pdf-section {
  background: #f7faf7;
}

.pd-pdf-pages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.pd-pdf-sheet {
  display: block;
  padding: 14px;
  background: #fff;
  border: 1px solid #dfe7df;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(27, 49, 32, 0.08);
}

.pd-pdf-sheet img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.pd-application-grid .matrix-card strong {
  font-size: 22px;
}

.pd-delivery-list {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  gap: 10px 18px;
}

.solution-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.matrix-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.matrix-card strong {
  display: block;
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Consolas, monospace;
}

.matrix-card h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}

.article-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.article-head h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 14px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.article-section {
  padding: 24px 0;
  border-bottom: 1px solid #edf3ee;
}

.article-section:last-child {
  border-bottom: none;
}

.article-section h2 {
  position: relative;
  padding-left: 16px;
  font-size: 22px;
  margin-bottom: 14px;
}

.article-section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 4px;
  border-radius: 2px;
  background: var(--accent);
}

.case-story-page {
  max-width: 1120px;
  margin: -12px auto 0;
  counter-reset: case-section;
}

.case-story-intro {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.case-story-intro span {
  color: #d94132;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.case-story-intro p {
  max-width: 820px;
  color: #385542;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 0;
}

.case-story-flow {
  display: grid;
  gap: 42px;
}

.case-detail-section {
  counter-increment: case-section;
  position: relative;
  padding: 0 0 42px;
  border-bottom: 1px solid #dfe9e1;
}

.case-detail-section:last-child {
  border-bottom: none;
}

.case-section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--text);
}

.case-section-kicker span {
  display: inline-flex;
  align-items: center;
  color: #d94132;
  font-family: Consolas, monospace;
  font-size: 15px;
  font-weight: 800;
}

.case-section-kicker span::before {
  content: "0" counter(case-section);
}

.case-section-kicker span::after {
  content: "";
  width: 58px;
  height: 2px;
  margin-left: 12px;
  background: #d94132;
}

.case-section-kicker strong {
  font-size: 24px;
  line-height: 1.25;
}

.case-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.case-detail-section:nth-child(even) .case-detail-grid {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
}

.case-detail-section:nth-child(even) .case-detail-media {
  order: 2;
}

.case-detail-media {
  position: relative;
}

.case-detail-media::after {
  content: "";
  position: absolute;
  left: 22px;
  right: -14px;
  bottom: -14px;
  height: 1px;
  background: rgba(217, 65, 50, 0.62);
}

.case-detail-section:nth-child(even) .case-detail-media::after {
  left: -14px;
  right: 22px;
}

.case-detail-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid #dbe8dd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(24, 54, 33, 0.1);
}

.case-detail-copy {
  padding: 8px 0;
}

.case-detail-copy h3 {
  max-width: 430px;
  font-size: 23px;
  line-height: 1.48;
  color: var(--text);
  margin-bottom: 18px;
}

.case-detail-copy p {
  max-width: 460px;
  color: #4c6956;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 14px;
}

.case-story-action {
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

.step-list {
  display: grid;
  gap: 12px;
}

.step-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  background: #f7fbf7;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.stat-card strong {
  display: block;
  color: var(--accent);
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-primary-card {
  align-self: start;
}

.contact-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 16px;
  background: #f7fbf7;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-row strong {
  color: var(--text);
}

.contact-row span,
.contact-row a {
  color: var(--text-muted);
}

.qr-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.qr-box img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}

.contact-qr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.qr-box-card {
  align-items: center;
  gap: 14px;
  min-height: 0;
}

.qr-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.qr-box-card strong {
  display: block;
  color: var(--text);
  writing-mode: horizontal-tb;
  word-break: break-word;
  line-height: 1.45;
}

.qr-box-card p {
  margin-bottom: 0;
}

.support-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.case-intro > div {
  max-width: 720px;
}

.case-category-strip {
  margin-bottom: 22px;
}

.about-layout {
  display: grid;
  gap: 46px;
}

.about-page {
  max-width: 1240px;
  padding-top: 54px;
}

.about-layout > section {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.about-kicker {
  margin-bottom: 12px;
  color: #d94132;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.about-section-head {
  display: grid;
  gap: 8px;
  max-width: 820px;
  margin-bottom: 24px;
}

.about-section-head h2,
.about-hero-copy h2,
.about-story-split h2,
.about-values-copy h2 {
  color: var(--text);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.22;
}

.about-section-head p,
.about-hero-copy p,
.about-story-split p,
.about-values-copy p {
  color: #405f4b;
  line-height: 1.9;
}

.about-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 54px;
  align-items: center;
  padding: 0;
}

.about-lead {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.about-hero-media,
.about-strength-grid figure,
.about-qualification-media {
  overflow: hidden;
  border-radius: 8px;
  background: #f6faf7;
  border: 1px solid var(--border);
}

.about-hero-media {
  position: relative;
  padding: 12px;
  border-color: rgba(51, 184, 61, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(231, 242, 233, 0.8));
  box-shadow: 0 24px 58px rgba(24, 54, 33, 0.11);
}

.about-hero-media::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  pointer-events: none;
}

.about-hero-media img,
.about-strength-grid img,
.about-team-media img,
.about-qualification-media img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.about-hero-media img {
  aspect-ratio: 16 / 11;
  border-radius: 6px;
}

.about-strength-panel,
.about-team-panel,
.about-qualification-panel {
  padding: 0;
}

.about-strength-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.95fr;
  gap: 18px;
}

.about-strength-grid img {
  aspect-ratio: 16 / 10;
}

.about-strength-grid figure:first-child {
  grid-row: span 2;
}

.about-strength-grid figure:first-child img {
  height: calc(100% - 70px);
  min-height: 350px;
  aspect-ratio: auto;
}

.about-strength-grid figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
}

.about-strength-grid strong,
.about-metric-strip strong {
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  white-space: nowrap;
}

.about-strength-grid span,
.about-metric-strip span {
  color: var(--text-muted);
  font-size: 13px;
}

.about-metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid #dce8de;
  border-radius: 8px;
  background: var(--border);
}

.about-metric-strip div {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.about-story-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  padding: 38px;
  background: #fff;
  border: 1px solid #dce8de;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(24, 54, 33, 0.06);
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 28px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, #d94132, var(--accent));
}

.about-timeline div {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 8px 16px;
  padding: 18px;
  background: rgba(248, 251, 248, 0.82);
  border: 1px solid #dce8de;
  border-radius: 8px;
}

.about-timeline div::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d94132;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(217, 65, 50, 0.35);
}

.about-timeline span {
  grid-row: 1 / span 2;
  color: #d94132;
  font-family: Consolas, monospace;
  font-weight: 800;
}

.about-timeline strong {
  color: var(--text);
  font-size: 17px;
}

.about-timeline p {
  margin-bottom: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.about-team-media {
  display: grid;
  gap: 14px;
}

.about-team-media img {
  overflow: hidden;
  border: 1px solid #dce8de;
  border-radius: 8px;
  background: #f6faf7;
  box-shadow: 0 16px 36px rgba(24, 54, 33, 0.07);
}

.about-team-media img {
  aspect-ratio: 16 / 8.6;
}

.about-team-list {
  display: grid;
  gap: 12px;
}

.about-team-list article,
.about-values-grid article {
  padding: 20px;
  border: 1px solid #dce8de;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.about-team-list span {
  display: block;
  margin-bottom: 8px;
  color: #d94132;
  font-family: Consolas, monospace;
  font-weight: 800;
}

.about-team-list strong,
.about-values-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.about-team-list p,
.about-values-grid span {
  color: var(--text-muted);
  line-height: 1.75;
}

.about-values-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(18, 51, 31, 0.92), rgba(23, 80, 39, 0.84)),
    url("/themes/fuxin2026/public/assets/images/about/fuxin-profile-p05.png") center / cover;
}

.about-values-panel .about-kicker,
.about-values-copy h2,
.about-values-copy p {
  color: #fff;
}

.about-values-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-values-grid article {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.about-values-grid strong {
  color: #fff;
}

.about-values-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

.about-qualification-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: 28px;
  align-items: start;
}

.about-cert-list {
  display: grid;
  gap: 10px;
}

.about-cert-list span {
  position: relative;
  padding: 12px 14px 12px 32px;
  color: #24452d;
  background: #f8fbf8;
  border: 1px solid var(--border);
  border-radius: 8px;
  line-height: 1.6;
}

.about-cert-list span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 21px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d94132;
}

.about-qualification-media {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 20px;
}

.about-qualification-media img {
  max-height: 420px;
  object-fit: contain;
}

@media (max-width: 1000px) {
  .page-grid,
  .contact-layout,
  .pd-hero-card,
  .pd-two-col {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .listing-grid,
  .stat-row,
  .support-actions,
  .about-image-band,
  .about-team-media,
  .pd-gallery-grid,
  .pd-pdf-pages {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-story-page {
    max-width: 860px;
  }

  .case-story-intro,
  .case-detail-grid,
  .case-detail-section:nth-child(even) .case-detail-grid {
    grid-template-columns: 1fr;
  }

  .case-detail-section:nth-child(even) .case-detail-media {
    order: 0;
  }

  .case-detail-copy h3,
  .case-detail-copy p {
    max-width: 760px;
  }

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

  .about-hero-panel,
  .about-story-split,
  .about-team-layout,
  .about-values-panel,
  .about-qualification-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .inner-hero {
    padding: 56px 24px 42px;
  }

  .breadcrumb,
  .page-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .content-card {
    padding: 24px;
  }

  .listing-grid,
  .solution-matrix,
  .stat-row,
  .support-actions,
  .about-image-band,
  .about-team-media,
    .pd-key-grid,
    .pd-gallery-grid,
    .pd-pdf-pages,
    .pd-delivery-list,
  .contact-qr-grid,
  .case-detail-grid {
    grid-template-columns: 1fr;
  }

  .case-story-intro {
    gap: 10px;
    margin-bottom: 28px;
  }

  .case-story-intro p {
    font-size: 15px;
  }

  .case-story-flow {
    gap: 32px;
  }

  .case-detail-section {
    padding-bottom: 32px;
  }

  .case-section-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .case-section-kicker strong {
    font-size: 21px;
  }

  .case-detail-copy h3 {
    font-size: 20px;
  }

  .about-layout {
    gap: 24px;
  }

  .about-hero-panel,
  .about-strength-panel,
  .about-story-split,
  .about-team-panel,
  .about-values-panel,
  .about-qualification-panel {
    padding: 24px;
  }

  .about-section-head h2,
  .about-hero-copy h2,
  .about-story-split h2,
  .about-values-copy h2 {
    font-size: 24px;
  }

  .about-lead {
    font-size: 16px;
  }

  .about-strength-grid,
  .about-metric-strip,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-strength-grid figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .about-timeline {
    padding-left: 20px;
  }

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

  .about-timeline span {
    grid-row: auto;
  }

  .about-qualification-media {
    min-height: 260px;
    padding: 14px;
  }

  .case-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .qr-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .pd-spec-row span {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* PDF-sourced About page */
.about-page {
  max-width: 1320px;
}

.about-layout.about-layout-from-db {
  gap: 84px;
}

.about-layout.about-layout-from-db .about-kicker {
  margin-bottom: 14px;
  color: #187d16;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.about-layout.about-layout-from-db h2 {
  color: #111813;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.08;
  text-wrap: balance;
}

.about-layout.about-layout-from-db p {
  color: #56645b;
  font-size: 16px;
  line-height: 1.9;
}

.about-layout.about-layout-from-db img {
  display: block;
  width: 100%;
}

.about-pdf-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 54px;
  align-items: end;
  padding: 0 0 18px;
}

.about-pdf-hero-copy {
  align-self: center;
}

.about-pdf-hero-copy .about-lead {
  margin: 24px 0 20px;
  color: #27372d;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.about-pdf-building {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 8px;
  background: #eef4f2;
  box-shadow: 0 34px 80px rgba(20, 43, 32, 0.14);
}

.about-pdf-building::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 23, 17, 0.1));
  pointer-events: none;
}

.about-pdf-building img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center bottom;
}

.about-pdf-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 34px;
  align-items: stretch;
  padding: 44px;
  border: 1px solid #dfe8e2;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 246, 0.94)),
    url("/themes/fuxin2026/public/assets/images/about/fuxin-profile-p04.png") right bottom / 520px auto no-repeat;
}

.about-pdf-intro-copy {
  max-width: 780px;
}

.about-pdf-proof {
  display: grid;
  gap: 12px;
  align-content: center;
}

.about-pdf-proof div {
  padding: 22px 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(31, 70, 42, 0.1);
}

.about-pdf-proof strong {
  display: block;
  margin-bottom: 6px;
  color: #187d16;
  font-size: 34px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.about-pdf-proof span {
  color: #526158;
  font-size: 14px;
  line-height: 1.6;
}

.about-pdf-values {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: center;
}

.about-pdf-page-shot,
.about-pdf-cert,
.about-pdf-partners,
.about-pdf-clients figure {
  overflow: hidden;
  border: 1px solid #dfe8e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(20, 43, 32, 0.08);
}

.about-pdf-page-shot img {
  object-fit: cover;
}

.about-pdf-values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.about-pdf-values-list article {
  min-height: 178px;
  padding: 24px;
  border-radius: 8px;
  background: #f6f9f6;
  box-shadow: inset 0 0 0 1px rgba(31, 70, 42, 0.09);
}

.about-pdf-values-list span {
  display: block;
  margin-bottom: 12px;
  color: #187d16;
  font-size: 14px;
  font-weight: 800;
}

.about-pdf-values-list strong {
  display: block;
  margin-bottom: 8px;
  color: #17241b;
  font-size: 22px;
}

.about-pdf-values-list p {
  margin-bottom: 0;
}

.about-pdf-delivery {
  position: relative;
  overflow: hidden;
  padding: 54px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 16%, rgba(113, 190, 0, 0.2), transparent 32%),
    linear-gradient(135deg, #050605 0%, #121614 58%, #050605 100%);
  color: #fff;
}

.about-pdf-delivery > * {
  position: relative;
  z-index: 1;
}

.about-pdf-delivery .about-kicker,
.about-pdf-delivery h2,
.about-pdf-delivery p {
  color: #fff;
}

.about-pdf-delivery-head {
  max-width: 680px;
  margin-bottom: 34px;
}

.about-pdf-delivery-head h2 {
  margin-bottom: 18px;
}

.about-pdf-delivery-head p {
  color: rgba(255, 255, 255, 0.7);
}

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

.about-pdf-delivery-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.about-pdf-delivery-grid img {
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  opacity: 0.9;
}

.about-pdf-delivery-grid div {
  padding: 22px;
}

.about-pdf-delivery-grid strong {
  color: #72c700;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.about-pdf-delivery-grid span {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.about-pdf-delivery-grid p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.about-pdf-history {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 36px;
}

.about-pdf-history-head {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  align-self: start;
}

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

.about-pdf-timeline article {
  min-height: 188px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(31, 70, 42, 0.09),
    0 18px 42px rgba(20, 43, 32, 0.06);
}

.about-pdf-timeline span {
  display: block;
  margin-bottom: 16px;
  color: #187d16;
  font-size: 28px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.about-pdf-timeline strong {
  display: block;
  margin-bottom: 8px;
  color: #17241b;
  font-size: 18px;
}

.about-pdf-timeline p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
}

.about-pdf-cert-partner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.about-pdf-cert-copy,
.about-pdf-partner-copy {
  padding: 36px;
  border: 1px solid #dfe8e2;
  border-radius: 8px;
  background: #fff;
}

.about-pdf-cert {
  margin-top: 24px;
  padding: 16px;
}

.about-pdf-cert img {
  object-fit: contain;
}

.about-pdf-partners {
  margin-top: 24px;
  padding: 18px;
}

.about-pdf-partners img {
  object-fit: contain;
}

.about-pdf-clients {
  display: grid;
  gap: 28px;
}

.about-pdf-clients-head {
  max-width: 980px;
}

.about-pdf-clients img {
  object-fit: contain;
}

@media (max-width: 1100px) {
  .about-layout.about-layout-from-db {
    gap: 56px;
  }

  .about-pdf-hero,
  .about-pdf-intro,
  .about-pdf-values,
  .about-pdf-history,
  .about-pdf-cert-partner {
    grid-template-columns: 1fr;
  }

  .about-pdf-building,
  .about-pdf-building img {
    min-height: 480px;
  }

  .about-pdf-history-head {
    position: static;
  }

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

@media (max-width: 760px) {
  .about-page {
    padding-top: 38px;
  }

  .about-layout.about-layout-from-db {
    gap: 38px;
  }

  .about-layout.about-layout-from-db h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .about-layout.about-layout-from-db p {
    font-size: 15px;
    line-height: 1.8;
  }

  .about-pdf-hero {
    gap: 26px;
  }

  .about-pdf-hero-copy .about-lead {
    font-size: 17px;
  }

  .about-pdf-building,
  .about-pdf-building img {
    min-height: 320px;
  }

  .about-pdf-intro,
  .about-pdf-delivery,
  .about-pdf-cert-copy,
  .about-pdf-partner-copy {
    padding: 24px;
  }

  .about-pdf-values-list,
  .about-pdf-delivery-grid,
  .about-pdf-timeline {
    grid-template-columns: 1fr;
  }

  .about-pdf-values-list article,
  .about-pdf-timeline article {
    min-height: auto;
  }

  .about-pdf-page-shot {
    max-height: 520px;
  }

  .about-pdf-page-shot img {
    height: 520px;
    object-fit: cover;
    object-position: center;
  }

  .about-pdf-partners {
    padding: 12px;
  }
}

/* PDF-fidelity About page layout */
.about-page {
  max-width: 1360px;
  padding-top: 44px;
}

.about-layout.about-layout-from-db {
  gap: 34px;
}

.about-folio-section {
  display: grid;
  justify-items: center;
}

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

.about-folio-spread {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.about-folio-sheet {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(18, 36, 26, 0.12);
}

.about-folio-single .about-folio-sheet {
  max-width: 980px;
}

.about-folio-dark-section {
  padding: 18px 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 6, 0), rgba(5, 7, 6, 0.04) 18%, rgba(5, 7, 6, 0.04) 82%, rgba(5, 7, 6, 0));
}

.about-folio-dark-sheet {
  background: #030303;
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.22);
}

.about-folio-sheet img {
  display: block;
  width: 100%;
  height: auto;
}

.about-folio-about {
  max-width: 1060px;
}

.about-folio-values-sheet {
  max-width: 860px;
}

.about-folio-cert-sheet {
  max-width: 1040px;
}

.about-folio-spread .about-folio-sheet {
  box-shadow: 0 22px 54px rgba(18, 36, 26, 0.1);
}

.about-folio-history-spread {
  max-width: 1160px;
  margin: 0 auto;
}

.about-folio-partner-spread {
  max-width: 1200px;
  margin: 0 auto;
}

.about-folio-sheet figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .about-folio-spread {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .about-folio-single .about-folio-sheet,
  .about-folio-about,
  .about-folio-values-sheet,
  .about-folio-cert-sheet {
    max-width: 820px;
  }
}

@media (max-width: 640px) {
  .about-page {
    padding-top: 28px;
  }

  .about-layout.about-layout-from-db {
    gap: 22px;
  }

  .about-folio-sheet {
    border-radius: 6px;
    box-shadow: 0 16px 34px rgba(18, 36, 26, 0.1);
  }

  .about-folio-spread {
    gap: 22px;
  }

  .about-folio-dark-section {
    padding: 4px 0;
  }
}

/* Mobile overflow guard */
@media (max-width: 760px) {
  .inner-hero {
    padding: 48px 18px 36px;
  }

  .breadcrumb {
    flex-wrap: wrap;
    padding: 14px 18px 0;
    line-height: 1.6;
  }

  .page-shell {
    padding: 38px 18px;
  }

  .content-card,
  .pd-hero-card,
  .pd-section,
  .matrix-card {
    padding: 20px;
  }

  .side-panel {
    position: static;
  }

  .category-strip {
    gap: 8px;
    margin-bottom: 22px;
  }

  .category-strip a,
  .category-strip span {
    max-width: 100%;
    white-space: normal;
  }

  .listing-grid,
  .product-category-grid,
  .product-detail-card-grid,
  .solution-matrix,
  .support-actions,
  .pd-key-grid,
  .pd-two-col,
  .pd-gallery-grid,
  .pd-pdf-pages,
  .pd-delivery-list,
  .contact-layout,
  .contact-qr-grid,
  .case-detail-grid,
  .case-detail-section:nth-child(even) .case-detail-grid {
    grid-template-columns: 1fr;
  }

  .listing-body,
  .product-catalog-card .listing-body,
  .product-category-card .listing-body {
    min-height: auto;
  }

  .pd-hero-media {
    min-height: 240px;
  }

  .pd-hero-media img {
    max-height: 320px;
    padding: 18px;
  }

  .pd-spec-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pd-spec-row span {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .pd-pdf-sheet {
    padding: 8px;
  }

  .case-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-story-intro {
    grid-template-columns: 1fr;
  }

  .case-detail-section:nth-child(even) .case-detail-media {
    order: 0;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-row span,
  .contact-row a,
  .contact-info-row a {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .qr-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .qr-box img {
    width: 118px;
    height: 118px;
  }
}

@media (max-width: 420px) {
  .inner-hero h1,
  .article-head h1 {
    font-size: 28px;
  }

  .section-block h2,
  .content-card h2,
  .pd-hero-copy h2,
  .case-section-kicker strong {
    font-size: 22px;
  }

  .page-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .content-card,
  .pd-hero-card,
  .pd-section,
  .matrix-card {
    padding: 18px;
  }
}

@media (max-width: 760px) {
  .inner-hero-wrap,
  .breadcrumb,
  .page-shell,
  .content-shell,
  .content-card,
  .listing-card,
  .contact-list,
  .contact-row {
    min-width: 0;
    max-width: 100%;
  }

  .inner-hero p,
  .content-card p,
  .listing-body h3,
  .listing-body p,
  .product-spec-list li,
  .contact-row span,
  .contact-row a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-row a {
    width: 100%;
    max-inline-size: calc(100vw - 96px);
    white-space: normal;
  }

  .product-item-card .listing-img img,
  .product-category-card .listing-img img {
    object-fit: contain;
    padding: 18px;
    background: #fff;
  }
}

.contact-row a[href^="mailto:"],
.contact-info-row a[href^="mailto:"] {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 760px) {
  .contact-row a[href^="mailto:"],
  .contact-info-row a[href^="mailto:"] {
    width: auto;
    max-inline-size: none;
    font-size: clamp(12px, 3.25vw, 13px);
  }
}
