
:root {
  /* 环保绿 — 可回收 TPE / 可持续发展 */
  --brand: #388E3C;
  --brand-dark: #2E7D32;
  --brand-deep: #1B5E20;
  --brand-deeper: #14532D;
  --accent: #66BB6A;
  --accent-dark: #43A047;
  --accent-light: #E8F5E9;
  --green: var(--brand);
  --green-dark: var(--brand-dark);
  --green-deep: var(--brand-deep);
  --green-deeper: var(--brand-deeper);
  --text: #1E293B;
  --muted: #5F6F65;
  --border: #C5E1CA;
  --border-light: #DCE8DE;
  --bg-tint: #E8F5E9;
  --bg-section: #F1F8F4;
  --bg-hover: #C8E6C9;
  --font: Montserrat, "Segoe UI", "Microsoft YaHei", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font);
  font-weight: 500;
  color: var(--text);
  padding-top: 124px;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(1140px, 92vw); margin: 0 auto; }

header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: #fff; border-bottom: 3px solid var(--brand); box-shadow: 0 2px 16px rgba(27,94,32,.06); }
.topnav {
  background: var(--brand-deep);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 5%;
}
.topnav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 28px;
  padding: 0 1.1rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s;
}
.topnav a:hover { background: var(--accent-dark); }
.mainnav { display: flex; align-items: center; height: 80px; padding: 0 5%; gap: 1rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; color: var(--brand); }
.logo-text strong { font-size: 1.5rem; letter-spacing: .06em; font-weight: 800; }
.logo-text small { font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.nav ul { display: flex; list-style: none; gap: 0.25rem; margin-left: auto; }
.nav a {
  display: block; padding: 0 1rem; line-height: 80px;
  font-size: 15px; font-weight: 700; position: relative;
  letter-spacing: .03em; text-transform: uppercase;
  color: var(--text);
  transition: color .2s;
}
.nav a:hover { color: var(--brand); }
.nav li { position: relative; }
.nav li:hover > a::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); border: 8px solid transparent; border-bottom-color: var(--accent); }
.sub { display: none; position: absolute; top: 84px; left: 50%; transform: translateX(-50%); background: #fff; min-width: 260px; padding: 16px; box-shadow: 0 12px 32px rgba(27,94,32,.1); z-index: 10; border-radius: 6px; border: 1px solid var(--border); }
.sub a { display: block; line-height: 2.2; font-size: 14px; font-weight: 600; color: var(--muted); padding: 0 8px; text-transform: none; letter-spacing: 0; }
.sub a:hover { color: var(--brand); }
.has-sub:hover .sub { display: block; }
.lang { font-weight: 800; color: var(--brand); white-space: nowrap; font-size: 14px; letter-spacing: .08em; }
.menu-btn { display: none; margin-left: auto; font-size: 24px; background: none; border: 0; cursor: pointer; color: var(--brand-deep); }

.banner { position: relative; min-height: 520px; height: min(72vh, 640px); overflow: hidden; background: #1b5e20; }
.banner-media {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.banner-media .banner-slide {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  transform: none;
  animation: none;
  pointer-events: none;
}
.banner-media .banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  animation: banner-pan 28s ease-in-out infinite alternate;
}
@keyframes banner-pan {
  0%   { transform: scale(1.06) translate3d(0, 0, 0); }
  100% { transform: scale(1.06) translate3d(-6%, -3%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .banner-media .banner-slide { animation: none !important; width: 100%; height: 100%; transform: none; transition: none; }
}
.banner-dots {
  position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%);
  z-index: 30; display: flex; gap: .35rem; pointer-events: auto;
}
.banner-dot {
  width: 2.1rem; height: 2.1rem; border-radius: 999px; border: 0; padding: 0;
  background: transparent; cursor: pointer; display: grid; place-items: center;
}
.banner-dot::after {
  content: ""; width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,.5); box-shadow: 0 0 0 1px rgba(0,0,0,.15);
  transition: transform .15s ease, background .15s ease;
}
.banner-dot.is-active::after { background: #fff; transform: scale(1.15); box-shadow: 0 0 0 2px rgba(56,142,60,.65); }
.banner-dot:hover::after { background: #fff; }
.banner-box {
  position: absolute;
  left: 1.5rem;
  right: auto;
  bottom: 2.6rem;
  top: auto;
  transform: none;
  z-index: 10;
  width: min(360px, calc(100% - 3rem));
  max-width: 380px;
  background: rgba(20, 83, 45, .78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 1rem 1.15rem 1.1rem;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  border-left: 3px solid var(--accent);
}
.banner-box h1 {
  font-size: clamp(1.15rem, 2.1vw, 1.42rem);
  margin-bottom: .4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
}
.banner-box p {
  line-height: 1.55;
  margin-bottom: .85rem;
  opacity: .92;
  font-weight: 500;
  font-size: .86rem;
  color: rgba(255,255,255,.92);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.banner-box .btn-round {
  margin-top: 0;
  background: var(--accent);
  color: #fff !important;
  padding: .42rem 1rem;
  font-size: .86rem;
}
.banner-box .btn-round:hover { background: var(--accent-dark); color: #fff !important; }
.banner-box .btn-round.btn-outline {
  padding: .38rem .9rem;
  border-width: 1.5px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.btn-round.btn-outline {
  background: transparent; color: #fff !important; border: 2px solid rgba(255,255,255,.85);
}
.btn-round.btn-outline:hover { background: rgba(255,255,255,.12); color: #fff !important; }

.section { padding: 4rem 5%; }
.section-gray { background: var(--bg-section); }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 2.5rem; }
.section-head h2 { color: var(--brand); font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: .75rem; font-weight: 800; }
.section-head p { color: var(--muted); font-size: 1.05rem; font-weight: 500; }

.market-grid { max-width: 1200px; margin: 0 auto; }
.market-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.market-card { position: relative; overflow: hidden; border-radius: 4px; min-height: 220px; }
.market-card img { width: 100%; height: 280px; object-fit: cover; transition: transform .4s; }
.market-card:hover img { transform: scale(1.05); }
.market-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0,0,0,.65)); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; color: #fff; }
.market-overlay .t1 { font-size: 1.5rem; font-weight: 700; }
.market-overlay .t2 { font-size: 1rem; opacity: .9; margin-top: .25rem; }

.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; list-style: none; margin-bottom: 2.5rem; }
.stats li { text-align: center; min-width: 140px; }
.stats .num { font-size: 2.8rem; font-weight: 800; color: var(--accent); }
.stats .num span { font-size: 3.2rem; }

.show-grid { max-width: 1200px; margin: 0 auto; }
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.show-card { position: relative; overflow: hidden; border-radius: 4px; }
.show-card img { width: 100%; height: 240px; object-fit: cover; }
.show-overlay { position: absolute; inset: 0; background: rgba(27,94,32,.88); color: #fff; display: flex; flex-direction: column; justify-content: center; padding: 1.5rem; opacity: 0; transition: opacity .3s; }
.show-card:hover .show-overlay { opacity: 1; }
.show-overlay .t1 { font-size: 1.35rem; font-weight: 700; }
.show-overlay .more { margin-top: .75rem; font-size: .95rem; text-decoration: underline; }

.support { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; max-width: 1100px; margin: 0 auto; align-items: center; }
.support ul { list-style: none; }
.support li { margin-bottom: 1.5rem; }
.support .tag { display: inline-block; background: var(--brand); color: #fff; padding: .35rem 1rem; border-radius: 4px; font-weight: 700; font-size: 1rem; }
.support p { margin-top: .5rem; font-size: 1.1rem; color: var(--muted); }
.support-factory { width: 100%; height: 320px; object-fit: cover; border-radius: 8px; box-shadow: 0 8px 28px rgba(27,94,32,.12); }

.factory-showcase {
  max-width: 1100px; margin: 0 auto; border-radius: 10px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(27,94,32,.12); background: #fff; border: 1px solid var(--border);
}
.factory-showcase img { width: 100%; height: min(480px, 52vw); object-fit: cover; object-position: center 40%; }
.factory-showcase figcaption {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1.25rem;
  padding: 1.15rem 1.5rem; background: linear-gradient(90deg, var(--bg-tint), #fff);
  border-top: 3px solid var(--brand);
}
.factory-showcase figcaption strong { color: var(--brand-deep); font-size: 1.1rem; }
.factory-showcase figcaption span { color: var(--muted); font-size: .95rem; }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; max-width: 1200px; margin: 0 auto; list-style: none; }
.news-grid a { display: block; background: #fff; border: 1px solid var(--border); overflow: hidden; transition: box-shadow .2s; }
.news-grid a:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.news-img img { height: 160px; width: 100%; object-fit: cover; }
.news-body { padding: 1rem 1.2rem 1.4rem; }
.news-body time { color: var(--muted); font-size: .9rem; }
.news-body h3 { font-size: 1.05rem; margin: .5rem 0; line-height: 1.4; }
.news-body .more { color: var(--brand); font-size: .95rem; font-weight: 600; }

.help-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.help-box { background: #fff; border: 1px solid var(--border); padding: 2rem; text-align: center; border-radius: 6px; }
.help-box img { height: 48px; margin: 0 auto 1rem; }
.help-brand-logo {
  margin: 0 auto 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: .04em;
  color: #c62828;
  line-height: 1.2;
}
.help-box h3 { font-size: 1.15rem; margin-bottom: 1rem; color: var(--brand); font-weight: 800; }
.help-box p { color: var(--muted); margin-bottom: .35rem; }
.help-box .btn-round { margin-top: 1rem; display: inline-block; }

.btn-round { background: var(--brand); color: #fff !important; padding: .65rem 1.6rem; border-radius: 6px; font-weight: 700; border: 0; cursor: pointer; transition: background .2s; }
.btn-round:hover { background: var(--brand-dark); color: #fff !important; }

.page-banner { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%); color: #fff; padding: 3rem 5%; }
.page-banner h1 { font-size: 2rem; }
.prose { max-width: 760px; line-height: 1.8; }
.prose p { margin-bottom: 1rem; }
.blog-list { display: grid; gap: 1.5rem; }
.blog-item {
  display: grid; grid-template-columns: 220px 1fr; gap: 1.25rem; align-items: center;
  padding: 1.25rem; background: #fff; border-left: 4px solid var(--green);
  transition: background .2s ease, transform .2s ease;
}
.blog-item:hover { background: var(--bg-tint); transform: translateY(-2px); }
.blog-item-img { overflow: hidden; border-radius: 4px; aspect-ratio: 16/10; background: var(--bg-section); }
.blog-item-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-item time { color: var(--muted); font-size: .85rem; }
.blog-item h2 { font-size: 1.2rem; margin: .35rem 0 .5rem; }
.blog-item .more { color: var(--brand); font-weight: 700; font-size: .9rem; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }
.about-copy h2 { margin-bottom: 1rem; }
.about-copy p { color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.about-points { margin: 1.25rem 0 1.75rem; padding-left: 1.1rem; color: var(--text); line-height: 1.9; }
.about-figure img { width: 100%; border-radius: 6px; object-fit: cover; aspect-ratio: 4/3; }
.about-figure figcaption { margin-top: .6rem; color: var(--muted); font-size: .9rem; }
.about-products { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2rem; }
.about-chip {
  display: flex; flex-direction: column; gap: .35rem; padding: 1rem;
  background: #fff; border: 1px solid var(--border-light); border-radius: 6px;
}
.about-chip strong { color: var(--brand-deep); }
.about-chip span { font-size: .82rem; color: var(--muted); }
.article-layout { display: grid; gap: 1.75rem; max-width: 820px; }
.article-hero img { width: 100%; border-radius: 6px; aspect-ratio: 16/9; object-fit: cover; }
.article-body p { margin-bottom: 1.1rem; line-height: 1.8; color: #334155; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; font-size: .9rem; color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }
.btn-text-link { margin-left: 1rem; font-weight: 600; color: var(--brand); }
@media (max-width: 900px) {
  .blog-item { grid-template-columns: 1fr; }
  .about-grid, .about-products { grid-template-columns: 1fr; }
}
.contact-page { display: grid; gap: 2rem; }
.contact-form label { display: block; margin-bottom: 1rem; font-weight: 600; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: .35rem; padding: .65rem; border: 1px solid var(--border); border-radius: 6px; font: inherit; }

/* Contact page */
.contact-page-wrap { padding-top: 0; }
.contact-hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  padding: 3rem 5%;
}
.contact-hero h1 { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; margin: .5rem 0 .75rem; color: #fff; }
.contact-hero p { opacity: .92; max-width: 560px; line-height: 1.65; color: rgba(255,255,255,.92); }
.contact-label { font-size: .85rem; letter-spacing: .08em; opacity: .85; text-transform: uppercase; color: var(--accent-light); }
.contact-section { padding: 3rem 5% 4rem; background: var(--bg-section); }
.contact-layout { display: grid; grid-template-columns: 340px 1fr; gap: 2rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 1.35rem 1.5rem;
}
.contact-card.highlight { border-color: var(--accent); background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%); }
.contact-card h2 { font-size: 1.15rem; color: var(--green-dark); margin-bottom: 1rem; }
.contact-card h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: .5rem; }
.contact-list { list-style: none; }
.contact-list li { display: flex; gap: .85rem; margin-bottom: 1rem; align-items: flex-start; }
.contact-list li:last-child { margin-bottom: 0; }
.ci-icon { font-size: 1.25rem; line-height: 1.2; }
.contact-list strong { display: block; font-size: .78rem; color: var(--muted); font-weight: 600; margin-bottom: .15rem; }
.contact-list a { color: var(--green-dark); font-weight: 700; }
.contact-addr { color: var(--text); line-height: 1.6; margin-bottom: .35rem; font-size: .92rem; }
.contact-card.services ul { margin-left: 1.1rem; line-height: 1.85; font-size: .9rem; color: var(--muted); }
.contact-form-panel#inquiry { scroll-margin-top: 130px; }
.contact-form-panel {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 2rem 2.25rem;
  box-shadow: 0 8px 32px rgba(27,94,32,.08);
}
.contact-form-panel h2 { font-size: 1.5rem; color: var(--text); margin-bottom: .35rem; }
.form-desc { color: var(--muted); font-size: .92rem; margin-bottom: 1.5rem; }
.contact-form { max-width: none; margin: 0; background: transparent; padding: 0; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { font-size: .88rem; color: #444; margin-bottom: .85rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  margin-top: .35rem; padding: .7rem .85rem; border: 1px solid var(--border); border-radius: 8px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(56,142,60,.18);
}
.contact-form input.invalid, .contact-form textarea.invalid, .contact-form select.invalid { border-color: #d9534f; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: .5rem; }
.form-actions .btn-round { min-width: 140px; }
.form-actions .btn-round:disabled { opacity: .65; cursor: not-allowed; }
.contact-alt { font-size: .9rem; color: var(--green); font-weight: 600; }
.form-privacy { font-size: .78rem; color: var(--muted); margin-top: 1rem; line-height: 1.5; }
.form-status {
  margin-top: 1.25rem; padding: 1rem 1.25rem; border-radius: 8px; font-size: .92rem; line-height: 1.6;
}
.form-status.success { background: #def4f0; border: 1px solid #00b090; color: #008361; }
.form-status.error { background: #ffe8ef; border: 1px solid #fc5185; color: #d63163; }
.form-status.info { background: var(--bg-tint); border: 1px solid var(--border-light); color: var(--muted); }

footer { margin-top: 2rem; }
.footer-banner { position: relative; overflow: hidden; line-height: 0; }
.footer-banner img { width: 100%; height: auto; display: block; object-fit: contain; object-position: center 30%; }
.footer-banner-text {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem 1rem; flex-wrap: wrap; line-height: 1.35;
  padding: .85rem 1.15rem; border-radius: 10px;
  color: #fff;
  background: rgba(20, 83, 45, .78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.footer-banner-copy { max-width: min(560px, 75%); }
.footer-banner .t1 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 700; }
.footer-banner .t2 { opacity: .92; margin-top: .2rem; font-size: .86rem; }
.footer-banner .btn-round {
  background: var(--accent); flex-shrink: 0;
  padding: .45rem 1.15rem; font-size: .88rem;
}
@media (max-width: 700px) {
  .footer-banner-text { left: .7rem; right: .7rem; bottom: .7rem; padding: .75rem .9rem; }
  .footer-banner .t1 { font-size: 1rem; }
  .footer-banner .t2 { font-size: .8rem; }
}
.footer-main { background: var(--brand); color: #fff; padding: 2.5rem 5%; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer-main ul { display: flex; flex-wrap: wrap; gap: 1rem 2rem; list-style: none; }
.footer-main a { color: #fff; }
.footer-brand { display: flex; flex-direction: column; color: #fff; }
.footer-brand strong { font-size: 1.4rem; }
.footer-brand span { font-size: .85rem; opacity: .85; }
.footer-copy { background: var(--brand-deep); color: rgba(255,255,255,.85); text-align: center; padding: 1rem; font-size: .9rem; }
.back-top { color: #fff; font-size: .9rem; }

/* Knowledge article (KRAIBURG-style) */
.knowledge-hero { background: linear-gradient(135deg, var(--bg-tint) 0%, #fff 60%); padding: 2.5rem 5% 2rem; border-bottom: 1px solid var(--border); }
.knowledge-label { color: var(--green); font-weight: 700; text-transform: uppercase; font-size: .85rem; letter-spacing: .06em; margin: 1rem 0 .5rem; }
.knowledge-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: #1a1a1a; margin-bottom: .75rem; }
.knowledge-meta { color: var(--muted); font-size: .95rem; }
.breadcrumb { font-size: .9rem; color: var(--muted); margin-bottom: .5rem; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 .4rem; }
.knowledge-grid { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.knowledge-toc { position: sticky; top: 140px; background: var(--bg-tint); border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem; }
.knowledge-toc h2 { font-size: 1rem; color: var(--green); margin-bottom: .75rem; }
.knowledge-toc ol { padding-left: 1.2rem; line-height: 2; font-size: .92rem; }
.knowledge-toc a { color: var(--text); }
.knowledge-toc a:hover { color: var(--green); }
.toc-cta { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border-light); font-size: .9rem; }
.toc-cta p { margin-bottom: .75rem; color: var(--muted); }
.knowledge-article section { margin-bottom: 2.5rem; scroll-margin-top: 140px; }
.knowledge-article h2 { font-size: 1.55rem; color: #1a1a1a; margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 3px solid var(--green); display: inline-block; }
.summary-box { background: var(--bg-tint); border-left: 4px solid var(--green); padding: 1.25rem 1.5rem; border-radius: 0 8px 8px 0; }
.summary-box ul { margin: .5rem 0 0 1.2rem; line-height: 1.8; }
.article-figure { margin: 1.5rem 0; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.article-figure figcaption { font-size: .85rem; color: var(--muted); padding: .5rem 0; text-align: center; }
.inline-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; background: var(--bg-tint); color: var(--brand-deep); padding: 1.75rem 2rem; border-radius: 8px; margin: 2rem 0; border-left: 4px solid var(--accent); }
.inline-cta h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.inline-cta p { opacity: .88; font-size: .95rem; }
.inline-cta .btn-round { background: var(--accent); color: #fff !important; }
.check-list { list-style: none; padding: 0; }
.check-list li { padding: .45rem 0 .45rem 1.75rem; position: relative; line-height: 1.6; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.app-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1rem 0; }
.app-grid div { background: var(--bg-tint); padding: 1rem 1.2rem; border-radius: 6px; border-top: 3px solid var(--green); }
.app-grid strong { display: block; color: var(--green); margin-bottom: .35rem; }
.app-grid p { font-size: .92rem; color: var(--muted); margin: 0; }
.glossary dt { font-weight: 700; color: var(--green-dark); margin-top: 1rem; }
.glossary dd { margin: .25rem 0 0 0; color: var(--muted); line-height: 1.7; padding-left: .5rem; }
.author-box { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; background: var(--bg-tint); border-radius: 8px; margin-top: 2rem; }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; }
.section-title-center { text-align: center; color: var(--green); font-size: 1.75rem; margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.related-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem; transition: box-shadow .2s, border-color .2s; }
.related-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: var(--green); text-decoration: none; }
.related-card .tag { font-size: .75rem; font-weight: 700; color: var(--green); text-transform: uppercase; }
.related-card h3 { font-size: 1.05rem; margin: .5rem 0; color: #1a1a1a; }
.related-card p { font-size: .88rem; color: var(--muted); line-height: 1.5; }
.related-card .read-more { font-size: .85rem; color: var(--green); margin-top: .75rem; display: inline-block; }
.newsletter-bar { background: var(--brand); color: #fff; padding: 2rem 5%; }
.newsletter-bar .flex-between { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.newsletter-bar .t1 { font-size: 1.35rem; font-weight: 700; }
.newsletter-bar .t2 { opacity: .85; margin-top: .25rem; }
.guide-intro { padding: 2rem 5%; background: #fff; border-bottom: 1px solid #eee; }
.intro-lead { font-size: 1.12rem; line-height: 1.85; color: #222; margin-bottom: 1rem; }
.guide-intro p { line-height: 1.8; color: var(--muted); max-width: 900px; }
.sidebar-help h3 { font-size: .95rem; color: var(--green-dark); margin-bottom: .5rem; }
.sidebar-help p { font-size: .85rem; line-height: 1.6; color: var(--muted); margin-bottom: .75rem; }
.table-wrap { overflow-x: auto; margin: 1.25rem 0; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.compare-table th, .compare-table td { border: 1px solid var(--border-light); padding: .75rem 1rem; text-align: left; }
.compare-table th { background: var(--green); color: #fff; font-weight: 600; }
.compare-table tr:nth-child(even) td { background: var(--bg-tint); }
.compare-table td:first-child { font-weight: 600; color: var(--green-dark); white-space: nowrap; }

/* Market page (Sungallon consumer style) */
.market-page { padding-top: 0; }
.market-banner { position: relative; overflow: hidden; }
.market-banner > img { width: 100%; height: min(520px, 55vw); object-fit: cover; }
.market-banner-box {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: min(520px, 46vw);
  background: linear-gradient(145deg, rgba(20,83,45,.94) 0%, rgba(56,142,60,.9) 100%);
  color: #fff;
  padding: 2.5rem 2.75rem; border-radius: 4px 0 0 4px;
  border-left: 4px solid var(--accent);
}
.market-banner-box h1 { color: #fff; }
.market-banner-box p { color: rgba(255,255,255,.92); opacity: 1; }
.market-banner-box h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.market-banner-box p { font-size: 1.05rem; line-height: 1.75; opacity: .96; }
.market-section { padding: 4rem 5%; max-width: 1200px; margin: 0 auto; }
.market-section-head { text-align: center; margin-bottom: 2.5rem; }
.market-section-head h2 { color: var(--green); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: .5rem; }
.market-section-head p { color: var(--muted); font-size: 1.15rem; }
.market-us { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.market-us-card { position: relative; overflow: hidden; border-radius: 6px; min-height: 280px; }
.market-us-card > img { width: 100%; height: 320px; object-fit: cover; transition: transform .45s; }
.img-scale:hover > img { transform: scale(1.06); }
.market-us-overlay {
  position: absolute; inset: 0; display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 55%, transparent 100%);
  padding: 2rem 2.5rem; color: #fff;
}
.market-us-overlay-wide { background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 65%, transparent 100%); }
.market-us-overlay h3 { font-size: 1.75rem; font-weight: 800; margin-bottom: .75rem; min-width: 120px; }
.market-us-text { max-width: 680px; font-size: 1rem; line-height: 1.75; opacity: .95; }
.market-us-text p { margin-bottom: .5rem; }
.market-us-text p:last-child { margin-bottom: 0; }
.market-thumb-grid {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem; margin-bottom: 3.5rem;
}
.market-thumb { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4/3; }
.market-thumb > img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.market-thumb-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff; padding: 2rem .85rem .85rem; font-size: .95rem; font-weight: 600; line-height: 1.35;
}
.market-apply .market-us-card { min-height: 340px; }
.market-apply .market-us-card > img { height: 380px; }
.market-intro { max-width: 900px; margin: 0 auto 2.5rem; padding: 1.5rem 2rem; background: var(--bg-tint); border-left: 4px solid var(--green); border-radius: 0 8px 8px 0; line-height: 1.85; color: var(--muted); }
.market-advantage { margin-bottom: 3rem; }
.market-advantage-box { max-width: 900px; margin: 0 auto; padding: 1.75rem 2rem; background: #fff; border: 1px solid var(--border); border-radius: 8px; line-height: 1.85; color: var(--muted); }
.market-advantage-box p { margin-bottom: .5rem; }
.market-material-grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; margin-bottom: 3.5rem; }
.market-material-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.market-material-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: var(--green); }
.market-material-card > img { width: 100%; height: 160px; object-fit: cover; }
.market-material-body { padding: 1rem 1.15rem 1.25rem; }
.mat-tag { display: inline-block; background: var(--accent-light); color: var(--accent-dark); font-size: .75rem; font-weight: 700; padding: .2rem .65rem; border-radius: 4px; margin-bottom: .5rem; }
.market-material-body h3 { font-size: 1rem; margin-bottom: .45rem; color: #1a1a1a; }
.market-material-body p { font-size: .88rem; line-height: 1.55; color: var(--muted); margin: 0; }

/* Product center (Xuchuan-style PU page) */
.product-center-page { padding-top: 0; }
.product-center-banner { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%); color: #fff; padding: 2.5rem 5%; }
.product-center-banner--img {
  position: relative; padding: 0; min-height: 260px; overflow: hidden;
  display: grid; align-items: end;
}
.product-center-banner--img > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.product-center-banner--img .product-center-banner-text {
  position: relative; z-index: 1; width: min(1140px, 92vw); margin: 0 auto;
  padding: 3rem 0 2rem; background: linear-gradient(transparent, rgba(0,0,0,.55));
}
.product-center-banner h1 { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: .75rem; }
.product-center-banner .breadcrumb { color: rgba(255,255,255,.85); font-size: .9rem; }
.product-center-banner .breadcrumb a { color: #fff; }
.product-center-banner .breadcrumb a:hover { text-decoration: underline; }
.article-figure img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.product-center-layout { padding: 2.5rem 5% 4rem; background: var(--bg-section); }
.product-center-grid { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
.product-sidebar { position: sticky; top: 140px; }
.pu-search-box, .pu-cat-tree { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 1.25rem; margin-bottom: 1rem; }
.pu-search-box h3, .pu-cat-tree > h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: .85rem; padding-bottom: .5rem; border-bottom: 2px solid var(--green); }
.pu-search-form { display: flex; gap: .5rem; }
.pu-search-form input { flex: 1; padding: .55rem .75rem; border: 1px solid var(--border); border-radius: 4px; font: inherit; font-size: .9rem; }
.pu-search-form button { background: var(--brand); color: #fff; border: 0; padding: .55rem 1rem; border-radius: 4px; cursor: pointer; font-weight: 700; white-space: nowrap; }
.pu-search-form button:hover { background: var(--brand-dark); }
.pu-cat-group { margin-bottom: .75rem; }
.pu-cat-group h4 { font-size: .92rem; color: var(--green); font-weight: 700; margin-bottom: .35rem; }
.pu-cat-group ul { list-style: none; padding-left: .5rem; }
.pu-cat-group li { margin-bottom: .15rem; }
.pu-cat-link { display: block; padding: .35rem .5rem; font-size: .88rem; color: var(--muted); border-radius: 4px; transition: background .15s, color .15s; }
.pu-cat-link:hover, .pu-cat-link.active { background: var(--bg-tint); color: var(--green-dark); font-weight: 600; }
.product-main { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 2rem 2.25rem; min-height: 480px; }
.pu-product-panel[hidden] { display: none; }
.pu-product-title { font-size: 1.65rem; color: #1a1a1a; font-weight: 800; margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 3px solid var(--green); }
.pu-product-intro h3, .pu-product-spec h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: .75rem; font-weight: 700; }
.pu-product-intro p { line-height: 1.85; color: var(--text); margin-bottom: 1.5rem; }
.pu-contact-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; background: var(--bg-tint); border: 1px solid var(--border-light); border-radius: 6px; padding: 1rem 1.25rem; margin-bottom: 2rem; }
.pu-contact-btn { background: var(--accent); color: #fff !important; padding: .55rem 1.4rem; border-radius: 4px; font-weight: 700; }
.pu-contact-btn:hover { background: var(--accent-dark); }
.pu-contact-info { color: var(--muted); font-size: .95rem; }
.pu-spec-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.pu-spec-table th, .pu-spec-table td { border: 1px solid var(--border-light); padding: .65rem .75rem; text-align: center; }
.pu-spec-table th { background: var(--green); color: #fff; font-weight: 600; white-space: nowrap; }
.pu-spec-table tr:nth-child(even) td { background: var(--bg-tint); }
.pu-spec-table td:first-child { font-weight: 600; color: var(--green-dark); }
.pu-product-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.pu-nav-link { font-size: .9rem; color: var(--green); max-width: 40%; line-height: 1.4; }
.pu-nav-link:hover { text-decoration: underline; }
.pu-back-top { font-size: .9rem; padding: .5rem 1.25rem; }

/* TPEE product page (Keyilai-style) */
.tpee-product-page { padding-top: 0; }
.tpee-hero { position: relative; overflow: hidden; min-height: 280px; }
.tpee-hero > img { width: 100%; height: 320px; object-fit: cover; }
.tpee-hero-box {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 2rem 8%; background: linear-gradient(90deg, rgba(20,83,45,.9) 0%, rgba(56,142,60,.65) 55%, transparent 100%);
  color: #fff; max-width: 720px;
}
.tpee-hero-box h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin: .75rem 0; }
.tpee-hero-box p { opacity: .95; line-height: 1.6; }
.tpee-hero-box h1, .tpee-hero-box p { color: #fff; }
.tpee-hero .breadcrumb { color: rgba(255,255,255,.85); font-size: .88rem; }
.tpee-hero .breadcrumb a { color: #fff; }
.tpee-layout { padding: 2.5rem 5% 4rem; background: var(--bg-section); }
.tpee-grid { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: start; }
.tpee-sidebar { position: sticky; top: 140px; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem; }
.tpee-sidebar h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--green); }
.tpee-sidebar ul { list-style: none; }
.tpee-series-link { display: block; padding: .45rem .5rem; font-size: .9rem; color: var(--muted); border-radius: 4px; margin-bottom: .15rem; }
.tpee-series-link:hover, .tpee-series-link.active { background: var(--bg-tint); color: var(--green-dark); font-weight: 600; }
.tpee-sidebar-cta { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: .88rem; color: var(--muted); }
.tpee-sidebar-cta p { margin-bottom: .75rem; }
.tpee-sidebar-cta .btn-round { font-size: .85rem; padding: .5rem 1rem; }
.tpee-main { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 2rem 2.25rem; }
.tpee-series-panel[hidden] { display: none; }
.tpee-series-title { font-size: 1.75rem; color: #1a1a1a; font-weight: 800; margin-bottom: .25rem; }
.tpee-series-sub { font-size: 1.05rem; color: var(--green); font-weight: 600; margin-bottom: 1rem; }
.tpee-series-intro { line-height: 1.85; color: var(--text); margin-bottom: 2rem; max-width: 900px; }
.tpee-features h3, .tpee-spec h3, .tpee-apps h3 {
  font-size: 1.15rem; color: var(--green-dark); font-weight: 700; margin-bottom: 1rem;
  padding-left: .75rem; border-left: 4px solid var(--green);
}
.tpee-feature-list {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .5rem 1rem; list-style: none; margin-bottom: 2.5rem;
}
.tpee-feature-list li {
  padding: .45rem .75rem; background: var(--bg-tint); border-radius: 4px; font-size: .9rem;
  position: relative; padding-left: 1.5rem;
}
.tpee-feature-list li::before { content: "●"; position: absolute; left: .5rem; color: var(--green); font-size: .6rem; top: 50%; transform: translateY(-50%); }
.tpee-spec-table { width: 100%; border-collapse: collapse; font-size: .88rem; margin-bottom: 2.5rem; }
.tpee-spec-table th, .tpee-spec-table td { border: 1px solid var(--border-light); padding: .65rem .5rem; text-align: center; }
.tpee-spec-table th { background: var(--green); color: #fff; font-weight: 600; line-height: 1.35; }
.tpee-spec-table th small { font-weight: 400; opacity: .9; font-size: .75rem; }
.tpee-spec-table tr:nth-child(even) td { background: var(--bg-tint); }
.tpee-spec-table td:first-child { font-weight: 700; color: var(--green-dark); white-space: nowrap; }
.tpee-app-block {
  display: grid; grid-template-columns: 280px 1fr; gap: 1.5rem; align-items: center;
  margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #eee;
}
.tpee-app-block.reverse { grid-template-columns: 1fr 280px; }
.tpee-app-block.reverse img { order: 2; }
.tpee-app-block.reverse .tpee-app-text { order: 1; }
.tpee-app-block img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.tpee-app-text h4 { font-size: 1.15rem; color: var(--green-dark); margin-bottom: .65rem; font-weight: 700; }
.tpee-app-text p { line-height: 1.8; color: var(--muted); font-size: .95rem; }
.tpee-contact-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.5rem;
  padding: 1.25rem; background: var(--bg-tint); border-radius: 8px; border: 1px solid var(--border-light);
}
.tpee-contact-bar span { color: var(--muted); font-size: .92rem; }

/* English overview feature cards */
.en-feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; margin-top: 1.25rem;
}
.en-feature {
  background: #fff; border: 1px solid var(--border-light); border-radius: 10px;
  padding: 1.25rem 1.35rem; box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.en-feature h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: .55rem; }
.en-feature p { color: var(--muted); line-height: 1.65; font-size: .95rem; }

/* Mold runner mini-app */
.mold-runner-app { padding-top: 0; }
.mr-hero { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%); color: #fff; padding: 2.5rem 5%; }
.mr-hero h1, .mr-hero p { color: #fff; }
.mr-label { font-size: .85rem; opacity: .85; letter-spacing: .05em; margin-bottom: .5rem; }
.mr-hero h1 { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: .65rem; }
.mr-hero p { opacity: .92; max-width: 640px; line-height: 1.6; }
.mr-body { padding: 2rem 5% 4rem; background: var(--bg-section); }
.mr-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.mr-tab {
  background: #fff; border: 2px solid var(--border-light); padding: .65rem 1.25rem; border-radius: 999px;
  font-weight: 600; cursor: pointer; color: var(--muted); font-size: .95rem;
}
.mr-tab:hover { border-color: var(--green); color: var(--green-dark); }
.mr-tab.active { background: var(--green); border-color: var(--green); color: #fff; }
.mr-panel { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 1.75rem; }
.mr-panel[hidden] { display: none; }
.mr-grid { display: grid; grid-template-columns: 320px 1fr; gap: 2rem; align-items: start; }
.mr-form h2, .mr-results h2 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 1rem; }
.mr-form label { display: block; margin-bottom: .85rem; font-size: .88rem; font-weight: 600; color: #444; }
.mr-form input, .mr-form select {
  width: 100%; margin-top: .3rem; padding: .55rem .65rem; border: 1px solid var(--border);
  border-radius: 6px; font: inherit; font-size: .92rem;
}
.mr-calc-btn { width: 100%; margin-top: .5rem; }
.mr-result-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .75rem; margin-bottom: 1.5rem; }
.mr-card {
  background: var(--bg-tint); border: 1px solid var(--border); border-radius: 8px; padding: 1rem;
  display: flex; flex-direction: column; gap: .25rem;
}
.mr-card.wide { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: baseline; gap: .5rem; }
.mr-card .k { font-size: .78rem; color: var(--muted); }
.mr-card .v { font-size: 1.35rem; font-weight: 800; color: var(--green-dark); }
.mr-card .u { font-size: .78rem; color: var(--muted); }
.mr-advice { background: var(--bg-tint); border-left: 4px solid var(--green); padding: 1rem 1.25rem; border-radius: 0 8px 8px 0; }
.mr-advice h3 { font-size: .95rem; color: var(--green-dark); margin-bottom: .5rem; }
.mr-advice ul { margin-left: 1.2rem; line-height: 1.75; font-size: .9rem; color: var(--text); }
.mr-balance-meter { margin-bottom: 1.5rem; }
.mr-meter-bar { height: 12px; background: var(--border); border-radius: 999px; overflow: hidden; margin-bottom: .5rem; }
.mr-meter-fill { height: 100%; background: linear-gradient(90deg, #e74c3c, #f1c40f, var(--green)); transition: width .4s; border-radius: 999px; }
.mr-meter-label { font-weight: 700; color: var(--green-dark); }
.mr-diagram-hint { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.mr-diagram-wrap { background: var(--bg-section); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; overflow-x: auto; }
#mr-diagram-svg { width: 100%; max-width: 720px; height: auto; display: block; margin: 0 auto; }
.mr-legend { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1rem; font-size: .88rem; color: var(--muted); }
.mr-legend span { display: flex; align-items: center; gap: .4rem; }
.mr-legend i { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.c-sprue { background: var(--green-deeper); }
.c-runner { background: var(--green); }
.c-gate { background: #f39c12; }
.c-cavity { background: #3498db; }
.mr-footer-note { margin-top: 1.5rem; padding: 1rem; text-align: center; font-size: .88rem; color: var(--muted); }
.mr-footer-note a { color: var(--green); }
.mr-zone-temps { margin-bottom: 1.5rem; padding: 1rem 1.25rem; background: #fff8f0; border: 1px solid #f0dcc8; border-radius: 8px; }
.mr-zone-temps h3 { font-size: .95rem; color: #b8650a; margin-bottom: .65rem; }
.mr-zone-temps ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .5rem; }
.mr-zone-temps li { background: #fff; padding: .5rem .75rem; border-radius: 4px; font-size: .88rem; border: 1px solid #f0dcc8; }
.mr-gate-summary { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1rem; }
.mr-gate-badge { background: var(--green); color: #fff; padding: .65rem 1.1rem; border-radius: 6px; font-weight: 700; font-size: .95rem; }
.mr-gate-badge.secondary { background: var(--green-deeper); }
.mr-gate-diagram { margin-bottom: 1.25rem; }
.mr-gate-positions h3 { font-size: .95rem; color: var(--green-dark); margin-bottom: .65rem; }
.mr-gate-positions ul { margin-left: 1.2rem; line-height: 1.8; font-size: .9rem; margin-bottom: 1rem; }

@media (max-width: 900px) {
  body { padding-top: 84px; }
  .topnav { display: none; }
  .menu-btn { display: block; }
  .nav { display: none; position: absolute; top: 84px; left: 0; right: 0; background: #fff; border-bottom: 1px solid #eee; }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; }
  .nav a { line-height: 56px; border-bottom: 1px solid #eee; }
  .sub { position: static; transform: none; box-shadow: none; display: none; padding-left: 1rem; }
  .has-sub.open .sub { display: block; }
  .banner { min-height: 360px; height: auto; }
  .banner-media { position: relative; height: 280px; }
  .banner-media .banner-slide { animation-duration: 36s; width: 100%; height: 100%; }
  .banner-box {
    position: absolute; left: .85rem; right: .85rem; bottom: 2.4rem; top: auto;
    width: auto; max-width: none; transform: none; padding: .9rem 1rem;
  }
  .banner-box h1 { font-size: 1.15rem; }
  .banner-box p { font-size: .82rem; margin-bottom: .7rem; }
  .market-row, .show-row, .support { grid-template-columns: 1fr; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .knowledge-toc { position: static; }
  .market-banner-box { position: static; transform: none; width: 100%; border-radius: 0; }
  .market-banner > img { height: 220px; }
  .market-us-overlay { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .market-us-card > img, .market-apply .market-us-card > img { height: 240px; }
  .market-thumb-grid { grid-template-columns: repeat(2, 1fr); }
  .product-center-grid { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .pu-product-nav { flex-direction: column; text-align: center; }
  .pu-nav-link { max-width: 100%; }
  .tpee-grid { grid-template-columns: 1fr; }
  .tpee-sidebar { position: static; }
  .tpee-hero > img { height: 200px; }
  .tpee-hero-box { position: static; max-width: 100%; background: var(--brand-deep); }
  .tpee-app-block, .tpee-app-block.reverse { grid-template-columns: 1fr; }
  .tpee-app-block.reverse img, .tpee-app-block.reverse .tpee-app-text { order: unset; }
  .tpee-feature-list { grid-template-columns: 1fr; }
  .mr-grid { grid-template-columns: 1fr; }
  .mr-result-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}
