:root {
  --brand: #f59a00;
  --brand-dark: #d98200;
  --ink: #21191a;
  --body: #5f6368;
  --muted: #f6f7f8;
  --line: #e7e9eb;
  --white: #ffffff;
  --dark: #1c1718;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(33, 25, 26, .09);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section--compact { padding: 34px 0 56px; }
.section--muted { background: var(--muted); }
.section--dark { background: var(--dark); color: rgba(255,255,255,.82); }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 1000; background: var(--brand); color: #fff; padding: 10px 14px; border-radius: 6px; }
.skip-link:focus { top: 12px; }

.topbar { background: var(--dark); color: rgba(255,255,255,.78); font-size: 13px; }
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; }
.topbar__contact { display: flex; gap: 10px; align-items: center; }
.topbar a:hover { color: #fff; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(231,233,235,.9); backdrop-filter: blur(12px); }
.site-header.is-scrolled { box-shadow: 0 8px 32px rgba(33,25,26,.08); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 280px; flex: 0 0 auto; overflow: hidden; }
.brand img { width: 100%; max-height: 62px; object-fit: contain; object-position: left center; }
.primary-nav { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 600; color: var(--ink); }
.primary-nav > a:not(.button) { position: relative; white-space: nowrap; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--brand); transition: right .25s ease; }
.primary-nav > a:hover, .primary-nav > a.active { color: var(--brand-dark); }
.primary-nav > a:hover::after, .primary-nav > a.active::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 8px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 21px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border-radius: 8px; border: 1px solid transparent; font-weight: 700; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(245,154,0,.22); }
.button--primary:hover { background: var(--brand-dark); }
.button--secondary { background: #fff; color: var(--ink); border-color: #d7dadd; }
.button--secondary:hover { color: var(--brand-dark); border-color: var(--brand); }
.button--full { width: 100%; }
.nav-quote { min-height: 44px; padding-inline: 20px; }

.eyebrow { margin: 0 0 14px; color: var(--brand-dark); font-size: 13px; font-weight: 800; letter-spacing: .16em; }
.section-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading h2 { margin: 0; color: var(--ink); font-size: clamp(30px, 3.4vw, 42px); line-height: 1.25; }
.section-heading > p:last-child { margin: 16px auto 0; max-width: 680px; }
.section-heading--light h2 { color: #fff; }
.section-heading--light > p:last-child { color: rgba(255,255,255,.68); }
.section-heading--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; text-align: left; }
.section-heading--row > p { max-width: 360px; margin: 0; text-align: right; }

.hero { padding-top: 72px; background: radial-gradient(circle at 78% 20%, rgba(245,154,0,.13), transparent 26%), linear-gradient(180deg, #fff 0%, #fbfbfb 100%); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.hero h1 { margin: 0; color: var(--ink); font-size: clamp(48px, 5.6vw, 76px); line-height: 1.08; letter-spacing: -.04em; }
.hero h1 span { color: var(--brand); }
.hero__lead { margin: 28px 0 0; max-width: 670px; font-size: 18px; line-height: 1.9; }
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 28px 0 0; padding: 0; }
.hero__tags li { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.86); color: var(--ink); font-size: 13px; font-weight: 600; }
.hero__media { position: relative; }
.warehouse-placeholder { position: relative; min-height: 520px; overflow: hidden; border-radius: 20px; background: linear-gradient(140deg, #dfe3e5, #f2f3f4 60%, #d9dde0); box-shadow: var(--shadow); }
.warehouse-placeholder::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(24,20,21,.68)); }
.warehouse-structure { position: absolute; inset: 10% 5% 18%; perspective: 800px; }
.beam { position: absolute; background: rgba(70,76,80,.36); }
.beam--1, .beam--2, .beam--3 { top: 0; bottom: 0; width: 8px; }
.beam--1 { left: 10%; transform: skewX(-10deg); }
.beam--2 { left: 49%; }
.beam--3 { right: 8%; transform: skewX(10deg); }
.shelf { position: absolute; left: 4%; right: 4%; height: 8px; background: rgba(70,76,80,.36); }
.shelf--1 { top: 22%; }.shelf--2 { top: 50%; }.shelf--3 { top: 78%; }
.package { position: absolute; width: 20%; height: 20%; border-radius: 3px; background: linear-gradient(135deg, #c89554, #b07a39); box-shadow: inset 0 0 0 2px rgba(255,255,255,.2); }
.package--1 { left: 16%; top: 28%; }.package--2 { left: 55%; top: 57%; width: 23%; }.package--3 { right: 10%; top: 22%; width: 17%; height: 24%; }
.placeholder-note { position: absolute; left: 28px; right: 28px; bottom: 28px; z-index: 2; color: #fff; }
.placeholder-note strong { display: block; font-size: 22px; }.placeholder-note span { font-size: 14px; color: rgba(255,255,255,.75); }
.hero__badge { position: absolute; left: -28px; bottom: 54px; z-index: 4; width: min(360px, 76%); padding: 18px 20px; background: #fff; border-radius: 12px; box-shadow: var(--shadow); }
.hero__badge span { display: block; color: var(--brand-dark); font-size: 12px; font-weight: 800; letter-spacing: .15em; }.hero__badge strong { display: block; margin-top: 4px; color: var(--ink); font-size: 14px; }

.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 14px 44px rgba(33,25,26,.06); }
.stat { padding: 26px 28px; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line); }
.stat strong { display: block; color: var(--brand); font-size: 32px; line-height: 1.2; }.stat span { display: block; margin-top: 8px; color: var(--ink); font-weight: 800; }.stat small { display: block; margin-top: 4px; color: #8a8e92; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { min-height: 246px; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(245,154,0,.35); }
.service-card__number { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 10px; background: rgba(245,154,0,.12); color: var(--brand-dark); font-weight: 900; }
.service-card h3 { margin: 22px 0 8px; color: var(--ink); font-size: 22px; }.service-card p { margin: 0; }.service-card a { display: inline-block; margin-top: 20px; color: var(--brand-dark); font-weight: 800; }

.warehouse-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: stretch; }
.us-map-card { padding: 18px 18px 12px; background: #fafafa; border: 1px solid var(--line); border-radius: 16px; }
.us-map { width: 100%; height: auto; }
.map-pulse { fill: rgba(245,154,0,.16); stroke: rgba(245,154,0,.36); stroke-width: 1; }
.map-dot { fill: var(--brand); stroke: #fff; stroke-width: 4; }
.map-location text { fill: var(--ink); font-size: 16px; font-weight: 800; }
.map-location .map-cn { fill: var(--body); font-size: 12px; font-weight: 600; }
.map-disclaimer { margin: 0; text-align: center; color: #979b9e; font-size: 12px; }
.warehouse-list { display: flex; flex-direction: column; gap: 16px; }
.warehouse-card { flex: 1; display: flex; gap: 18px; align-items: center; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.warehouse-card > span { flex: 0 0 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: rgba(245,154,0,.13); color: var(--brand-dark); font-weight: 900; }
.warehouse-card h3 { margin: 0; color: var(--ink); font-size: 21px; }.warehouse-card p { margin: 5px 0 0; font-size: 14px; }
.warehouse-cta { margin-top: 2px; }

.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; overflow: hidden; }
.advantage { min-height: 205px; padding: 30px; background: var(--dark); transition: background .2s ease; }
.advantage:hover { background: #241e1f; }
.advantage b { color: var(--brand); font-size: 14px; }.advantage h3 { color: #fff; margin: 18px 0 8px; font-size: 21px; }.advantage p { margin: 0; color: rgba(255,255,255,.64); }

.platform-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.platform-copy h2 { margin: 0; color: var(--ink); font-size: clamp(30px, 3.5vw, 44px); line-height: 1.25; }.platform-copy > p:not(.eyebrow) { margin: 20px 0 28px; }
.logo-panels { display: grid; gap: 16px; }
.logo-panel { padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }.logo-panel h3 { margin: 0 0 16px; color: var(--ink); font-size: 16px; }
.name-cloud { display: flex; flex-wrap: wrap; gap: 10px; }.name-cloud span { min-width: 104px; padding: 11px 15px; border-radius: 8px; background: var(--muted); color: var(--ink); text-align: center; font-weight: 700; }
.name-cloud--featured span { background: rgba(245,154,0,.12); color: #a76100; border: 1px solid rgba(245,154,0,.23); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.photo-placeholder { aspect-ratio: 4/3; padding: 24px; display: flex; flex-direction: column; justify-content: end; border-radius: 12px; overflow: hidden; position: relative; background: linear-gradient(145deg, #d9dddf, #f0f1f2 58%, #cdd2d5); border: 1px solid #d5d9dc; }
.photo-placeholder::before { content: ""; position: absolute; inset: 15% 10% 29%; border: 7px solid rgba(66,72,76,.18); border-bottom-width: 12px; background: repeating-linear-gradient(90deg, rgba(90,96,100,.13) 0 12%, transparent 12% 19%); }
.photo-placeholder::after { content: ""; position: absolute; inset: 48% 0 0; background: linear-gradient(transparent, rgba(25,21,22,.70)); }
.photo-placeholder > * { position: relative; z-index: 2; color: #fff; }.photo-placeholder span { color: var(--brand); font-weight: 900; }.photo-placeholder strong { font-size: 19px; }.photo-placeholder small { color: rgba(255,255,255,.7); }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { padding: 30px; min-height: 270px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.news-card > span { color: var(--brand-dark); font-size: 13px; font-weight: 800; }.news-card h3 { margin: 15px 0 12px; color: var(--ink); font-size: 21px; line-height: 1.45; }.news-card p { margin: 0; }.news-card a { display: inline-block; margin-top: 22px; color: var(--brand-dark); font-weight: 800; }

.section--quote { background: linear-gradient(135deg, #201a1b, #2c2425); color: rgba(255,255,255,.75); }
.quote-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 64px; align-items: start; }
.quote-copy h2 { margin: 0; color: #fff; font-size: clamp(32px, 3.8vw, 46px); line-height: 1.25; }.quote-copy > p:not(.eyebrow) { margin: 20px 0 28px; }
.contact-card { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.05); }
.contact-card h3 { margin: 0 0 14px; color: #fff; }.contact-card dl { margin: 0; }.contact-card dl > div { display: flex; justify-content: space-between; gap: 24px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.08); }.contact-card dt { color: rgba(255,255,255,.55); }.contact-card dd { margin: 0; text-align: right; color: #fff; }
.copy-button { border: 0; background: none; color: #fff; cursor: pointer; padding: 0; }.copy-button em { margin-left: 8px; color: var(--brand); font-style: normal; font-size: 12px; }
.quote-form { padding: 34px; border-radius: 16px; background: #fff; color: var(--body); box-shadow: 0 22px 70px rgba(0,0,0,.24); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }.form-grid label { display: block; }.form-grid label > span { display: block; margin-bottom: 7px; color: var(--ink); font-size: 14px; font-weight: 700; }.form-grid__full { grid-column: 1/-1; }
input, select, textarea { width: 100%; border: 1px solid #d9dcdf; border-radius: 8px; background: #fff; color: var(--ink); outline: none; transition: border .2s ease, box-shadow .2s ease; }
input, select { height: 49px; padding: 0 13px; } textarea { padding: 12px 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(245,154,0,.13); }
.is-invalid { border-color: #c93636 !important; box-shadow: 0 0 0 3px rgba(201,54,54,.08) !important; }
.privacy-check { display: flex; align-items: flex-start; gap: 9px; margin: 18px 0; font-size: 13px; }.privacy-check input { flex: 0 0 16px; width: 16px; height: 16px; margin-top: 4px; }
.form-note { margin: 14px 0 0; font-size: 12px; color: #8a8e92; }.form-status { min-height: 24px; margin-top: 8px; color: #278648; font-weight: 700; font-size: 14px; }

.site-footer { background: #151112; color: rgba(255,255,255,.63); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }.footer-grid h3 { margin: 0 0 15px; color: #fff; font-size: 16px; }.footer-grid a { display: block; margin: 8px 0; }.footer-grid a:hover { color: var(--brand); }.footer-brand strong { display: block; color: #fff; font-size: 26px; }.footer-brand span { color: var(--brand); font-weight: 800; }.footer-brand p { max-width: 310px; }
.footer-bottom { margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 30px; font-size: 13px; }.footer-bottom p { margin: 0; }.footer-bottom div { display: flex; gap: 18px; }
.mobile-contact-bar { display: none; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 300; transform: translate(-50%, 20px); padding: 10px 18px; border-radius: 8px; background: var(--ink); color: #fff; opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; box-shadow: var(--shadow); }.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .brand { width: 220px; }
  .primary-nav { gap: 16px; font-size: 14px; }
  .nav-quote { display: none; }
  .hero__grid { gap: 40px; }
  .hero h1 { font-size: 56px; }
}

@media (max-width: 900px) {
  body { padding-bottom: 62px; }
  .topbar__contact { display: none; }
  .topbar__inner { justify-content: center; text-align: center; }
  .nav-wrap { min-height: 70px; }
  .brand { width: 220px; }
  .menu-toggle { display: flex; }
  .primary-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a { padding: 11px 12px; }
  .primary-nav > a:not(.button)::after { display: none; }
  .nav-quote { display: flex; margin-top: 5px; }
  .hero { padding-top: 48px; }
  .hero__grid, .warehouse-layout, .platform-layout, .quote-layout { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__tags { justify-content: center; }
  .hero__media { max-width: 680px; margin: 10px auto 0; }
  .warehouse-placeholder { min-height: 450px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid, .advantage-grid, .gallery-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-layout, .quote-layout { gap: 42px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-contact-bar { display: grid; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; grid-template-columns: repeat(3, 1fr); height: 62px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 30px rgba(33,25,26,.08); }
  .mobile-contact-bar a, .mobile-contact-bar button { display: grid; place-items: center; border: 0; background: #fff; color: var(--ink); font-weight: 800; font-size: 14px; }
  .mobile-contact-bar > * + * { border-left: 1px solid var(--line); }
  .mobile-contact-bar a:last-child { background: var(--brand); color: #fff; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 64px 0; }
  .section--compact { padding: 26px 0 42px; }
  .brand { width: 190px; }
  .hero h1 { font-size: 40px; }
  .hero__lead { font-size: 16px; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero__tags { display: grid; grid-template-columns: 1fr 1fr; }
  .warehouse-placeholder { min-height: 360px; }
  .hero__badge { left: 14px; right: 14px; bottom: 18px; width: auto; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 12px; }
  .stat strong { font-size: 27px; }
  .service-grid, .advantage-grid, .gallery-grid, .news-grid { grid-template-columns: 1fr; }
  .section-heading { margin-bottom: 34px; }
  .section-heading--row { display: block; }
  .section-heading--row > p { margin-top: 12px; text-align: left; }
  .us-map-card { overflow-x: auto; }
  .us-map { min-width: 620px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid__full { grid-column: auto; }
  .quote-form { padding: 22px 18px; }
  .contact-card dl > div { display: block; }
  .contact-card dd { text-align: left; margin-top: 3px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { display: block; }
  .footer-bottom div { margin-top: 10px; }
}

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


/* 多页面简化版通用样式 */
.inner-hero { padding-top: 72px; background: radial-gradient(circle at 82% 18%, rgba(245,154,0,.13), transparent 28%), linear-gradient(180deg,#fff,#fafafa); }
.inner-hero__grid { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: center; }
.inner-hero h1 { margin: 0; color: var(--ink); font-size: clamp(42px,5vw,64px); line-height: 1.14; letter-spacing: -.035em; }
.inner-hero .reveal > p:not(.eyebrow) { max-width: 720px; margin: 24px 0 0; font-size: 18px; line-height: 1.9; }
.inner-hero__visual { min-height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-radius: 20px; background: linear-gradient(140deg,#21191a,#352b2d); box-shadow: var(--shadow); padding: 32px; }
.inner-hero__visual span { color: var(--brand); font-size: 14px; font-weight: 900; letter-spacing: .2em; }
.inner-hero__visual strong { color: #fff; font-size: 30px; margin-top: 14px; }
.inner-hero__visual small { color: rgba(255,255,255,.6); margin-top: 10px; letter-spacing: .08em; }
.detail-list { display: grid; gap: 18px; }
.detail-card { display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 34px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.detail-card > span { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 14px; background: rgba(245,154,0,.13); color: var(--brand-dark); font-size: 19px; font-weight: 900; }
.detail-card h2 { margin: 0; color: var(--ink); font-size: 27px; }
.detail-card p { margin: 12px 0 0; max-width: 900px; }
.check-list { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.check-list li { padding: 8px 12px 8px 28px; position: relative; border-radius: 999px; background: var(--muted); color: var(--ink); font-size: 13px; font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; left: 11px; color: var(--brand-dark); font-weight: 900; }
.text-link { display: inline-block; margin-top: 20px; color: var(--brand-dark); font-weight: 800; }
.simple-cta { padding: 46px 0; background: #21191a; color: rgba(255,255,255,.7); }
.simple-cta .container { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.simple-cta h2 { margin: 0; color: #fff; font-size: 30px; }.simple-cta p { margin: 8px 0 0; }
.warehouse-page-grid { display: grid; grid-template-columns: 1.28fr .72fr; gap: 38px; align-items: center; }
.warehouse-summary { padding: 34px; border-radius: 16px; background: var(--muted); }.warehouse-summary h2 { margin: 0; color: var(--ink); font-size: 30px; }.warehouse-summary p { margin: 14px 0 0; }
.warehouse-detail-grid { display: grid; gap: 24px; }
.warehouse-detail { display: grid; grid-template-columns: .7fr 1.3fr; gap: 38px; align-items: center; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.warehouse-detail h2 { margin: 0; color: var(--ink); font-size: 30px; }.warehouse-detail p:not(.eyebrow) { margin: 14px 0 0; }
.photo-placeholder.compact { aspect-ratio: 16/9; min-height: 230px; }
.platform-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-panel { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: 15px; }
.info-panel--wide { grid-column: 1/-1; }
.info-panel h2 { margin: 0; color: var(--ink); font-size: 30px; }.info-panel > p:not(.eyebrow) { margin: 13px 0 22px; }
.big-name-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.big-name-cloud span { min-width: 140px; padding: 16px 20px; border-radius: 10px; background: var(--muted); color: var(--ink); font-size: 16px; font-weight: 800; text-align: center; }
.big-name-cloud.featured span { background: rgba(245,154,0,.13); color: #a76100; border: 1px solid rgba(245,154,0,.25); }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; }
.about-grid h2 { margin: 0; color: var(--ink); font-size: 38px; }.about-grid p:not(.eyebrow) { font-size: 17px; line-height: 1.9; }
.about-values { display: grid; gap: 14px; }.about-values article { padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }.about-values strong { display: block; color: var(--brand); font-size: 27px; }.about-values span { display: block; margin-top: 5px; color: var(--ink); font-weight: 700; }
.article-list { display: grid; gap: 22px; }
.article-entry { padding: 36px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.article-entry > span { color: var(--brand-dark); font-size: 13px; font-weight: 900; }.article-entry h2 { margin: 13px 0; color: var(--ink); font-size: 30px; }.article-entry p { max-width: 940px; }
.contact-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.contact-option { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.contact-option > span { color: var(--brand-dark); font-size: 13px; font-weight: 900; }.contact-option h2 { margin: 10px 0 8px; color: var(--ink); font-size: 25px; overflow-wrap: anywhere; }.contact-option p { margin: 0; }
.dark-copy { color: var(--ink); font-size: inherit; font-weight: inherit; text-align: left; }.dark-copy em { color: var(--brand-dark); }
.legal-content { max-width: 900px; }.legal-content h2 { margin: 34px 0 10px; color: var(--ink); font-size: 25px; }.legal-content h2:first-child { margin-top: 0; }.legal-content p { line-height: 1.9; }
@media (max-width: 900px) {
  .inner-hero__grid,.warehouse-page-grid,.about-grid { grid-template-columns: 1fr; gap: 36px; }
  .inner-hero__visual { min-height: 240px; }
  .warehouse-detail { grid-template-columns: 1fr; }
  .platform-page-grid,.contact-options { grid-template-columns: 1fr; }
  .info-panel--wide { grid-column: auto; }
  .simple-cta .container { display: block; }.simple-cta .button { margin-top: 22px; }
}
@media (max-width: 620px) {
  .inner-hero { padding-top: 48px; }.inner-hero h1 { font-size: 38px; }.inner-hero .reveal > p:not(.eyebrow) { font-size: 16px; }
  .detail-card { grid-template-columns: 1fr; padding: 24px 20px; }.detail-card h2,.warehouse-detail h2,.article-entry h2 { font-size: 25px; }
  .check-list { display: grid; }.check-list li { border-radius: 8px; }
  .warehouse-detail,.info-panel,.article-entry,.contact-option { padding: 22px 18px; }
}

/* V3：真实邮箱询盘表单 */
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.quote-form button[type="submit"]:disabled { cursor: wait; opacity: .72; transform: none; }
.quote-form[aria-busy="true"] input,
.quote-form[aria-busy="true"] select,
.quote-form[aria-busy="true"] textarea { opacity: .82; }

/* V4：邮箱仅展示，不作为表单提交目标 */
.contact-static { display: inline-block; color: inherit; }
.site-footer .footer-grid .contact-static { display: block; margin: 8px 0; }
.privacy-check--notice { display: block; padding: 12px 14px; border-radius: 8px; background: rgba(245,154,0,.08); color: #5f6368; line-height: 1.65; }


/* V5：真实仓库照片 */
.warehouse-photo {
  position: relative;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  border-radius: 20px;
  background: #e5e7e9;
  box-shadow: var(--shadow);
}
.warehouse-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.20));
  pointer-events: none;
}
.warehouse-photo img,
.photo-card img,
.warehouse-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.warehouse-photo img { position: absolute; inset: 0; }
.photo-card {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #e5e7e9;
  border: 1px solid #d9dcdf;
  box-shadow: 0 12px 30px rgba(33,25,26,.08);
}
.photo-card img {
  position: absolute;
  inset: 0;
  transition: transform .45s ease;
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(24,20,21,.80));
  pointer-events: none;
}
.photo-card:hover img { transform: scale(1.035); }
.photo-card figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  color: #fff;
}
.photo-card strong { display: block; font-size: 19px; }
.photo-card small { display: block; margin-top: 2px; color: rgba(255,255,255,.76); }
.gallery-grid--three { grid-template-columns: repeat(3, 1fr); }
.warehouse-detail-photo {
  margin: 0;
  min-height: 230px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #e5e7e9;
  box-shadow: 0 10px 26px rgba(33,25,26,.08);
}
@media (max-width: 900px) {
  .warehouse-photo { min-height: 450px; }
  .gallery-grid--three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .warehouse-photo { min-height: 360px; }
  .gallery-grid--three { grid-template-columns: 1fr; }
  .photo-card { aspect-ratio: 16 / 11; }
}

/* V6：仓库视频与上线基础页面 */
.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.video-layout {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 56px;
  align-items: center;
}
.video-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.25;
}
.video-copy > p:not(.eyebrow) {
  margin: 18px 0 28px;
  line-height: 1.9;
}
.video-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #111;
  box-shadow: var(--shadow);
}
.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  object-fit: cover;
}
.video-card figcaption {
  padding: 12px 18px;
  background: #fff;
  color: var(--body);
  font-size: 13px;
  text-align: center;
}
.not-found {
  min-height: 66vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 20%, rgba(245,154,0,.14), transparent 34%), var(--muted);
}
.not-found__inner {
  max-width: 760px;
  text-align: center;
}
.not-found__inner > strong {
  display: block;
  color: var(--brand);
  font-size: clamp(84px, 15vw, 164px);
  line-height: .95;
  letter-spacing: -.06em;
}
.not-found__inner h1 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 54px);
}
.not-found__inner > p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
}
.not-found__inner .hero__actions {
  justify-content: center;
}
@media (max-width: 900px) {
  .video-layout { grid-template-columns: 1fr; gap: 32px; }
}
