/* ==========================================================================
   WENZHOU PUPULAN INTERNATIONAL TRADE CO., LTD.
   B2B Corporate Website — Global stylesheet
   Design tokens: #FFFFFF base / #2D2D2D ink / #1A365D matte navy / soft gold
   ========================================================================== */

:root {
  /* Palette */
  --white: #ffffff;
  --ink: #2d2d2d;
  --ink-soft: #5c5f63;
  --muted: #868c93;
  --navy: #1a365d;
  --navy-deep: #142a49;
  --navy-tint: #f2f5f9;
  --gold: #c0a062;
  --gold-soft: #dcc79b;
  --line: #e5e7ea;
  --line-soft: #eef0f2;
  --soft: #f7f8f9;

  /* Layout */
  --container: 1240px;
  --gutter: 32px;
  --header-h: 84px;
  --topbar-h: 38px;
  --header-total: calc(var(--header-h) + var(--topbar-h));
  --section-y: 118px;

  /* Motion — restrained */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.35s;

  /* Type */
  --font: "Inter", "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --radius: 2px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--navy); color: #fff; }

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section-y) 0; }
.section--soft { background: var(--soft); }
.section--tight { padding: 76px 0; }

.stack-sm > * + * { margin-top: 14px; }

.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 40px); }
.section-head p { margin-top: 18px; color: var(--ink-soft); font-size: 17px; }

.section-head--left { margin-left: 0; text-align: left; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.section-head .eyebrow::before { display: none; }

.rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 26px 0 0;
}
.section-head .rule { margin: 26px auto 0; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-deep); }

.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #ab8c4d; }

.btn--ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn--outline { border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--sm { height: 44px; padding: 0 24px; font-size: 13px; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.link-arrow svg { transition: transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.link-arrow::after {
  content: "";
  position: absolute;
}

/* --------------------------------------------------------------------------
   PLACEHOLDER IMAGES  (no real images — pure CSS blocks)
   -------------------------------------------------------------------------- */
.ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, #f4f5f7 0%, #e9ebef 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 26px,
    rgba(26, 54, 93, 0.045) 26px 27px
  );
}
.ph::after {
  content: attr(data-label);
  position: relative;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9aa2ab;
  text-align: center;
}
.ph > svg {
  position: relative;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  stroke: #b6bdc5;
  fill: none;
}

.ph--dark {
  background: linear-gradient(135deg, #1a365d 0%, #22456f 100%);
  border-color: transparent;
}
.ph--dark::before { background: repeating-linear-gradient(45deg, transparent 0 26px, rgba(255,255,255,0.05) 26px 27px); }
.ph--dark::after { color: rgba(255, 255, 255, 0.45); }

/* aspect ratios */
.ar-21-9 { aspect-ratio: 21 / 9; }
.ar-16-9 { aspect-ratio: 16 / 9; }
.ar-4-3  { aspect-ratio: 4 / 3; }
.ar-3-2  { aspect-ratio: 3 / 2; }
.ar-1-1  { aspect-ratio: 1 / 1; }
.ar-3-4  { aspect-ratio: 3 / 4; }
.ar-fill { height: 100%; min-height: 260px; }

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 6px 26px rgba(26, 54, 93, 0.07);
  border-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
  flex: none;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
}
.brand-mark span { color: var(--gold); }
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-cn {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.3;
  white-space: nowrap;
}
.brand-en {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-short { display: none; }

.nav { display: flex; align-items: center; gap: 40px; }
.nav a.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  transition: color var(--dur) var(--ease);
}
.nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.nav a.nav-link:hover { color: var(--navy); }
.nav a.nav-link:hover::after { width: 100%; }
.nav a.nav-link.is-active { color: var(--navy); }
.nav a.nav-link.is-active::after { width: 100%; background: var(--navy); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--navy);
  transition: transform var(--dur) var(--ease), opacity 0.2s linear;
}
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; }
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(6px); }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg); }
.nav-toggle.is-open span::after { transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: var(--header-total);
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
/* dark scrim is painted inside the placeholder so its label stays legible */
.hero-media::before {
  background: linear-gradient(
    100deg,
    rgba(20, 42, 73, 0.94) 0%,
    rgba(26, 54, 93, 0.80) 48%,
    rgba(26, 54, 93, 0.52) 100%
  );
}
.hero-media::after { color: rgba(255, 255, 255, 0.5); }
.hero-content { position: relative; z-index: 2; padding: 110px 0 120px; }
.hero h1 {
  max-width: 15ch;
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.hero .hero-sub {
  max-width: 60ch;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 42px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 66px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-meta div span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero-meta div strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* --------------------------------------------------------------------------
   Page header (inner pages)
   -------------------------------------------------------------------------- */
.page-head {
  padding: calc(var(--header-total) + 84px) 0 84px;
  background: var(--navy-tint);
  border-bottom: 1px solid var(--line-soft);
}
.page-head h1 { font-size: clamp(30px, 4vw, 50px); }
.page-head p { margin-top: 16px; max-width: 62ch; color: var(--ink-soft); font-size: 17px; }
.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb a:hover { color: var(--navy); }

/* --------------------------------------------------------------------------
   Split intro
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}
.split h2 { font-size: clamp(26px, 2.8vw, 36px); margin-bottom: 24px; }
.split p { color: var(--ink-soft); }
.split--reverse .split-media { order: -1; }

.lead-quote {
  margin: 28px 0 34px;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Category cards (5 equal)
   -------------------------------------------------------------------------- */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
  box-shadow: 0 14px 34px rgba(26, 54, 93, 0.09);
}
.cat-card .ph { border: 0; border-bottom: 1px solid var(--line); transition: opacity var(--dur) var(--ease); }
.cat-card:hover .ph { background: linear-gradient(135deg, #eef1f5 0%, #dfe4ea 100%); }
.cat-body { padding: 24px 22px 28px; }
.cat-body h3 { font-size: 18px; }
.cat-body .cat-cn {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.cat-body p { margin-top: 14px; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.cat-index {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Advantage / feature modules
   -------------------------------------------------------------------------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature {
  padding: 40px 30px 38px;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.feature:hover { border-color: var(--navy); box-shadow: 0 12px 30px rgba(26, 54, 93, 0.07); }
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  color: var(--navy);
}
.feature-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.3; }
.feature h3 { font-size: 17px; }
.feature .feature-cn {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--gold);
}
.feature p { margin-top: 14px; font-size: 14.5px; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Client logo strip
   -------------------------------------------------------------------------- */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.logo-strip > div {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 18px;
  background: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aeb5bd;
  transition: color var(--dur) var(--ease);
}
.logo-strip > div:hover { color: var(--navy); }

/* --------------------------------------------------------------------------
   News cards
   -------------------------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.news-card:hover {
  transform: translateY(-6px);
  border-color: var(--navy);
  box-shadow: 0 18px 40px rgba(26, 54, 93, 0.1);
}
.news-card .ph { border: 0; border-bottom: 1px solid var(--line); }
.news-body { display: flex; flex-direction: column; flex: 1; padding: 28px 28px 30px; }
.news-date {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.news-body h3 { margin-top: 12px; font-size: 19px; line-height: 1.4; }
.news-body p { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); }
.news-foot { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-soft); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 64px; }
.pagination a,
.pagination span {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  transition: all var(--dur) var(--ease);
}
.pagination a:hover { border-color: var(--navy); color: var(--navy); }
.pagination .is-current { background: var(--navy); border-color: var(--navy); color: #fff; }

/* --------------------------------------------------------------------------
   Service list blocks
   -------------------------------------------------------------------------- */
.svc-row {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line-soft);
}
.svc-row:first-child { border-top: 0; padding-top: 0; }
.svc-row--flip .svc-media { order: 2; }
.svc-row h3 { font-size: clamp(22px, 2.2vw, 28px); }
.svc-row .svc-cn {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.svc-row p { margin-top: 18px; color: var(--ink-soft); max-width: 60ch; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag {
  padding: 6px 14px;
  border: 1px solid var(--line);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { padding: 92px 0; background: var(--soft); border-top: 1px solid var(--line-soft); }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(24px, 2.6vw, 34px); }
.cta-inner p { margin-top: 12px; color: var(--ink-soft); }

.cta-panel {
  padding: 80px 60px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-panel h2 { color: #fff; font-size: clamp(24px, 2.6vw, 34px); }
.cta-panel p { margin-top: 12px; color: rgba(255, 255, 255, 0.75); }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-card { padding: 48px 46px; border: 1px solid var(--line); background: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.08);
}
.field .hint { margin-top: 8px; font-size: 12.5px; color: var(--muted); }
.field input[type="file"] { padding: 11px 14px; font-size: 14px; color: var(--ink-soft); }
.field input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  background: var(--navy-tint);
  font: inherit;
  font-size: 13px;
  color: var(--navy);
  cursor: pointer;
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #c0563f; }

.form-note { margin-top: 18px; font-size: 13px; color: var(--muted); }
.form-alert {
  display: none;
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 2px solid var(--gold);
  background: var(--navy-tint);
  font-size: 14.5px;
  color: var(--navy);
}
.form-alert.is-visible { display: block; }

.info-card { padding: 44px 40px; background: var(--navy-tint); border: 1px solid var(--line-soft); }
.info-card h3 { font-size: 18px; margin-bottom: 8px; }
.info-list { margin-top: 30px; }
.info-item { padding: 22px 0; border-top: 1px solid rgba(26, 54, 93, 0.12); }
.info-item:first-child { border-top: 0; padding-top: 0; }
.info-item dt {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.info-item dd { margin: 8px 0 0; font-size: 15px; color: var(--ink); line-height: 1.7; }
.info-item dd a:hover { color: var(--navy); text-decoration: underline; }
.placeholder-val { color: var(--muted); }

.map-frame { margin-top: 90px; }

/* --------------------------------------------------------------------------
   About page extras
   -------------------------------------------------------------------------- */
.scope-block {
  padding: 56px 60px;
  background: var(--navy-tint);
  border-left: 3px solid var(--gold);
}
.scope-block h3 { font-size: 20px; margin-bottom: 16px; }
.scope-block p { color: var(--ink-soft); max-width: 78ch; }
.scope-block .cn { margin-top: 14px; font-size: 14.5px; color: var(--muted); }

.vision {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.vision .quote {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
}
.vision .cn { margin-top: 22px; font-size: 15px; color: var(--ink-soft); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.stat-strip > div { background: #fff; padding: 38px 26px; text-align: center; }
.stat-strip strong {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-strip span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.72); }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 84px 0 64px;
}
.footer-brand .brand-mark { background: #fff; color: var(--navy); }
.footer-brand .brand-cn { color: #fff; }
.footer-brand .brand-en { color: rgba(255, 255, 255, 0.55); }
.footer-brand p { margin-top: 24px; font-size: 14.5px; line-height: 1.8; max-width: 40ch; }

.footer-col h4 {
  margin-bottom: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; font-size: 14.5px; }
.footer-col li a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: 14.5px; line-height: 1.9; }
.footer-col .placeholder-val { color: rgba(255, 255, 255, 0.45); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   Reveal animation (subtle, respects reduced motion)
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   Why Pupulan 手风琴卡（首页 ADVANTAGES，2026-09-20 客户参考图指定）
   stable 态 = 深色圆角卡（仅图标+标题），悬停卡展宽转浅色（白底）露出描述。
   窄态下描述用 opacity 隐藏而非 display:none，宽度动画才平滑；
   .why-body 固定排版宽度，展宽过程中文字不回流，由卡片裁切逐渐露出。
   注意：本组选择器特意带 .why-acc 前缀且放在 .reveal.is-in 之后——
   同特异性下后来者赢，卡片自身的 flex-grow 动画才不会被入场动画的
   transition 声明覆盖。≤1080px 在下方 Responsive 区退化回网格布局。
   -------------------------------------------------------------------------- */
.why-acc { display: flex; gap: 20px; align-items: stretch; }
.why-acc .why-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  padding: 34px 26px 38px;
  background: var(--navy-deep);
  border: 1px solid var(--navy-deep);
  border-radius: 14px;
  transition: flex-grow 0.55s var(--ease), background-color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
    opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.why-acc .why-card:hover,
.why-acc .why-card:focus-within {
  flex-grow: 1.9;
  background: #fff;
  border-color: var(--navy);
  box-shadow: 0 12px 30px rgba(26, 54, 93, 0.07);
}
.why-body { width: 320px; }
.why-acc .why-card h3 { font-size: 17px; color: #fff; transition: color var(--dur) var(--ease); }
.why-acc .why-card:hover h3,
.why-acc .why-card:focus-within h3 { color: var(--navy); }
/* 图标颜色随深浅态切换：深色卡上金、浅色卡上藏青（边框/尺寸走 wp-compat.css） */
.why-acc .why-card .feature-icon { color: var(--gold-soft); transition: color var(--dur) var(--ease); }
.why-acc .why-card:hover .feature-icon,
.why-acc .why-card:focus-within .feature-icon { color: var(--navy); }
.why-acc .why-card p {
  margin: 14px 0 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  transition-delay: 0.12s;
}
.why-acc .why-card:hover p,
.why-acc .why-card:focus-within p { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  :root { --section-y: 92px; --gutter: 28px; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  /* 手风琴卡退化：窄屏放下展宽交互，回常规网格、描述常显（卡片保持深色态） */
  .why-acc { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .why-acc .why-card { overflow: visible; }
  .why-body { width: auto; }
  .why-acc .why-card p { opacity: 1; transform: none; transition: none; color: rgba(255, 255, 255, 0.78); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-row { grid-template-columns: 1fr; gap: 36px; }
  .svc-row--flip .svc-media { order: 0; }
  .split { gap: 48px; }
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; --topbar-h: 0px; --section-y: 76px; }
  .topbar { display: none; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 26px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(26, 54, 93, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease),
      visibility var(--dur) var(--ease);
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav a.nav-link { padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
  .nav .btn { margin-top: 20px; width: 100%; }
  .nav-toggle { display: inline-flex; }

  .brand-en { display: none; }
  .brand-short {
    display: block;
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .hero { min-height: 0; }
  .hero-content { padding: 74px 0 84px; }
  .hero h1 { max-width: none; }
  .hero-meta { gap: 26px; margin-top: 48px; }

  .grid-5, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 34px 26px; }
  .info-card { padding: 34px 26px; }
  .scope-block { padding: 36px 28px; }
  .cta-panel { padding: 52px 30px; }
  .page-head { padding: calc(var(--header-h) + 56px) 0 60px; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .grid-5, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .why-acc { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 60px 0 44px; }
  .logo-strip { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 1 1 100%; }
  .brand-cn { font-size: 13.5px; white-space: normal; }
}

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.topbar {
  height: var(--topbar-h);
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}
.topbar-contact { display: flex; align-items: center; gap: 26px; }
.topbar-contact span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar-contact svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex: none; }
.topbar-contact a:hover { color: #fff; }
.topbar-contact .ph-val { color: rgba(255, 255, 255, 0.45); }
.topbar-hours { letter-spacing: 0.02em; white-space: nowrap; }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.fab-wa {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(26, 54, 93, 0.28);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.fab-wa:hover { background: var(--gold); transform: translateY(-2px); }
.fab-wa svg { width: 26px; height: 26px; fill: currentColor; }
.fab-wa .fab-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 14px;
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.fab-wa:hover .fab-tip { opacity: 1; }

/* ==========================================================================
   Cookie consent bar
   ========================================================================== */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(26, 54, 93, 0.1);
}
.cookie-bar[hidden] { display: none; }
body.has-cookie-bar { padding-bottom: 96px; }
body.has-cookie-bar .fab-wa { bottom: 122px; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 0;
}
.cookie-inner p { margin: 0; font-size: 13.5px; color: var(--ink-soft); max-width: 76ch; }
.cookie-inner a { color: var(--navy); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex: none; }

/* ==========================================================================
   Company facts table
   ========================================================================== */
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.facts-table { width: 100%; border-collapse: collapse; }
.facts-table th,
.facts-table td {
  padding: 18px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.facts-table th {
  width: 42%;
  padding-right: 20px;
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.facts-table td { color: var(--ink); }
.facts-table tr:last-child th,
.facts-table tr:last-child td { border-bottom: 0; }
.ph-val { color: var(--muted); font-style: italic; }

/* Certificate / document placeholders */
.doc-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.doc-item { text-align: center; }
.doc-item .ph { border: 1px solid var(--line); }
.doc-item span {
  display: block;
  margin-top: 12px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ==========================================================================
   Process timeline
   ========================================================================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}
.timeline--3 { grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }
.tl-step { position: relative; padding-top: 44px; border-top: 2px solid var(--line); }
.tl-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -13px;
  left: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
.tl-step h4 { font-size: 16px; margin-bottom: 8px; }
.tl-step .tl-cn { display: block; margin-bottom: 10px; font-size: 12.5px; color: var(--gold); }
.tl-step p { font-size: 14px; color: var(--ink-soft); }

/* ==========================================================================
   RFQ checklist
   ========================================================================== */
.rfq-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.rfq-panel h2 { font-size: clamp(24px, 2.6vw, 34px); }
.rfq-panel .lead { margin-top: 18px; color: var(--ink-soft); }
.rfq-list { list-style: none; margin: 0; padding: 0; }
.rfq-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
}
.rfq-list li:first-child { padding-top: 0; }
.rfq-list .n {
  flex: none;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
}
.rfq-list strong { font-weight: 500; color: #fff; }
.rfq-list em { font-style: normal; color: rgba(255, 255, 255, 0.65); font-size: 13.5px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); padding: 26px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 17px; margin-bottom: 10px; }
.faq-item p { font-size: 14.5px; color: var(--ink-soft); max-width: 78ch; }

/* ==========================================================================
   Footer legal links
   ========================================================================== */
.footer-legal { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-legal a:hover { color: #fff; }
.footer-legal button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
}
.footer-legal button:hover { color: #fff; }
.footer-legal .sep { color: rgba(255, 255, 255, 0.28); }

/* ==========================================================================
   Legal / policy article
   ========================================================================== */
.legal-body { max-width: 820px; }
.legal-body h2 { font-size: 22px; margin: 46px 0 16px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 17px; margin: 30px 0 10px; }
.legal-body p,
.legal-body li { font-size: 15px; color: var(--ink-soft); }
.legal-body ul { margin: 0 0 1.1em; padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-meta { font-size: 13px; color: var(--muted); }

@media (max-width: 1080px) {
  .facts-grid { grid-template-columns: 1fr; gap: 0; }
  .doc-strip { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .rfq-panel { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 18px 0; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
  .fab-wa { right: 18px; bottom: 18px; width: 50px; height: 50px; }
  .fab-wa .fab-tip { display: none; }
  body.has-cookie-bar { padding-bottom: 176px; }
  body.has-cookie-bar .fab-wa { bottom: 196px; }
}

@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; gap: 22px; }
  .doc-strip { grid-template-columns: 1fr 1fr; }
  .facts-table th { width: 46%; }
}
