/* ============================================================
   GoldenPeptide BIOTECH — 官网
   Design language: Precision Lab Editorial
   纸白实验底 · 深墨蓝 · 品牌青 #2AA9E0 · 亮绿 #A5CE39
   ============================================================ */

:root {
  --paper: #f5f9fb;
  --paper-2: #eef5f9;
  --white: #ffffff;
  --ink: #0e2a38;
  --ink-2: #16394c;
  --ink-soft: #51707f;
  --cyan: #2aa9e0;
  --cyan-deep: #157fb2;
  --cyan-ghost: rgba(42, 169, 224, 0.1);
  --lime: #a5ce39;
  --lime-deep: #7fa424;
  --line: #d8e6ee;
  --line-strong: #b9d2df;
  --shadow-soft: 0 24px 60px -28px rgba(14, 42, 56, 0.25);
  --font-display: "Songti SC", "Noto Serif SC", "STSong", "SimSun", serif;
  --font-body: "PingFang SC", "Noto Sans SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-mono: "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  --radius: 18px;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

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

/* ---------- 背景网格（实验记录纸） ---------- */
.grid-bg {
  position: relative;
}
.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(42, 169, 224, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(42, 169, 224, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.grid-bg > * { position: relative; }

/* ---------- 顶部信息条 ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  gap: 16px;
}
.topbar b { color: var(--lime); font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar .hide-sm { white-space: nowrap; }
.topbar-verify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 13px;
  border: 1px solid rgba(165, 206, 57, 0.45);
  border-radius: 999px;
  color: #fff;
  background: rgba(165, 206, 57, 0.12);
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.topbar-verify:hover {
  background: rgba(165, 206, 57, 0.22);
  border-color: rgba(165, 206, 57, 0.75);
  transform: translateY(-1px);
}
.only-sm { display: none; }

/* ---------- 导航 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(14, 42, 56, 0.35); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.brand {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  align-self: center;
}
.brand img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  position: relative;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--cyan-deep); background: var(--cyan-ghost); }
.lang-switch {
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink-2);
  border-radius: 999px;
  padding: 5px 9px 5px 6px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 8px 20px -16px rgba(14, 42, 56, 0.3);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.lang-switch:hover { color: var(--cyan-deep); border-color: var(--cyan); background: var(--cyan-ghost); transform: translateY(-1px); }
.flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(14, 42, 56, 0.12);
}
.flag-us {
  background:
    linear-gradient(90deg, #24468e 0 42%, transparent 42% 100%),
    repeating-linear-gradient(to bottom, #b22234 0 7.7%, #fff 7.7% 15.4%);
}
.flag-cn {
  background:
    radial-gradient(circle at 34% 32%, #ffde00 0 9%, transparent 10%),
    radial-gradient(circle at 55% 20%, #ffde00 0 3.5%, transparent 4%),
    radial-gradient(circle at 63% 32%, #ffde00 0 3.5%, transparent 4%),
    radial-gradient(circle at 62% 48%, #ffde00 0 3.5%, transparent 4%),
    radial-gradient(circle at 50% 58%, #ffde00 0 3.5%, transparent 4%),
    #de2910;
}
.lang-text { min-width: 18px; text-align: center; }
.main-nav a.active { color: var(--cyan-deep); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--lime));
}

.nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-cta:hover { background: var(--cyan-deep); transform: translateY(-1px); }
.nav-cta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(165, 206, 57, 0.25);
}

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

/* ---------- 通用 章节 ---------- */
section { position: relative; }
.section { padding: 96px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--cyan);
}
.eyebrow .num { color: var(--lime-deep); }

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.section-title em {
  font-style: normal;
  color: var(--cyan-deep);
}
.section-lead {
  margin-top: 18px;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 16.5px;
}

/* ---------- 肽链分隔（圆珠链） ---------- */
.chain-divider {
  display: flex;
  align-items: center;
  gap: 0;
  height: 14px;
  margin: 0 auto;
  width: fit-content;
}
.chain-divider i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
  position: relative;
}
.chain-divider i:nth-child(3n+1) { background: var(--cyan); }
.chain-divider i:nth-child(5n+2) { background: var(--lime); }
.chain-divider i + i { margin-left: 18px; }
.chain-divider i + i::before {
  content: "";
  position: absolute;
  right: 100%; top: 50%;
  width: 18px; height: 2px;
  transform: translateY(-50%);
  background: var(--line-strong);
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn svg { transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(120deg, var(--cyan) 0%, var(--cyan-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(42, 169, 224, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan-deep); }
.btn-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 14px 30px -12px rgba(165, 206, 57, 0.6);
}
.btn-lime:hover { transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(42, 169, 224, 0.14), transparent 60%),
    radial-gradient(700px 420px at 8% 90%, rgba(165, 206, 57, 0.12), transparent 60%),
    var(--paper);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 96px;
}
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.22;
  letter-spacing: 0.01em;
}
html[lang="en"] .hero-title {
  max-width: 660px;
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
html[lang="en"] .hero-title br { display: none; }
html[lang="en"] .hero-title .hl { white-space: normal; }
html[lang="en"] .hero-sub {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.75;
}
html[lang="en"] .hero-actions { margin-top: 30px; }
html[lang="en"] .hero-actions .btn { padding: 13px 22px; }
html[lang="en"] .hero-tags { margin-top: 30px; max-width: 620px; }
html[lang="en"] .hero-tags span { font-size: 11px; padding: 7px 12px; }
html[lang="en"] .float-chip { padding: 10px 14px; gap: 10px; }
html[lang="en"] .float-chip .t { max-width: 130px; line-height: 1.25; }
.hero-title .hl {
  color: var(--cyan-deep);
  white-space: nowrap;
  background: linear-gradient(transparent 72%, rgba(165, 206, 57, 0.42) 72%, rgba(165, 206, 57, 0.42) 94%, transparent 94%);
}
.hero-sub {
  margin-top: 26px;
  max-width: 560px;
  font-size: 17px;
  color: var(--ink-soft);
}
.hero-actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-tags {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tags span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-2);
}

.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-frame::before {
  content: "GP-2015 / PEPTIDE SYNTHESIS · PURIFICATION · SCALE-UP";
  display: block;
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line-strong);
  background: var(--paper);
}
.hero-frame img { width: 100%; height: auto; }
.float-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 36px -18px rgba(14, 42, 56, 0.35);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 5s ease-in-out infinite;
}
.float-chip .k {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--cyan-deep);
  line-height: 1;
}
.float-chip .t { font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; }
.chip-a { top: 16%; left: -34px; animation-delay: 0s; }
.chip-b { bottom: 12%; right: -26px; animation-delay: 2.2s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- 序列跑马灯 ---------- */
.seq-ticker {
  background: var(--ink);
  overflow: hidden;
  padding: 14px 0;
  border-top: 3px solid var(--lime);
}
.seq-track {
  display: flex;
  width: max-content;
  animation: seq-scroll 46s linear infinite;
}
.seq-track span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  padding-right: 60px;
}
.seq-track span b { color: var(--cyan); font-weight: 500; }
@keyframes seq-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 数据带 ---------- */
.stats-band { background: var(--white); border-bottom: 1px solid var(--line); }
.stats-band .container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding-top: 52px;
  padding-bottom: 52px;
}
.stat {
  padding: 4px 20px;
  border-left: 1px dashed var(--line-strong);
}
.stat:first-child { border-left: none; }
.stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--ink);
  line-height: 1.1;
}
.stat .num i { font-style: normal; font-size: 0.55em; color: var(--cyan-deep); margin-left: 2px; }
.stat .label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ---------- 关于 ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy p { color: var(--ink-soft); margin-top: 18px; font-size: 16px; }
.about-copy p strong { color: var(--ink); font-weight: 600; }
.about-visual { position: relative; }
.about-visual .photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.about-visual .photo img { width: 100%; }
.strategy-card {
  position: absolute;
  left: -36px;
  bottom: -36px;
  width: min(320px, 80%);
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: 0 30px 60px -25px rgba(14, 42, 56, 0.6);
}
/* 横幅素材自带标语文字，裁到右侧主体避免与浮层卡片打架 */
.photo-crop { aspect-ratio: 1 / 1; }
.photo-crop img { width: 100%; height: 100%; object-fit: cover; object-position: 100% center; }
.strategy-card .mono {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--lime);
}
.strategy-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  margin: 8px 0 6px;
  letter-spacing: 0.05em;
}
.strategy-card p { font-size: 13px; color: rgba(255, 255, 255, 0.65); line-height: 1.7; }

.about-marks { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-marks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--ink-2);
}
.about-marks li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 7px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(165, 206, 57, 0.22);
}

/* ---------- 业务（一主两翼） ---------- */
.biz-section { background: var(--white); }
.biz-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.biz-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.biz-card:hover {
  transform: translateY(-8px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-soft);
}
.biz-card .media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
}
.biz-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.biz-card:hover .media img { transform: scale(1.05); }
.biz-card .media .code {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  background: rgba(14, 42, 56, 0.82);
  color: var(--lime);
  border-radius: 6px;
}
.biz-card .body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.biz-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.03em;
}
.biz-card .desc { margin-top: 10px; font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.biz-card .points { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.biz-card .points span {
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--cyan-ghost);
  color: var(--cyan-deep);
  border: 1px solid rgba(42, 169, 224, 0.25);
}
.biz-card .go {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.biz-card:hover .go { color: var(--cyan-deep); }
.biz-card .go svg { transition: transform 0.25s ease; }
.biz-card:hover .go svg { transform: translateX(5px); }

/* ---------- 核心优势 ---------- */
.adv-section {
  background:
    radial-gradient(800px 400px at 92% 0%, rgba(42, 169, 224, 0.1), transparent 55%),
    var(--paper);
}
.adv-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.adv-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 34px 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.adv-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.adv-item:nth-child(even) { transform: translateY(26px); }
.adv-item:nth-child(even):hover { transform: translateY(21px); }
.adv-item .idx {
  position: absolute;
  top: 14px; right: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-strong);
  transition: -webkit-text-stroke-color 0.3s ease;
}
.adv-item:hover .idx { -webkit-text-stroke-color: var(--cyan); }
.adv-item h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.04em;
}
.adv-item h3 u {
  text-decoration: none;
  background: linear-gradient(transparent 62%, rgba(165, 206, 57, 0.45) 62%);
}
.adv-item p { margin-top: 14px; font-size: 14.5px; color: var(--ink-soft); max-width: 92%; }

/* ---------- 管线 ---------- */
.pipeline-section { background: var(--ink); color: #fff; overflow: hidden; }
.pipeline-section .eyebrow { color: var(--cyan); }
.pipeline-section .section-title { color: #fff; }
.pipeline-section .section-title em { color: var(--lime); }
.pipeline-section .section-lead { color: rgba(255, 255, 255, 0.6); }
.pipe-groups { margin-top: 52px; display: grid; gap: 22px; }
.pipe-group {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: start;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.pipe-group:hover { background: rgba(42, 169, 224, 0.07); border-color: rgba(42, 169, 224, 0.4); }
.pipe-group .field {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 0.06em;
}
.pipe-group .field small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}
.pipe-group .drugs { display: flex; flex-wrap: wrap; gap: 10px; }
.pipe-group .drugs span {
  font-size: 13.5px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.pipe-group .drugs span:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(165, 206, 57, 0.08);
}
.pipe-group .drugs span.hot {
  border-color: var(--cyan);
  color: #fff;
  background: rgba(42, 169, 224, 0.18);
}
.pipe-cta { margin-top: 44px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.pipe-cta .note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  max-width: 480px;
}

/* ---------- FAQ ---------- */
.faq-hero .eyebrow { margin-bottom: 16px; }
.faq-wrap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 120px;
}
.faq-contact-card {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(42, 169, 224, 0.12), rgba(165, 206, 57, 0.12)), #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.faq-contact-card a {
  font-weight: 800;
  color: var(--cyan-deep);
  word-break: break-word;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.qa-card {
  position: relative;
  min-height: 240px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(246,251,248,0.9)),
    radial-gradient(240px 140px at 100% 0%, rgba(165, 206, 57, 0.16), transparent 70%);
  border: 1px solid rgba(42, 169, 224, 0.16);
  box-shadow: 0 24px 60px -46px rgba(14, 42, 56, 0.58);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.qa-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--cyan), var(--lime));
}
.qa-card::after {
  content: "PEPTIDE QA";
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(14, 42, 56, 0.12);
  pointer-events: none;
}
.qa-card:hover {
  transform: translateY(-6px);
  border-color: rgba(42, 169, 224, 0.36);
  box-shadow: 0 34px 76px -48px rgba(14, 42, 56, 0.68);
}
.qa-feature {
  grid-column: 1 / -1;
  min-height: 0;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(520px 260px at 8% 0%, rgba(42, 169, 224, 0.2), transparent 62%),
    radial-gradient(520px 260px at 100% 100%, rgba(165, 206, 57, 0.22), transparent 62%),
    #fff;
}
.qa-q,
.qa-a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}
.qa-a { margin-top: 18px; }
.qa-feature .qa-a { margin-top: 0; }
.qa-q span,
.qa-a span {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
}
.qa-q span {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 14px 28px -18px rgba(14, 42, 56, 0.7);
}
.qa-a span {
  color: var(--ink);
  background: var(--lime);
}
.qa-q h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.qa-feature .qa-q h3 { font-size: clamp(24px, 3vw, 36px); }
.qa-a p {
  color: var(--ink-soft);
  line-height: 1.82;
  font-size: 15.5px;
}
html[lang="en"] .qa-a p { font-size: 15px; line-height: 1.72; }

/* ---------- 新闻 ---------- */
.news-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
/* 新闻配图为 2.35:1 横幅（公众号封面），按原比例展示避免文字被裁切 */
.news-card .media { aspect-ratio: 2.35 / 1; overflow: hidden; background: var(--paper-2); }
.news-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .media img { transform: scale(1.06); }
.news-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.news-card time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--cyan-deep);
}
.news-card h3 {
  margin-top: 10px;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card:hover h3 { color: var(--cyan-deep); }
.news-card .cat {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-card .cat::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

/* ---------- 合作伙伴 / 认证 ---------- */
.trust-section { background: var(--white); border-top: 1px solid var(--line); }
.trust-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.trust-cols h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.logo-wall { display: flex; flex-wrap: wrap; gap: 12px; }
.logo-wall span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-2);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.logo-wall span:hover { border-color: var(--cyan); color: var(--cyan-deep); transform: translateY(-2px); }
.cert-wall span {
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  font-size: 13.5px;
}

/* ---------- COA 证书展示 ---------- */
.coa-section {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(241,248,244,0.88)),
    var(--paper);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.coa-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}
.coa-head .section-title { margin-bottom: 0; }
.coa-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}
.coa-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(42, 169, 224, 0.18);
  box-shadow: 0 22px 55px -34px rgba(14, 42, 56, 0.55);
  overflow: hidden;
  transform: translateZ(0) rotate(var(--tilt, 0deg));
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.coa-card:nth-child(4n+1) { --tilt: -1.2deg; }
.coa-card:nth-child(4n+2) { --tilt: 0.8deg; }
.coa-card:nth-child(4n+3) { --tilt: -0.5deg; }
.coa-card:nth-child(4n) { --tilt: 1.1deg; }
.coa-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-radius: 15px;
  filter: saturate(0.98) contrast(1.02);
}
.coa-card span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(14, 42, 56, 0.82);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  backdrop-filter: blur(10px);
}
.coa-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.35), transparent 38%, rgba(165,206,57,0.18));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.coa-card:hover {
  z-index: 2;
  transform: translateY(-8px) rotate(0deg) scale(1.035);
  border-color: rgba(42, 169, 224, 0.42);
  box-shadow: 0 34px 70px -36px rgba(14, 42, 56, 0.7);
}
.coa-card:hover::after { opacity: 1; }
.coa-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 20px;
  border: 1px dashed var(--line);
  border-radius: 22px;
  text-align: center;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
}

/* ---------- CTA 大区块 ---------- */
.cta-band {
  background:
    radial-gradient(700px 320px at 15% 20%, rgba(42, 169, 224, 0.28), transparent 60%),
    radial-gradient(600px 300px at 90% 85%, rgba(165, 206, 57, 0.2), transparent 60%),
    var(--ink);
  color: #fff;
}
.cta-band .container {
  padding-top: 90px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.3;
}
.cta-band h2 em { font-style: normal; color: var(--lime); }
.cta-band p { margin-top: 16px; color: rgba(255, 255, 255, 0.6); max-width: 520px; }
.cta-contacts { display: grid; gap: 14px; }
.cta-contacts .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cta-contacts .row:hover { border-color: var(--cyan); background: rgba(42, 169, 224, 0.08); }
.cta-contacts .lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
}
.cta-contacts .val { font-size: 17px; font-weight: 600; letter-spacing: 0.02em; }
.cta-contacts .val a:hover { color: var(--cyan); }

/* ---------- 页脚 ---------- */
.site-footer {
  background: #0a2230;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.footer-main {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand img {
  display: block;
  height: 76px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand p { margin-top: 18px; font-size: 13px; line-height: 1.9; max-width: 300px; }
.footer-brand .seq {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(42, 169, 224, 0.55);
  word-break: break-all;
}
.site-footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.site-footer li { margin-bottom: 11px; }
.site-footer li a { transition: color 0.2s ease, padding-left 0.2s ease; }
.site-footer li a:hover { color: var(--lime); padding-left: 5px; }
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.8;
}
.footer-contact .k { color: rgba(255, 255, 255, 0.35); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: #fff; }

/* ---------- 子页 Hero ---------- */
.page-hero {
  background:
    radial-gradient(800px 380px at 88% 0%, rgba(42, 169, 224, 0.16), transparent 60%),
    radial-gradient(500px 300px at 5% 100%, rgba(165, 206, 57, 0.12), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero .container { padding-top: 76px; padding-bottom: 64px; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.breadcrumb a:hover { color: var(--cyan-deep); }
.breadcrumb i { font-style: normal; margin: 0 8px; color: var(--line-strong); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.6vw, 52px);
  letter-spacing: 0.02em;
}
.page-hero .lead { margin-top: 16px; max-width: 680px; color: var(--ink-soft); font-size: 16.5px; }

/* ---------- 内容页通用 ---------- */
.prose { max-width: 820px; }
.prose p { margin-bottom: 20px; color: var(--ink-2); font-size: 16px; }
.prose p strong { color: var(--ink); }

.subnav {
  position: sticky;
  top: 74px;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.subnav .container { display: flex; gap: 6px; overflow-x: auto; }
.subnav a {
  padding: 15px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.subnav a:hover, .subnav a.on { color: var(--cyan-deep); border-bottom-color: var(--cyan); }

/* 文化卡片 */
.culture-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.culture-card {
  border-radius: 20px;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.culture-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.culture-card::after {
  content: "";
  position: absolute;
  right: -30px; bottom: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(42, 169, 224, 0.18), rgba(165, 206, 57, 0.14));
}
.culture-card .mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--cyan-deep);
}
.culture-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  margin: 12px 0 12px;
}
.culture-card p { font-size: 15.5px; color: var(--ink-soft); position: relative; z-index: 1; }
.culture-card p b { color: var(--ink); }

/* 数字编号长列表（核心优势详情） */
.numbered-list { margin-top: 48px; display: grid; gap: 18px; }
.numbered-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  padding: 30px 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.numbered-item:hover { border-color: var(--cyan); box-shadow: var(--shadow-soft); }
.numbered-item .no {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
}
.numbered-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.numbered-item p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- 数据表格（产品目录） ---------- */
.table-wrap {
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow-x: auto;
  box-shadow: 0 12px 34px -24px rgba(14, 42, 56, 0.25);
}
table.cat-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.cat-table th {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
  background: var(--ink);
  padding: 14px 20px;
}
.cat-table td {
  padding: 13px 20px;
  font-size: 14.5px;
  border-top: 1px solid var(--line);
  vertical-align: top;
}
.cat-table tr:hover td { background: var(--cyan-ghost); }
.cat-table .field-cell {
  font-weight: 700;
  color: var(--cyan-deep);
  white-space: nowrap;
}
.cat-table .mono-cell {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-soft);
}
.cat-table .gp { font-family: var(--font-mono); font-size: 13px; color: var(--ink); font-weight: 500; }
.table-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
/* 表格在窄屏需横向滚动，给出明确提示 */
.scroll-hint {
  display: none;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--cyan-deep);
}

/* 服务流程步骤 */
.flow-steps {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.flow-step {
  position: relative;
  padding: 28px 26px 28px 30px;
  border: 1px solid var(--line);
  border-left: none;
  background: #fff;
}
.flow-step:first-child { border-left: 1px solid var(--line); border-radius: 16px 0 0 16px; }
.flow-step:last-child { border-radius: 0 16px 16px 0; }
.flow-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--lime-deep);
}
.flow-step h4 { font-size: 16px; font-weight: 700; margin: 10px 0 8px; }
.flow-step p { font-size: 13px; color: var(--ink-soft); }
.flow-step::after {
  content: "";
  position: absolute;
  top: 50%; right: -7px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid #fff;
  transform: translateY(-50%);
  z-index: 2;
}
.flow-step:last-child::after { display: none; }

.svc-cols {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.svc-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 32px 28px;
}
.svc-box h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-strong);
  margin-bottom: 18px;
}
.svc-box h3 small {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cyan-deep);
  display: block;
  margin-bottom: 6px;
}
.svc-box li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 11px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.svc-box li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
}

/* 新闻列表页 */
.news-list { margin-top: 12px; display: grid; gap: 20px; }
.news-row {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 30px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.news-row:hover { transform: translateX(6px); border-color: var(--cyan); box-shadow: var(--shadow-soft); }
.news-row .media {
  aspect-ratio: 2.35 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cyan-ghost), rgba(165, 206, 57, 0.15));
}
.news-row .media img { width: 100%; height: 100%; object-fit: cover; }
.news-row .media.ph {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--cyan-deep);
}
.news-row h3 { font-size: 17.5px; font-weight: 600; line-height: 1.6; }
.news-row:hover h3 { color: var(--cyan-deep); }
.news-row .meta { margin-top: 10px; font-size: 13px; color: var(--ink-soft); }
.news-row time {
  font-family: var(--font-display);
  font-weight: 900;
  text-align: center;
  padding: 0 26px;
  border-left: 1px dashed var(--line-strong);
}
.news-row time .d { font-size: 30px; color: var(--ink); display: block; line-height: 1.1; }
.news-row time .y { font-family: var(--font-mono); font-weight: 400; font-size: 11px; letter-spacing: 0.14em; color: var(--ink-soft); }

/* 联系页 */
.contact-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.contact-card .mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--cyan-deep);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 21px;
  margin: 10px 0 18px;
}
.contact-card li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  margin-bottom: 12px;
  color: var(--ink-2);
}
.contact-card .k { color: var(--ink-soft); flex-shrink: 0; }
.contact-card a:hover { color: var(--cyan-deep); }
.addr-grid { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.addr-card {
  border-radius: 20px;
  padding: 32px;
  background: var(--ink);
  color: #fff;
}
.addr-card .mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--lime); }
.addr-card h3 { font-family: var(--font-display); font-weight: 900; font-size: 20px; margin: 10px 0 8px; }
.addr-card p { font-size: 14.5px; color: rgba(255, 255, 255, 0.65); }

/* ---------- 滚动显现 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ---------- 响应式 ---------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 88px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px 20px 22px;
    box-shadow: 0 30px 40px -20px rgba(14, 42, 56, 0.25);
    gap: 2px;
  }
  .nav-open .main-nav a { padding: 12px 14px; }
  .nav-open .lang-switch { width: 100%; padding: 12px 14px; margin-top: 4px; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .stats-band .container { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .stat:nth-child(4) { border-left: none; }
  .adv-grid { grid-template-columns: 1fr; }
  .adv-item:nth-child(even) { transform: none; }
  .adv-item:nth-child(even):hover { transform: translateY(-5px); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .flow-step { border-left: 1px solid var(--line); border-radius: 0 !important; }
  .flow-step::after { display: none; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-visual { max-width: 520px; }
  .chip-a { left: -10px; }
  .chip-b { right: -8px; }
  .about-grid { grid-template-columns: 1fr; gap: 72px; }
  .strategy-card { left: 18px; bottom: -30px; }
  .biz-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .trust-cols { grid-template-columns: 1fr; gap: 44px; }
  .cta-band .container { grid-template-columns: 1fr; }
  .pipe-group { grid-template-columns: 1fr; gap: 14px; }
  .culture-grid { grid-template-columns: 1fr; }
  .svc-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .addr-grid { grid-template-columns: 1fr; }
  .news-row { grid-template-columns: 1fr; gap: 16px; }
  .news-row time { border-left: none; text-align: left; padding: 0; display: flex; align-items: baseline; gap: 10px; }
  .numbered-item { grid-template-columns: 1fr; gap: 10px; }
  .section { padding: 72px 0; }
  .scroll-hint { display: block; }
}

@media (max-width: 900px) {
  .coa-head { grid-template-columns: 1fr; gap: 18px; }
  .coa-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .site-header .container { height: 78px; }
  .brand img { height: 58px; max-width: 156px; }
  .nav-open .main-nav { top: 78px; }
  .topbar .hide-sm { display: none; }
  .only-sm { display: inline; }
  .topbar .container { min-height: 30px; }
  .topbar { font-size: 10.5px; }
  .stats-band .container { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; padding: 4px 8px; }
  .flow-steps { grid-template-columns: 1fr; }
  .hero-title { font-size: 34px; }
  .about-marks { grid-template-columns: 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .qa-feature { grid-template-columns: 1fr; }
  .qa-card { min-height: 0; padding: 20px; }
  .qa-q h3 { font-size: 18px; }
  .qa-q, .qa-a { grid-template-columns: 34px 1fr; gap: 12px; }
  .qa-q span, .qa-a span { width: 34px; height: 34px; border-radius: 12px; }
}

/* ---------- Employee Verification ---------- */
.verify-page {
  min-height: 100vh;
  background:
    radial-gradient(820px 520px at 8% 8%, rgba(42, 169, 224, 0.22), transparent 62%),
    radial-gradient(780px 520px at 92% 86%, rgba(165, 206, 57, 0.24), transparent 60%),
    linear-gradient(135deg, #f8fbf8 0%, #eef7f9 48%, #f9fbef 100%);
  color: var(--ink);
}
.verify-shell, .admin-shell {
  min-height: 100vh;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}
.admin-shell { grid-template-columns: 1fr; width: min(1040px, calc(100% - 40px)); }
.verify-card, .admin-panel {
  position: relative;
  border-radius: 34px;
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(42, 169, 224, 0.18);
  box-shadow: 0 44px 100px -60px rgba(14, 42, 56, 0.72);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.verify-card::before, .admin-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ink), var(--cyan), var(--lime));
}
.verify-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 42px;
}
.verify-brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 28px -18px rgba(14, 42, 56, 0.72);
}
.verify-brand span {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--cyan-deep);
  text-transform: uppercase;
}
.verify-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
}
.verify-copy h1 {
  margin: 12px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.verify-copy p:last-child {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}
.verify-form, .admin-login, .employee-form {
  margin-top: 34px;
}
.verify-form label, .admin-login label, .employee-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
  color: var(--ink);
}
.verify-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
}
.verify-input-row input, .employee-form input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 14px;
  font: inherit;
  font-size: 17px;
  color: var(--ink);
}
.verify-input-row button, .employee-form button, .employee-table button {
  border: 0;
  border-radius: 16px;
  padding: 14px 22px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.verify-result {
  min-height: 0;
  margin-top: 22px;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}
.verify-result strong, .verify-result span { display: block; }
.verify-result strong { font-family: var(--font-display); font-size: 22px; }
.verify-result span { margin-top: 6px; color: inherit; opacity: .8; }
.verify-result.is-loading, .verify-result.is-valid, .verify-result.is-invalid {
  padding: 20px 22px;
  border: 1px solid transparent;
}
.verify-result.is-loading { background: var(--cyan-ghost); color: var(--cyan-deep); }
.verify-result.is-valid { background: rgba(165, 206, 57, 0.2); color: #315100; border-color: rgba(165, 206, 57, 0.46); }
.verify-result.is-invalid { background: rgba(220, 56, 56, 0.09); color: #9b1c1c; border-color: rgba(220, 56, 56, 0.22); }
.verify-foot {
  margin-top: 30px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.verify-foot a {
  color: var(--cyan-deep);
  font-weight: 900;
}
.verify-visual {
  position: relative;
  min-height: 560px;
}
.verify-visual .orb {
  position: absolute;
  inset: 40px 0 auto auto;
  width: min(520px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(2, 31, 66, 0.96), rgba(5, 147, 59, 0.9)),
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.42), transparent 28%);
  box-shadow: 0 70px 140px -80px rgba(14, 42, 56, 0.85);
}
.scan-card {
  position: absolute;
  left: 0;
  bottom: 84px;
  width: min(380px, 92%);
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 36px 90px -56px rgba(14, 42, 56, .72);
}
.scan-card span { font-family: var(--font-mono); letter-spacing: .22em; color: var(--cyan-deep); }
.scan-card b { display: block; margin-top: 10px; font-family: var(--font-display); font-size: 34px; line-height: 1; }
.scan-card i { display: block; height: 4px; margin-top: 28px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--lime)); }
.admin-workspace { margin-top: 28px; }
.admin-page.is-authed .verify-copy h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.admin-page.is-authed .verify-copy p:last-child { font-size: 15px; }
.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(165, 206, 57, 0.14);
  border: 1px solid rgba(165, 206, 57, 0.34);
}
.admin-toolbar-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #315100;
  font-size: 14px;
}
.admin-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5a9e00;
  box-shadow: 0 0 0 4px rgba(90, 158, 0, 0.18);
}
.admin-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.admin-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.admin-tab:hover {
  border-color: rgba(42, 169, 224, 0.34);
  color: var(--ink);
}
.admin-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px -18px rgba(14, 42, 56, 0.85);
}
.admin-tab-icon { font-size: 13px; line-height: 1; opacity: .88; }
.admin-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  padding: 22px;
  box-shadow: 0 18px 48px -36px rgba(14, 42, 56, 0.35);
}
.admin-card-head { margin-bottom: 18px; }
.admin-card-head h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}
.admin-card-lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.admin-form { margin-top: 4px; }
.admin-form-grid {
  display: grid;
  gap: 16px;
}
.admin-form-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-form-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.admin-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
  padding-top: 4px;
}
.admin-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.admin-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.admin-field input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.admin-field input:not(.coa-sort-input)::placeholder { color: rgba(14, 42, 56, 0.38); }
.admin-field input:not(.coa-sort-input):focus {
  outline: 0;
  border-color: rgba(42, 169, 224, 0.72);
  box-shadow: 0 0 0 4px rgba(42, 169, 224, 0.14);
}
.admin-field input.coa-sort-input {
  width: 56px;
  min-width: 56px;
  max-width: 56px;
  height: 36px;
  padding: 0 8px;
  line-height: 36px;
  font-size: 13px;
  border-radius: 10px;
  text-align: center;
}
.admin-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
  font: inherit;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  resize: vertical;
  min-height: 96px;
  transition: border-color .2s, box-shadow .2s;
}
.admin-field textarea:focus {
  outline: 0;
  border-color: rgba(42, 169, 224, 0.72);
  box-shadow: 0 0 0 4px rgba(42, 169, 224, 0.14);
}
.admin-form-grid-textarea { margin-top: 16px; }
.admin-field-hint {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.admin-faq-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.admin-faq-toolbar span {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-soft);
}
.admin-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.admin-faq-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.admin-faq-item.is-enabled {
  border-color: rgba(42, 169, 224, 0.34);
}
.admin-faq-item.is-featured {
  box-shadow: 0 0 0 3px rgba(165, 206, 57, 0.12);
}
.admin-faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.admin-faq-head-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.admin-faq-index {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 10px;
  background: rgba(248, 251, 248, 0.98);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-soft);
}
.admin-faq-item .admin-form-grid { margin-top: 10px; }
.admin-faq-item .admin-field input {
  padding: 10px 12px;
  font-size: 14px;
}
.admin-faq-item .admin-field textarea {
  min-height: 88px;
  font-size: 14px;
}
.admin-btn {
  border: 0;
  border-radius: 14px;
  padding: 13px 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.admin-btn:active { transform: translateY(1px); }
.admin-btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 28px -18px rgba(14, 42, 56, 0.85);
}
.admin-btn-primary:hover { background: #0a3040; }
.admin-btn-ghost {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border: 1px solid rgba(14, 42, 56, 0.12);
}
.admin-btn-ghost:hover { background: #fff; }
.admin-btn-danger {
  background: #b42318;
  color: #fff;
}
.admin-btn-danger:hover { background: #912018; }
.admin-btn-sm { padding: 8px 14px; font-size: 13px; border-radius: 12px; }
.employee-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.employee-table {
  width: 100%;
  border-collapse: collapse;
}
.employee-table th, .employee-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.employee-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(248, 251, 248, 0.92);
}
.employee-table tr:last-child td { border-bottom: 0; }
.employee-table .mono-cell {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .02em;
}
.employee-table .employee-actions { width: 1%; white-space: nowrap; }
.employee-table .employee-empty {
  text-align: center;
  color: var(--ink-soft);
  padding: 28px 16px;
}
.admin-field-file input[type="file"] {
  padding: 10px 12px;
  background: #fff;
  cursor: pointer;
}
.admin-field-check {
  display: flex;
  align-items: flex-end;
  min-height: 100%;
}
.admin-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}
.admin-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan-deep);
}
.admin-check-block { margin-top: 4px; }
.admin-coa-upload-bar {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(248, 251, 248, 0.92);
}
.admin-field-compact {
  flex: 1 1 140px;
  min-width: 0;
  gap: 4px;
}
.admin-field-compact label {
  font-size: 10px;
  letter-spacing: .1em;
}
.admin-field-compact input[type="text"],
.admin-field-compact input[type="file"] {
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 10px;
}
.admin-field-compact .coa-sort-input {
  width: 56px;
  min-width: 56px;
  max-width: 56px;
  height: 36px;
  padding: 0 8px;
  line-height: 36px;
  font-size: 13px;
  border-radius: 10px;
}
.admin-check-compact {
  flex: 0 0 auto;
  padding-bottom: 8px;
  font-size: 13px;
  gap: 8px;
}
.admin-check-compact .coa-show-text { color: var(--ink-soft); }
.admin-coa-upload-bar > .admin-btn { flex: 0 0 auto; margin-bottom: 1px; }
.admin-coa-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.admin-coa-toolbar span {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-soft);
}
.admin-coa-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-coa-empty {
  margin: 0;
  padding: 24px 16px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  text-align: center;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.admin-coa-list-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.admin-coa-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}
.admin-coa-table th,
.admin-coa-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.admin-coa-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(248, 251, 248, 0.98);
}
.admin-coa-table tr:last-child td { border-bottom: 0; }
.admin-coa-row.is-enabled { background: rgba(42, 169, 224, 0.05); }
.admin-coa-row.is-enabled .coa-col-order {
  color: var(--cyan-deep);
  font-weight: 900;
}
.admin-coa-row.is-missing { opacity: .76; }
.coa-col-order {
  width: 72px;
  text-align: center;
  white-space: nowrap;
}
.coa-sort-input {
  display: block;
  width: 56px;
  min-width: 56px;
  max-width: 56px;
  height: 36px;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0 8px;
  font: inherit;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  line-height: 36px;
  color: var(--ink);
  text-align: center;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -moz-appearance: textfield;
  appearance: textfield;
}
.coa-sort-input::placeholder {
  color: rgba(14, 42, 56, 0.34);
  font-weight: 700;
  font-size: 12px;
}
.coa-sort-input::-webkit-outer-spin-button,
.coa-sort-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.coa-sort-input:hover {
  border-color: rgba(42, 169, 224, 0.42);
  background: #fff;
}
.coa-sort-input:focus {
  outline: 0;
  border-color: rgba(42, 169, 224, 0.72);
  box-shadow: 0 0 0 3px rgba(42, 169, 224, 0.12);
  background: #fff;
}
.admin-field-sort {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  max-width: none;
  align-items: flex-start;
}
.admin-field-sort .coa-sort-input {
  width: 56px;
  min-width: 56px;
  max-width: 56px;
}
.coa-col-order .coa-sort-input {
  margin-inline: auto;
}
.coa-col-thumb { width: 76px; }
.coa-col-show { width: 88px; white-space: nowrap; }
.coa-col-actions { width: 108px; }
.coa-thumb {
  display: block;
  width: 64px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f3f7f8;
  line-height: 0;
  transition: transform .15s, box-shadow .15s;
}
.coa-thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px -12px rgba(14, 42, 56, 0.45);
}
.coa-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coa-thumb-missing {
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  color: #9b1c1c;
  background: rgba(220, 56, 56, 0.08);
}
.coa-col-label .coa-label-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  padding: 6px 8px;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.coa-col-label .coa-label-input:hover {
  border-color: var(--line);
  background: #fff;
}
.coa-col-label .coa-label-input:focus {
  outline: 0;
  border-color: rgba(42, 169, 224, 0.72);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42, 169, 224, 0.12);
}
.coa-row-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.admin-btn-icon {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.admin-btn-icon:hover:not(:disabled) {
  border-color: rgba(42, 169, 224, 0.42);
  background: rgba(42, 169, 224, 0.08);
}
.admin-btn-icon:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.admin-btn-icon-danger:hover:not(:disabled) {
  border-color: rgba(180, 35, 24, 0.42);
  background: rgba(180, 35, 24, 0.08);
  color: #b42318;
}
.admin-page.is-authed .admin-shell {
  width: min(1120px, calc(100% - 32px));
}
@media (max-width: 900px) {
  .verify-shell { grid-template-columns: 1fr; }
  .verify-visual { display: none; }
  .admin-form-grid-2,
  .admin-form-grid-3 { grid-template-columns: 1fr; }
  .admin-tabs { gap: 6px; }
  .admin-tab { flex: 1 1 auto; justify-content: center; padding: 10px 14px; }
}
@media (max-width: 620px) {
  .verify-shell, .admin-shell { width: min(100% - 24px, 1180px); padding: 24px 0; }
  .verify-input-row { grid-template-columns: 1fr; }
  .verify-input-row button { width: 100%; }
}

/* ---------- Image Contact Buttons ---------- */
.contact-img-btn {
  display: inline-flex;
  align-items: center;
  width: 176px;
  max-width: 100%;
  line-height: 0;
  border-radius: 999px;
  transition: transform 0.22s ease, filter 0.22s ease;
  vertical-align: middle;
}
.contact-img-btn img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 999px;
}
.contact-img-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.03);
}
.topbar .contact-img-btn { width: 142px; }
.cta-contacts .val .contact-img-btn { width: 190px; }
.footer-contact .contact-img-btn { width: 148px; }
.faq-contact-card .contact-img-btn { width: 190px; }
html[lang="en"] .contact-img-btn { font-size: 0; }
@media (max-width: 620px) {
  .topbar .contact-img-btn { width: 124px; }
  .cta-contacts .val .contact-img-btn,
  .faq-contact-card .contact-img-btn { width: 170px; }
}
