/* =========================================================
   DAER 达尔新型材料 — Corporate Website Redesign
   Brand palette derived from official site primary #0C77BB
   ========================================================= */
:root {
  --blue: #0C77BB;
  --blue-deep: #075A8C;
  --blue-dark: #0A2A43;
  --navy: #07203A;
  --cyan: #2EA8E0;
  --cyan-light: #E3F2FC;
  --green: #2FA97C;
  --ink: #17242F;
  --gray: #5A6B78;
  --line: #E3EBF2;
  --bg: #F5F9FC;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 10px rgba(10, 42, 67, .07);
  --shadow-md: 0 10px 30px rgba(10, 42, 67, .10);
  --shadow-lg: 0 24px 60px rgba(10, 42, 67, .16);
  --radius: 14px;
  --radius-lg: 20px;
  --font: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  --trans: .35s cubic-bezier(.4, 0, .2, 1);

  /* ---- Compat aliases: referenced by newer components, previously UNDEFINED (styles silently dropped) ---- */
  --brand: #0C77BB;
  --brand-dark: #075A8C;
  --brand-soft: #E3F2FC;
  --bg-soft: #F5F9FC;
  --text-2: #5A6B78;
  --text-3: #8B9AA5;
  --shadow: 0 10px 30px rgba(10, 42, 67, .10);
  --font-display: var(--font);

  /* ---- Texture tokens: gradients / glows / elevation ---- */
  --grad-brand: linear-gradient(135deg, #0C77BB 0%, #2EA8E0 100%);
  --grad-brand-soft: linear-gradient(135deg, #EAF5FD 0%, #F7FBFE 100%);
  --grad-deep: linear-gradient(160deg, #07203A 0%, #0A2A43 52%, #0B3E63 100%);
  --grad-cta: linear-gradient(115deg, #0C77BB 0%, #075A8C 55%, #0A2A43 100%);
  --grad-text: linear-gradient(160deg, #0C77BB 0%, #2EA8E0 100%);
  --glow-blue: 0 14px 38px rgba(12, 119, 187, .26);
  --glow-cyan: 0 14px 38px rgba(46, 168, 224, .26);
  --radius-xl: 26px;
  --ease-out: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--trans); }
ul { list-style: none; }
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- Topbar ---------- */
.topbar { background: var(--navy); color: rgba(255,255,255,.82); font-size: 13px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 16px; }
.topbar-group { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-item .icon { font-size: 15px; color: var(--cyan); }
.topbar a:hover { color: #fff; }
.lang-switch { display: flex; align-items: center; gap: 2px; background: rgba(255,255,255,.08); border-radius: 99px; padding: 3px; }
.lang-switch a { padding: 2px 11px; border-radius: 99px; font-size: 12px; color: rgba(255,255,255,.75); transition: all var(--trans); white-space: nowrap; }
.lang-switch a:hover { color: #fff; }
.lang-switch a.active { background: var(--blue); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--trans), border-color var(--trans);
}
.site-header.scrolled { box-shadow: var(--shadow-md); border-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 84px; transition: height var(--trans); }
.site-header.scrolled .header-inner { height: 68px; }

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { height: 46px; width: auto; transition: height var(--trans); display: block; }
.site-header.scrolled .brand img { height: 40px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative; padding: 10px 16px; font-size: 15.5px; font-weight: 500; color: var(--ink);
  border-radius: 8px; white-space: nowrap;
}
.main-nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--blue); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--grad-brand); color: #fff; padding: 11px 22px; border-radius: 99px; font-size: 14.5px; font-weight: 600; box-shadow: 0 8px 22px rgba(12,119,187,.34); transition: all var(--trans); white-space: nowrap; }
.header-cta:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 12px 28px rgba(12,119,187,.44); color: #fff; }
.header-cta .icon { font-size: 17px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--trans); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; height: min(92vh, 860px); min-height: 560px; overflow: hidden; background: var(--navy); }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s ease, visibility 1.1s; }
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide::before {
  content: ""; position: absolute; inset: -60px;
  background-size: cover; background-position: center;
  /* Banners ship with baked-in Chinese headlines across the upper 2/3. Dim them
     so the localised copy we lay over the bottom third stays dominant. */
  filter: brightness(.74) saturate(1.06);
}
/* Slide 1 banner (polyurea spray photo): no baked-in headline art, so keep it
   brighter than the old slide set — the scrim alone carries text contrast. */
.hero-slide:nth-of-type(1)::before { background-image: url('../img/banner-polyurea.jpg'); filter: brightness(.88) saturate(1.05); }
.hero-slide:nth-of-type(2)::before { background-image: url('../img/banner-marine.jpg'); }
.hero-slide.is-active::before { animation: kenburns 14s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
/* Bottom scrim: opaque under the copy, feathering out so the banner art still reads */
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(5,21,40,.95) 0%,
      rgba(6,27,50,.93) 16%,
      rgba(7,32,58,.88) 32%,
      rgba(7,32,58,.80) 48%,
      rgba(7,32,58,.66) 62%,
      rgba(7,32,58,.46) 78%,
      rgba(7,32,58,.30) 92%,
      rgba(8,36,64,.22) 100%),
    linear-gradient(102deg, rgba(5,21,40,.52) 0%, rgba(6,28,52,.22) 46%, transparent 78%),
    radial-gradient(1100px 620px at 4% 96%, rgba(12,119,187,.30), transparent 66%);
}
.hero-content {
  position: relative; z-index: 3; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; padding-bottom: 134px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 9px; width: fit-content;
  padding: 8px 18px; border: 1px solid rgba(255,255,255,.34); border-radius: 99px;
  font-size: 13.5px; letter-spacing: 2px;
  background: linear-gradient(120deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 26px rgba(7,32,58,.28), inset 0 1px 0 rgba(255,255,255,.22);
  margin-bottom: 22px;
  opacity: 0; transform: translateY(24px); animation: rise .8s .25s forwards;
}
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(46,168,224,.25); }
.hero-content h1, .hero-content h2 {
  font-size: clamp(1.95rem, 4.3vw, 3.5rem); font-weight: 800;
  line-height: 1.18; letter-spacing: -.005em; max-width: 880px;
  text-shadow: 0 6px 36px rgba(0,0,0,.45);
  opacity: 0; transform: translateY(30px); animation: rise .85s .4s forwards;
}
.hero-content p {
  font-size: clamp(1rem, 1.35vw, 1.18rem); color: rgba(255,255,255,.88);
  max-width: 640px; margin-top: 16px; line-height: 1.75;
  opacity: 0; transform: translateY(30px); animation: rise .85s .55s forwards;
}
.hero-cta { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; opacity: 0; transform: translateY(30px); animation: rise .85s .7s forwards; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 99px; font-size: 15.5px; font-weight: 600; transition: all var(--trans); cursor: pointer; border: 0; }
.btn .icon { font-size: 18px; transition: transform var(--trans); }
.btn:hover .icon { transform: translateX(4px); }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--glow-blue); }
.btn-primary:hover { transform: translateY(-3px); filter: brightness(1.07) saturate(1.06); box-shadow: 0 18px 42px rgba(12,119,187,.4); color: #fff; }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; color: #fff; transform: translateY(-3px); }

.hero-nav { position: absolute; z-index: 5; bottom: 56px; left: 0; right: 0; }
.hero-nav-inner { display: flex; align-items: center; gap: 22px; }
.hero-dots { display: flex; gap: 10px; }
.hero-dots button { width: 34px; height: 4px; border: 0; border-radius: 4px; background: rgba(255,255,255,.32); cursor: pointer; position: relative; overflow: hidden; transition: background var(--trans); }
.hero-dots button::after { content: ""; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.hero-dots button.active { background: rgba(255,255,255,.32); }
.hero-dots button.active::after { animation: dotfill 6s linear forwards; }
@keyframes dotfill { to { transform: scaleX(1); } }
.hero-arrows { display: flex; gap: 10px; margin-left: auto; }
.hero-arrows button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.10); color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: all var(--trans); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(7,32,58,.24), inset 0 1px 0 rgba(255,255,255,.18);
}
.hero-arrows button:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--glow-blue); }
.hero-arrows .icon { font-size: 19px; }

/* ---------- Stats strip ---------- */
.stats { position: relative; z-index: 10; margin-top: -74px; }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.stat-card {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFDFF 100%);
  border-radius: var(--radius); padding: 28px 18px 24px; text-align: center;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
  opacity: 0; transform: translateY(26px);
}
.stat-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--grad-brand); transform: scaleX(0); transition: transform .45s var(--ease-out);
}
.stat-card.in { opacity: 1; transform: none; transition: opacity .7s var(--i, 0s) ease, transform .7s var(--i, 0s) ease, box-shadow .4s var(--ease-out), border-color .4s var(--ease-out); }
.stat-card.in::before { transition: transform .45s var(--i, 0s) var(--ease-out); }
.stat-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(12,119,187,.28); }
.stat-card:hover::before { transform: scaleX(1); }
.stat-num {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem); font-weight: 800; line-height: 1.15;
  font-variant-numeric: tabular-nums; letter-spacing: -.02em;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-num small { font-size: .55em; font-weight: 700; margin-left: 2px; }
.stat-label { margin-top: 6px; font-size: 13.5px; color: var(--gray); }

/* ---------- Sections ---------- */
.section { position: relative; padding: 100px 0; }
.section-alt {
  background:
    radial-gradient(1100px 540px at 10% -10%, rgba(12,119,187,.065), transparent 62%),
    radial-gradient(900px 480px at 94% 112%, rgba(46,168,224,.06), transparent 58%),
    var(--bg);
}
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-size: 13.5px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px;
}
.section-tag::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px; opacity: .75;
  background: linear-gradient(90deg, transparent, var(--blue));
}
.section-tag::after {
  content: ""; width: 26px; height: 2px; border-radius: 2px; opacity: .75;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.3; letter-spacing: -.015em; }
.section-head h2::after {
  content: ""; display: block; width: 54px; height: 4px; margin: 20px auto 0;
  border-radius: 4px; background: var(--grad-brand);
}
.section-head p { color: var(--gray); margin-top: 14px; font-size: 16px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media .img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 16/11.4; object-fit: cover; width: 100%; }
.about-media .img-sub {
  position: absolute; right: -8%; bottom: -14%; width: 46%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 6px solid #fff; aspect-ratio: 1; object-fit: cover;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.exp-badge {
  position: absolute; top: -26px; left: -20px; background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; border-radius: var(--radius); padding: 18px 22px; box-shadow: 0 14px 34px rgba(12,119,187,.4);
  animation: float 7s .8s ease-in-out infinite;
}
.exp-badge b { display: block; font-size: 30px; font-weight: 800; line-height: 1.1; }
.exp-badge span { font-size: 13px; opacity: .92; }
.about-copy .section-tag { margin-bottom: 12px; }
.about-copy h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); font-weight: 800; line-height: 1.35; margin-bottom: 18px; }
.about-copy p { color: var(--gray); margin-bottom: 14px; }
.feature-list { margin: 26px 0 30px; display: grid; gap: 16px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0;
  background: var(--cyan-light); color: var(--blue); font-size: 25px; transition: all var(--trans);
}
.feature-item:hover .feature-icon { background: var(--blue); color: #fff; transform: rotate(-6deg) scale(1.06); }
.feature-item h4 { font-size: 16.5px; font-weight: 700; }
.feature-item p { font-size: 14px; color: var(--gray); margin: 3px 0 0; }

/* ---------- Products ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod-card {
  position: relative;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
  display: flex; flex-direction: column;
}
.prod-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; z-index: 4;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.prod-card:hover::before { transform: scaleX(1); }
.prod-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg), var(--glow-blue); border-color: rgba(12,119,187,.22); }
.prod-media { position: relative; overflow: hidden; aspect-ratio: 16/9.4; }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.prod-card:hover .prod-media img { transform: scale(1.08); }
.prod-media::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46%; z-index: 1;
  background: linear-gradient(to top, rgba(7,32,58,.34), transparent);
  opacity: 0; transition: opacity .45s var(--ease-out);
}
.prod-card:hover .prod-media::after { opacity: 1; }
.prod-chip {
  position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(255,255,255,.94); color: var(--blue);
  border-radius: 99px; width: 44px; height: 44px; display: grid; place-items: center; font-size: 22px;
  box-shadow: var(--shadow-md); backdrop-filter: blur(6px);
  transition: transform .45s var(--ease-out);
}
.prod-card:hover .prod-chip { transform: scale(1.08) rotate(-6deg); }
.prod-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.prod-body h3 { font-size: 19px; font-weight: 700; line-height: 1.4; letter-spacing: -.01em; }
.prod-body h3 em { font-style: normal; color: var(--blue); font-size: 13px; display: block; letter-spacing: 1px; margin-bottom: 5px; font-weight: 600; }
.prod-body p { color: var(--gray); font-size: 14.5px; margin-top: 10px; flex: 1; }
.prod-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 600; font-size: 14.5px; }
.prod-link .icon { transition: transform var(--trans); }
.prod-card:hover .prod-link .icon { transform: translateX(5px); }

/* ---------- Strength (dark) ---------- */
.strength { background: linear-gradient(160deg, var(--navy) 0%, var(--blue-dark) 55%, #0B3E63 100%); color: #fff; position: relative; overflow: hidden; }
.strength::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(46,168,224,.14) 1px, transparent 1.6px); background-size: 26px 26px;
}
.strength .section-tag { color: var(--cyan); }
.strength .section-tag::before { background: linear-gradient(90deg, transparent, var(--cyan)); }
.strength .section-tag::after { background: linear-gradient(90deg, var(--cyan), transparent); }
.strength .section-head h2::after { background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.strength .section-head p { color: rgba(255,255,255,.68); }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.cert-card {
  display: flex; gap: 18px; align-items: center; padding: 26px 24px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  transition: all var(--trans); backdrop-filter: blur(6px);
}
.cert-card:hover { background: rgba(46,168,224,.14); border-color: rgba(46,168,224,.5); transform: translateY(-5px); }
.cert-icon { width: 58px; height: 58px; flex-shrink: 0; border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--cyan)); display: grid; place-items: center; font-size: 28px; color: #fff; box-shadow: 0 8px 20px rgba(12,119,187,.45); }
.cert-card h4 { font-size: 17px; font-weight: 700; }
.cert-card p { font-size: 13px; color: rgba(255,255,255,.62); margin-top: 3px; }
.patent-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; position: relative; }
.patent-cell { text-align: center; padding: 26px 10px; border: 1px dashed rgba(255,255,255,.22); border-radius: var(--radius); transition: all var(--trans); }
.patent-cell:hover { border-color: var(--cyan); background: rgba(46,168,224,.08); }
.patent-cell b { display: block; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; background: linear-gradient(180deg, #fff, #8FD4FF); -webkit-background-clip: text; background-clip: text; color: transparent; font-variant-numeric: tabular-nums; }
.patent-cell b small { font-size: .5em; }
.patent-cell span { font-size: 13.5px; color: rgba(255,255,255,.66); }

/* ---------- Applications ---------- */
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.app-card {
  position: relative; padding: 34px 30px; border-radius: var(--radius-lg); background: #fff;
  border: 1px solid var(--line); overflow: hidden; transition: all var(--trans);
}
.app-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--blue), var(--cyan)); opacity: 0; transition: opacity var(--trans); }
.app-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.app-card:hover::before { opacity: 1; }
.app-card > * { position: relative; }
.app-icon { width: 62px; height: 62px; border-radius: 16px; background: var(--cyan-light); color: var(--blue); display: grid; place-items: center; font-size: 30px; margin-bottom: 18px; transition: all var(--trans); }
.app-card:hover .app-icon { background: rgba(255,255,255,.18); color: #fff; }
.app-card h4 { font-size: 17.5px; font-weight: 700; transition: color var(--trans); }
.app-card p { font-size: 14px; color: var(--gray); margin-top: 8px; transition: color var(--trans); }
.app-card:hover h4 { color: #fff; }
.app-card:hover p { color: rgba(255,255,255,.82); }

/* ---------- Marquee ---------- */
.marquee-section { padding: 40px 0 90px; background: var(--bg); overflow: hidden; }
.marquee { display: flex; gap: 14px; width: max-content; animation: scrollx 30s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.marquee-chip {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 99px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFDFF 100%);
  border: 1px solid var(--line); font-weight: 600; font-size: 15px; color: var(--blue-dark);
  box-shadow: 0 4px 14px rgba(10,42,67,.06); white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.marquee-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.marquee-chip .icon { color: var(--blue); font-size: 19px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .4s var(--ease-out); }
.faq-item:hover { border-color: rgba(12,119,187,.3); box-shadow: var(--shadow-sm); }
.faq-item.open { box-shadow: var(--shadow-md), var(--glow-blue); border-color: rgba(12,119,187,.4); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; gap: 16px; padding: 21px 24px; font-size: 16.5px; font-weight: 600; color: var(--ink); font-family: inherit;
}
.faq-q .faq-badge { width: 34px; height: 34px; border-radius: 10px; background: var(--cyan-light); color: var(--blue); display: grid; place-items: center; font-weight: 800; font-size: 14.5px; flex-shrink: 0; transition: all var(--trans); }
.faq-item.open .faq-badge { background: var(--blue); color: #fff; }
.faq-q .faq-x { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gray); transition: all var(--trans); flex-shrink: 0; }
.faq-item.open .faq-x { transform: rotate(45deg); background: var(--blue); border-color: var(--blue); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.4,0,.2,1); }
.faq-a p { padding: 0 24px 22px 74px; color: var(--gray); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: 78px 0; background: var(--grad-cta); color: #fff; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; right: -140px; top: -140px; width: 440px; height: 440px; border-radius: 50%;
  border: 70px solid rgba(255,255,255,.07);
  animation: ctadrift 16s ease-in-out infinite alternate;
}
.cta-band::after {
  content: ""; position: absolute; right: 60px; bottom: -190px; width: 340px; height: 340px; border-radius: 50%;
  border: 54px solid rgba(255,255,255,.05);
  animation: ctadrift 20s ease-in-out infinite alternate-reverse;
}
@keyframes ctadrift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-26px,22px,0) scale(1.07); } }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-inner h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 800; }
.cta-inner p { opacity: .85; margin-top: 8px; }
.cta-band .btn-white { background: #fff; color: var(--blue); box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.cta-band .btn-white:hover { transform: translateY(-3px); color: var(--blue-deep); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFDFE 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 34px;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
  position: relative; overflow: hidden;
}
.contact-card::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-text); }
.contact-card:hover { box-shadow: var(--shadow-lg), var(--glow-blue); transform: translateY(-6px); border-color: rgba(12,119,187,.25); }
.contact-card .co-type { font-size: 12.5px; letter-spacing: 2px; color: var(--blue); font-weight: 700; text-transform: uppercase; }
.contact-card h3 { font-size: 21px; font-weight: 800; margin: 8px 0 18px; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; padding: 9px 0; color: var(--gray); font-size: 15px; }
.contact-line .icon { color: var(--blue); font-size: 19px; margin-top: 4px; }
.contact-line a { font-weight: 600; color: var(--ink); }
.contact-line a:hover { color: var(--blue); }
.contact-line small { display: block; font-size: 12.5px; color: #8b9aa5; }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--grad-deep); color: rgba(255,255,255,.72); font-size: 14.5px; }
.site-footer::before {
  content: ""; position: absolute; inset: 0; opacity: .45; pointer-events: none;
  background-image: radial-gradient(rgba(46,168,224,.14) 1px, transparent 1.6px); background-size: 26px 26px;
}
.site-footer::after {
  content: ""; position: absolute; left: 50%; top: -300px; width: 960px; height: 560px;
  transform: translateX(-50%); border-radius: 50%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(12,119,187,.30), transparent 72%);
}
.site-footer .container { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding: 70px 0 50px; }
.footer-brand svg { height: 48px; width: auto; }
.footer-brand p { margin-top: 18px; line-height: 1.8; font-size: 14px; }
.footer-col h5 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--cyan); border-radius: 2px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a:hover { color: var(--cyan); }
.footer-col .contact-line { padding: 5px 0; font-size: 13.5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--cyan); }

/* ---------- Floating ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 30px; z-index: 800; width: 50px; height: 50px; border-radius: 50%;
  background: var(--blue); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center;
  font-size: 20px; box-shadow: 0 10px 26px rgba(12,119,187,.42); opacity: 0; visibility: hidden;
  transform: translateY(16px); transition: all var(--trans);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--blue-deep); transform: translateY(-4px); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.25,1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .stat-card { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-slide::before { animation: none; }
  .about-media .img-sub, .exp-badge { animation: none; }
}

/* ---------- Responsive / H5 ---------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 14px 5%;
    box-shadow: 0 24px 40px rgba(10,42,67,.14); border-top: 1px solid var(--line);
    animation: navdrop .3s ease;
  }
  @keyframes navdrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
  .main-nav.open a { padding: 13px 12px; border-radius: 10px; }
  .main-nav.open a:hover, .main-nav.open a.active { background: var(--cyan-light); }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media { margin-right: 8%; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 680px) {
  body { font-size: 15px; }
  .topbar-group:first-child .topbar-item:nth-child(2) { display: none; }
  .hero { height: 88vh; min-height: 540px; }
  .hero-content { padding-bottom: 116px; }
  .hero-nav { bottom: 26px; }
  .hero-cta .btn { padding: 12px 24px; font-size: 14.5px; width: 100%; justify-content: center; }
  .stats { margin-top: -56px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat-card { padding: 20px 12px 16px; }
  .section { padding: 66px 0; }
  .about-media { margin-right: 12%; }
  .exp-badge { top: -18px; left: -10px; padding: 13px 16px; }
  .exp-badge b { font-size: 23px; }
  .about-media .img-sub { border-width: 4px; }
  .prod-grid { grid-template-columns: 1fr; }
  .cert-grid, .app-grid, .contact-grid { grid-template-columns: 1fr; }
  .patent-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .faq-q { font-size: 15px; padding: 17px 16px; gap: 12px; }
  .faq-a p { padding: 0 16px 18px 62px; }
  .cta-inner { justify-content: center; text-align: center; }
  .footer-top { grid-template-columns: 1fr; padding: 54px 0 36px; }
  .to-top { right: 16px; bottom: 20px; width: 44px; height: 44px; }
}

/* ---------- Page hero (subpages) ---------- */
.page-hero { position: relative; padding: 96px 0 64px; color: #fff; background: var(--navy); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .45; }
.ph-about::before { background-image: url('../img/culture-1.jpg'); }
.ph-products::before { background-image: url('../img/prod-81.jpg'); }
.ph-cases::before { background-image: url('../img/case-gtc.jpg'); }
.ph-partners::before { background-image: url('../img/news-coop.jpg'); }
.ph-brand::before { background-image: url('../img/case-gtc.jpg'); }
.ph-contact::before { background-image: url('../img/banner-contact.jpg'); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7,32,58,.92) 12%, rgba(9,48,86,.6) 60%, rgba(7,32,58,.35)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 800; line-height: 1.25; max-width: 720px; }
.page-hero p { margin-top: 12px; color: rgba(255,255,255,.8); max-width: 640px; font-size: 16px; }
.crumb { margin-top: 22px; display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,.6); }
.crumb a { color: rgba(255,255,255,.75); }
.crumb a:hover { color: #fff; }
.crumb b { color: #8FD4FF; font-weight: 600; }

/* ---------- Mission / Vision ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mv-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 34px; position: relative; overflow: hidden; transition: all var(--trans); }
.mv-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 150px; height: 150px; border-radius: 50%; background: var(--cyan-light); opacity: .6; transition: all var(--trans); }
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-card:hover::after { transform: scale(1.6); opacity: .35; }
.mv-icon { position: relative; z-index: 1; width: 58px; height: 58px; border-radius: 15px; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; display: grid; place-items: center; font-size: 27px; margin-bottom: 18px; box-shadow: 0 10px 24px rgba(12,119,187,.35); }
.mv-card h3 { position: relative; z-index: 1; font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.mv-card p { position: relative; z-index: 1; color: var(--gray); font-size: 15px; }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; transition: all var(--trans); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(12,119,187,.4); }
.value-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--cyan-light); color: var(--blue); display: grid; place-items: center; font-size: 26px; margin-bottom: 16px; transition: all var(--trans); }
.value-card:hover .value-icon { background: var(--blue); color: #fff; transform: rotate(-6deg) scale(1.06); }
.value-card h4 { font-size: 17px; font-weight: 700; }
.value-card p { font-size: 14px; color: var(--gray); margin-top: 8px; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 26px; transition: all var(--trans); overflow: hidden; }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-no { display: block; font-size: 44px; font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--cyan), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .9; margin-bottom: 14px; font-variant-numeric: tabular-nums; }
.step-card h4 { font-size: 17.5px; font-weight: 700; }
.step-card p { font-size: 14px; color: var(--gray); margin-top: 8px; }

/* ---------- Cert note ---------- */
.cert-note { position: relative; margin-top: 30px; text-align: center; font-size: 14px; color: rgba(255,255,255,.55); }

/* ---------- Contact page ---------- */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.contact-col { display: grid; gap: 24px; }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 34px; box-shadow: var(--shadow-sm); }
.contact-form-card h3 { font-size: 22px; font-weight: 800; }
.contact-form-card > p { color: var(--gray); font-size: 14.5px; margin: 8px 0 24px; }
.contact-form-card input, .contact-form-card textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 14.5px; color: var(--ink); background: var(--bg);
  transition: all var(--trans); margin-bottom: 14px; resize: vertical;
}
.contact-form-card input:focus, .contact-form-card textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(12,119,187,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-card .btn { width: 100%; justify-content: center; }
.form-note { margin-top: 14px; font-size: 13px; color: #8b9aa5; text-align: center; }

@media (max-width: 1080px) {
  .values-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .page-hero { padding: 64px 0 48px; }
  .mv-grid, .values-grid, .steps-grid, .form-row { grid-template-columns: 1fr; }
}

/* ============== New components aligned with original site ============== */

/* 荣誉图墙（横排证书图） */
.honor-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 36px; }
/* Certificate "mount" cards: white matting reads on both the dark home strip and the light brand page */
.honor-wall .honor-tile {
  position: relative; aspect-ratio: 4/3; border-radius: 12px; padding: 10px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFE 100%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 12px 30px rgba(7,32,58,.24);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.honor-wall .honor-tile:hover { transform: translateY(-7px); box-shadow: 0 20px 44px rgba(7,32,58,.34); }
.honor-wall .honor-tile img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s var(--ease-out); }
.honor-wall .honor-tile:hover img { transform: scale(1.04); }
.honor-tile-caption { font-size: 13px; color: var(--text-2); text-align: center; margin-top: 8px; }

/* 绿色建材双图 */
.green-double { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.green-double .green-tile { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.green-double .green-tile img { width: 100%; height: 100%; object-fit: cover; }

/* 专利图墙 5 张 */
.patent-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 32px; }
.patent-wall .patent-tile {
  aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.patent-wall .patent-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), var(--glow-blue); }
.patent-wall .patent-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.patent-wall .patent-tile:hover img { transform: scale(1.06); }

/* 案例卡：栅格卡片布局。原图为带白底与烧录说明文字的资料图，
   用 contain 完整展示避免 cover 裁切破坏图文协调；文案与图片分区呈现 */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
}
.case-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), var(--glow-blue); border-color: rgba(12,119,187,.24); }
.case-card .case-media {
  aspect-ratio: 4/3; padding: 16px; display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(180deg, #FDFEFF 0%, #ECF4FA 100%);
  border-bottom: 1px solid var(--line);
}
.case-card .case-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s var(--ease-out); }
.case-card:hover .case-media img { transform: scale(1.03); }
.case-card .case-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.case-card .case-tag { align-self: flex-start; padding: 5px 14px; background: var(--brand-soft); color: var(--brand); font-size: 12px; font-weight: 700; letter-spacing: .5px; border-radius: 999px; margin-bottom: 12px; }
.case-card h3 { font-size: 17.5px; font-weight: 700; color: var(--navy); line-height: 1.45; letter-spacing: -.01em; }
.case-card p { color: var(--text-2); font-size: 14.5px; line-height: 1.8; margin-top: 10px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.case-card .case-date { color: var(--text-3); font-size: 13px; margin-top: auto; padding-top: 16px; display: flex; align-items: center; gap: 8px; }
.case-card .case-date::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: var(--cyan); }

/* 资讯快讯（联合实验室新闻） */
.news-block { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center; margin-top: 40px; padding: 32px; background: var(--bg-soft); border-radius: 16px; }
.news-block .news-media { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; }
.news-block .news-media img { width: 100%; height: 100%; object-fit: cover; }
.news-block h3 { font-size: 22px; line-height: 1.45; color: var(--navy); margin-bottom: 14px; }
.news-block p { color: var(--text-2); line-height: 1.8; margin-bottom: 12px; }
.news-block .news-date { color: var(--text-3); font-size: 13px; }

/* 合作客户 LOGO 墙（原站是一整张图 + 装饰） */
.partner-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; padding: 48px 0; }
.partner-hero .partner-media { aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.partner-hero .partner-media img { width: 100%; height: 100%; object-fit: cover; }
.partner-hero h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); color: var(--navy); font-weight: 800; margin-bottom: 20px; line-height: 1.3; }
.partner-hero p { color: var(--text-2); line-height: 1.85; margin-bottom: 14px; }

/* 产品分类卡（原站是带图标的栏目卡） */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card { position: relative; padding: 28px 24px; border-radius: 12px; background: #fff; border: 1px solid var(--line); transition: all .3s; overflow: hidden; }
.cat-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); opacity: 0; transition: opacity .3s; }
.cat-card > * { position: relative; z-index: 1; }
.cat-card:hover { border-color: transparent; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card:hover::before { opacity: 1; }
.cat-card:hover h4, .cat-card:hover li { color: #fff; }
.cat-card:hover .cat-icon { background: rgba(255,255,255,.15); color: #fff; }
.cat-card .cat-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: all .3s; }
.cat-card .cat-icon svg { width: 24px; height: 24px; }
.cat-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; transition: color .3s; }
.cat-card ul { list-style: none; padding: 0; margin: 0; }
.cat-card li { padding: 5px 0; color: var(--text-2); font-size: 14px; line-height: 1.5; position: relative; padding-left: 16px; transition: color .3s; }
.cat-card li::before { content: ""; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.cat-card:hover li::before { background: #fff; }

/* 产品大图卡：双列卡片栅格，编号徽标 + 大图 + 标题说明，替代旧左右交替行 */
.pdetail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-detail {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
}
.product-detail::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; z-index: 3;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.product-detail:hover::before { transform: scaleX(1); }
.product-detail:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), var(--glow-blue); border-color: rgba(12,119,187,.24); }
.product-detail .pd-media { aspect-ratio: 16/9.4; overflow: hidden; background: var(--bg-soft); }
.product-detail .pd-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.product-detail:hover .pd-media img { transform: scale(1.06); }
.pd-num {
  position: absolute; top: 16px; left: 16px; z-index: 2; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.94); color: var(--brand); font-weight: 800; font-size: 15px;
  display: grid; place-items: center; box-shadow: var(--shadow-md); backdrop-filter: blur(6px);
}
.product-detail .pd-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.product-detail h3 { font-size: 19px; color: var(--navy); font-weight: 700; line-height: 1.4; letter-spacing: -.01em; }
.product-detail p { color: var(--text-2); line-height: 1.8; font-size: 14.5px; margin-top: 10px; flex: 1; }

/* 合作伙伴：行业领域卡 */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), var(--glow-blue); border-color: rgba(12,119,187,.24); }
.industry-card .ind-icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; font-size: 26px; margin-bottom: 16px; transition: all var(--trans);
}
.industry-card:hover .ind-icon { background: var(--grad-brand); color: #fff; transform: rotate(-6deg) scale(1.06); }
.industry-card h4 { font-size: 17px; font-weight: 700; color: var(--navy); }
.industry-card p { font-size: 14px; color: var(--text-2); margin-top: 8px; line-height: 1.75; }

/* 首页特色 3 图（原站 feat 图） */
.feat-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.feat-images .feat-img { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; }
.feat-images .feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.feat-images .feat-img:hover img { transform: scale(1.06); }

/* 二维码卡 */
.qr-card { display: flex; align-items: center; gap: 20px; padding: 24px; background: var(--bg-soft); border-radius: 14px; border: 1px solid var(--line); margin-top: 24px; }
.qr-card .qr-img { width: 120px; height: 120px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.qr-card .qr-img img { width: 100%; height: 100%; object-fit: cover; }
.qr-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.qr-card p { color: var(--text-2); font-size: 14px; line-height: 1.6; }

/* 企业文化 4 图 */
.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.culture-grid .culture-tile { aspect-ratio: 3/4; border-radius: 10px; overflow: hidden; }
.culture-grid .culture-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.culture-grid .culture-tile:hover img { transform: scale(1.05); }

/* 价值卡 4 个（原 about 页 c0001/c04/c0003/c02） */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.value-grid .value-tile { padding: 28px 20px; background: #fff; border: 1px solid var(--line); border-radius: 12px; text-align: center; transition: all .3s; }
.value-grid .value-tile:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow); }
.value-grid .value-tile h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 12px 0 8px; }
.value-grid .value-tile p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.value-grid .value-tile .value-num { font-size: 30px; font-weight: 800; color: var(--brand); font-family: var(--font-display); }

/* 概览条（原 about 文化/精神/核心价值/使命/经营理念 4 横列） */
.culture-list {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 36px;
  padding: 36px 30px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
.culture-list .culture-item { text-align: center; border-right: 1px solid var(--line); padding-right: 12px; }
.culture-list .culture-item:last-child { border-right: 0; }
.culture-list .culture-item::before {
  content: ""; display: block; width: 30px; height: 3px; border-radius: 3px;
  background: var(--grad-brand); margin: 0 auto 14px;
}
.culture-list .culture-item h4 { color: var(--navy); font-size: 16px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.culture-list .culture-item p { color: var(--text-2); font-size: 14px; line-height: 1.75; }

/* =========================================================
   Polish pass — depth, focus states, micro-interaction
   ========================================================= */

/* Selection + keyboard focus (a11y) */
::selection { background: rgba(12,119,187,.18); color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 8px;
}

/* Cards: subtle "lit from above" inner highlight for depth */
.prod-card, .contact-card, .mv-card, .value-card, .step-card,
.faq-item, .value-grid .value-tile, .cat-card, .patent-wall .patent-tile {
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.9);
}

/* Honor tiles: the old white border vanished on the light brand page */
.honor-wall .honor-tile {
  border: 1px solid rgba(12,119,187,.14);
  box-shadow: 0 12px 30px rgba(7,32,58,.14), inset 0 1px 0 rgba(255,255,255,.9);
}

/* Stats: soft glow + number lift on hover */
.stat-card { border-radius: var(--radius-lg); }
.stat-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(130% 100% at 50% -30%, rgba(12,119,187,.13), transparent 62%);
  opacity: 0; transition: opacity .45s var(--ease-out);
}
.stat-card:hover::after { opacity: 1; }
.stat-num { transition: transform .45s var(--ease-out); }
.stat-card:hover .stat-num { transform: translateY(-3px); }

/* Primary buttons: sheen sweep on hover */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: -20%; bottom: -20%; width: 40%; left: -70%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.30), transparent);
  transform: skewX(-18deg); transition: left .75s var(--ease-out); pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }

/* Section heading rule: a touch wider for a calmer rhythm */
.section-head h2::after { width: 62px; height: 5px; border-radius: 5px; }

/* Reveal: softer easing */
.reveal { transition: opacity .85s ease, transform .85s cubic-bezier(.22,.8,.3,1); transition-delay: var(--d, 0s); }

@media (max-width: 680px) {
  .stat-card { border-radius: var(--radius); }
}

/* 响应式补充 */
@media (max-width: 1080px) {
  .honor-wall { grid-template-columns: repeat(3, 1fr); }
  .patent-wall { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-list { grid-template-columns: repeat(2, 1fr); }
  .culture-list .culture-item { border-right: 0; }
  .culture-list .culture-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .news-block, .partner-hero { grid-template-columns: 1fr; gap: 24px; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .pdetail-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .green-double { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .honor-wall, .patent-wall { grid-template-columns: repeat(2, 1fr); }
  .case-grid, .industry-grid, .pdetail-grid { grid-template-columns: 1fr; }
  .feat-images { grid-template-columns: 1fr; }
  .qr-card { flex-direction: column; text-align: center; }
  .page-hero h1 { font-size: 1.6rem; }
}
