/* ============================================================
   鼎衡标准化服务（嘉兴）有限公司 · 官网设计系统
   深靛蓝（权威） × 朱红钤印（标准批准） × 暖纸白（文书）
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --ink: #0c2e4c;
  --ink-deep: #08223a;
  --ink-2: #123f63;
  --blue: #1e6aa8;
  --blue-bright: #2f86c4;
  --blue-soft: #e8f1f8;
  --seal: #c0392b;
  --seal-dark: #a32d20;
  --seal-soft: #fbeae7;
  --bronze: #b08d57;
  --paper: #f6f4ef;
  --paper-2: #efece4;
  --white: #ffffff;
  --text: #1a2733;
  --muted: #5a6b7b;
  --faint: #8493a0;
  --line: #e4e1d9;
  --line-blue: #dde6ee;
  --shadow-sm: 0 2px 10px rgba(12, 46, 76, 0.06);
  --shadow: 0 10px 34px rgba(12, 46, 76, 0.10);
  --shadow-lg: 0 22px 60px rgba(8, 34, 58, 0.18);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --font-serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, sans-serif;
  --container: 1240px;
  --header-h: 82px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; color: var(--ink); }
::selection { background: var(--seal); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; position: relative; }
.section.paper { background: var(--paper); }
.section.ink { background: var(--ink); color: #d7e2ec; }
.text-center { text-align: center; }

/* ---------- Section heading ---------- */
.shead { max-width: 760px; margin-bottom: 56px; }
.shead.center { margin-left: auto; margin-right: auto; text-align: center; }
.shead .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 3px; color: var(--seal);
  font-weight: 600; text-transform: uppercase; margin-bottom: 16px;
}
.shead .eyebrow::before {
  content: ""; width: 22px; height: 22px;
  background: var(--seal);
  border-radius: 4px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M12 2 3 6v6c0 5 3.8 8.5 9 10 5.2-1.5 9-5 9-10V6l-9-4Zm0 5.5 4 1.8V13c0 2.8-1.7 4.8-4 5.7-2.3-.9-4-2.9-4-5.7V9.3l4-1.8Z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M12 2 3 6v6c0 5 3.8 8.5 9 10 5.2-1.5 9-5 9-10V6l-9-4Zm0 5.5 4 1.8V13c0 2.8-1.7 4.8-4 5.7-2.3-.9-4-2.9-4-5.7V9.3l4-1.8Z'/></svg>") center/contain no-repeat;
}
.shead h2 { font-family: var(--font-serif); font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: 1px; }
.shead .sub { margin-top: 16px; color: var(--muted); font-size: 16px; }
.shead.center .eyebrow::after { content: ""; width: 40px; height: 1px; background: var(--seal); }
.shead.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; letter-spacing: 1px;
  transition: all .28s ease; white-space: nowrap; cursor: pointer;
  border: 1.5px solid transparent;
}
.btn .arr { transition: transform .28s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--seal); color: #fff; box-shadow: 0 8px 22px rgba(192, 57, 43, .28); }
.btn-primary:hover { background: var(--seal-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(192, 57, 43, .36); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(30, 106, 168, .26); }
.btn-blue:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-sm { padding: 9px 20px; font-size: 14px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink-deep); color: #b9c9d7;
  font-size: 13.5px; position: relative; z-index: 60;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar .tb-left { display: flex; align-items: center; gap: 26px; }
.topbar .tb-left a { display: inline-flex; align-items: center; gap: 7px; color: #c6d4e0; }
.topbar .tb-left a:hover { color: #fff; }
.topbar .tb-right { display: flex; align-items: center; gap: 20px; }
.topbar .tb-right a { color: #b9c9d7; display: inline-flex; align-items: center; gap: 6px; }
.topbar .tb-right a:hover { color: #fff; }
.tb-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--seal); display: inline-block; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 55;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-blue);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.logo { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.logo .mark { width: 50px; height: 50px; flex-shrink: 0; }
.logo .lt { line-height: 1.25; }
.logo .lt b { display: block; font-family: var(--font-serif); font-size: 17px; color: var(--ink); letter-spacing: .5px; font-weight: 700; white-space: nowrap; }
.logo .lt span { display: block; font-size: 10.5px; color: var(--faint); letter-spacing: .5px; margin-top: 2px; }

.nav { display: flex; align-items: center; }
.nav > ul { display: flex; align-items: center; gap: 2px; }
.nav > ul > li { position: relative; }
.nav > ul > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 11px; font-size: 15px; font-weight: 500; color: var(--ink);
  position: relative; white-space: nowrap;
}
.nav > ul > li > a::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 4px; height: 2px;
  background: var(--seal); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.nav > ul > li:hover > a, .nav > ul > li.active > a { color: var(--seal); }
.nav > ul > li:hover > a::after, .nav > ul > li.active > a::after { transform: scaleX(1); }
.nav .caret { width: 9px; height: 9px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-2px); }

/* dropdown */
.nav .dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(10px);
  min-width: 230px; background: #fff; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); border: 1px solid var(--line-blue);
  padding: 10px; opacity: 0; visibility: hidden; transition: all .28s ease;
}
.nav > ul > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav .dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: 5px; font-size: 14.5px; color: var(--text); white-space: nowrap;
}
.nav .dropdown a .n { color: var(--seal); font-family: var(--font-serif); font-size: 12px; opacity: .7; }
.nav .dropdown a:hover { background: var(--blue-soft); color: var(--blue); }
.nav .dropdown.wide { min-width: 520px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); border: 1px solid var(--line-blue); transition: all .25s ease;
}
.icon-btn:hover { background: var(--blue-soft); color: var(--blue); border-color: var(--blue); }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile drawer ---------- */
.mobile-nav {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); z-index: 100;
  background: #fff; box-shadow: var(--shadow-lg); transform: translateX(100%);
  transition: transform .35s ease; display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .mn-head { padding: 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-blue); }
.mobile-nav .mn-body { padding: 12px 16px 30px; }
.mn-item { border-bottom: 1px solid var(--line); }
.mn-item > .mn-link {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 15px 6px; font-size: 16px; font-weight: 600; color: var(--ink); text-align: left;
}
.mn-item .mn-sub { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.mn-item.open .mn-sub { max-height: 600px; }
.mn-item .mn-sub a { display: block; padding: 11px 10px 11px 22px; font-size: 14.5px; color: var(--muted); }
.mn-item .mn-sub a:hover { color: var(--seal); }
.mn-item .mn-plus { transition: transform .3s ease; color: var(--faint); font-size: 20px; }
.mn-item.open .mn-plus { transform: rotate(45deg); }
.mn-foot { margin-top: auto; padding: 22px; background: var(--paper); }
.mn-foot p { font-size: 14px; color: var(--muted); margin-bottom: 6px; }
.mn-foot .btn { width: 100%; margin-top: 10px; }
.nav-overlay { position: fixed; inset: 0; background: rgba(8,34,58,.5); z-index: 90; opacity: 0; visibility: hidden; transition: all .3s ease; }
.nav-overlay.show { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; height: clamp(560px, 86vh, 820px); overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.08); transition: transform 7s ease; }
.hero-slide.active .bg { transform: scale(1); }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,34,58,.92) 0%, rgba(8,34,58,.72) 42%, rgba(8,34,58,.28) 75%, rgba(8,34,58,.12) 100%);
}
.hero-inner { position: relative; z-index: 3; height: 100%; display: flex; align-items: center; }
.hero-content { max-width: 680px; color: #fff; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px; font-size: 14px; letter-spacing: 3px;
  color: #ffd9d4; margin-bottom: 24px; font-weight: 500;
}
.hero-tag::before { content: ""; width: 34px; height: 2px; background: var(--seal); }
.hero-content h1 {
  font-family: var(--font-serif); color: #fff; font-weight: 700;
  font-size: clamp(34px, 5vw, 58px); line-height: 1.22; letter-spacing: 2px; margin-bottom: 22px;
}
.hero-content h1 em { color: #ff8d7f; font-style: normal; }
.hero-content p { font-size: clamp(15px, 1.4vw, 18px); color: #d3e0ec; max-width: 560px; margin-bottom: 38px; line-height: 1.9; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-seal { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); z-index: 2; opacity: .16; width: 280px; height: 280px; }
.hero-dots { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); display: flex; gap: 12px; z-index: 5; }
.hero-dots button { width: 30px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.35); transition: all .3s ease; }
.hero-dots button.active { background: var(--seal); width: 46px; }
.hero-bar {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  background: rgba(8,34,58,.55); backdrop-filter: blur(6px); border-top: 1px solid rgba(255,255,255,.12);
}
.hero-bar .container { display: flex; }
.hero-bar .hb-item { flex: 1; padding: 18px 10px; display: flex; align-items: center; gap: 12px; color: #cddbe8; font-size: 14px; border-right: 1px solid rgba(255,255,255,.1); }
.hero-bar .hb-item:last-child { border-right: none; }
.hero-bar .hb-item svg { color: #7fb2dd; flex-shrink: 0; }
.hero-bar .hb-item b { color: #fff; font-weight: 600; display: block; font-size: 15px; }
.hero-scroll { position: absolute; right: 26px; top: 50%; transform: translateY(-50%); z-index: 5; writing-mode: vertical-rl; color: rgba(255,255,255,.6); font-size: 12px; letter-spacing: 4px; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink); position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 46px 46px; }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 50px 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--font-serif); font-size: clamp(38px, 4.4vw, 56px); font-weight: 700; color: #fff; line-height: 1; white-space: nowrap; }
.stat .num .suf { color: #ff8d7f; }
.stat .num .pre { color: #ff8d7f; }
.stats-grid .stat:first-child .num .pre,
.stats-grid .stat:first-child .num .suf { font-size: .5em; font-weight: 600; }
.stats-grid .stat:first-child .num .pre { margin-right: .14em; }
.stats-grid .stat:first-child .num .suf { margin-left: .14em; }
.stat .lab { margin-top: 14px; font-size: 17px; font-weight: 600; color: #e4edf5; }
.stat .note { margin-top: 8px; font-size: 13px; color: #93a8ba; line-height: 1.6; }

/* ---------- Generic cards ---------- */
.grid { display: grid; gap: 28px; }
.g-2 { grid-template-columns: repeat(2,1fr); }
.g-3 { grid-template-columns: repeat(3,1fr); }
.g-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius);
  padding: 34px 30px; transition: all .32s ease; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .ico {
  width: 60px; height: 60px; border-radius: 12px; background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 22px;
  transition: all .32s ease;
}
.card:hover .ico { background: var(--seal); color: #fff; transform: rotate(-6deg); }
.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15px; }
.card .cn { position: absolute; right: 18px; top: 14px; font-family: var(--font-serif); font-size: 40px; color: #eef2f6; font-weight: 700; transition: color .3s ease; }
.card:hover .cn { color: var(--seal-soft); }
.card .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--blue); font-size: 14px; font-weight: 600; }
.card:hover .more { color: var(--seal); }

/* ---------- About intro ---------- */
.about-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-media .exp {
  position: absolute; left: -26px; bottom: 36px; background: var(--seal); color: #fff;
  border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow);
}
.about-media .exp b { font-family: var(--font-serif); font-size: 34px; display: block; line-height: 1; }
.about-media .exp span { font-size: 13.5px; opacity: .92; }
.about-text .lead-seal { display: inline-flex; align-items: center; gap: 10px; color: var(--seal); font-weight: 600; letter-spacing: 2px; font-size: 14px; margin-bottom: 18px; }
.about-text h2 { font-family: var(--font-serif); font-size: clamp(28px,3vw,38px); margin-bottom: 22px; }
.about-text p { color: var(--muted); margin-bottom: 18px; }
.about-points { display: grid; gap: 16px; margin: 28px 0; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; }
.about-points .tick { width: 24px; height: 24px; border-radius: 50%; background: var(--seal-soft); color: var(--seal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.about-points b { color: var(--ink); display: block; }
.about-points span { color: var(--muted); font-size: 14.5px; }

/* ---------- Areas ---------- */
.area-card { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 30px 28px; transition: all .32s ease; height: 100%; display: flex; flex-direction: column; }
.area-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.area-card .ah { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.area-card .ah .ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 10px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; transition: all .3s ease; }
.area-card:hover .ah .ico { background: var(--seal); }
.area-card h3 { font-size: 17px; white-space: nowrap; line-height: 1.35; }
.area-card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.area-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.area-card .tags span { font-size: 12.5px; color: var(--blue); background: var(--blue-soft); padding: 4px 11px; border-radius: 20px; }
.grid.area-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1280px) { .grid.area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid.area-grid { grid-template-columns: 1fr; } }

/* ---------- Process timeline ---------- */
.process-flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.pstep { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 30px 28px; transition: all .3s ease; }
.pstep:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.pstep .pn { font-family: var(--font-serif); font-size: 16px; color: var(--seal); font-weight: 700; letter-spacing: 2px; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.pstep .pn::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.pstep h3 { font-size: 18px; margin-bottom: 16px; }
.pstep li { position: relative; padding-left: 20px; color: var(--muted); font-size: 14.5px; margin-bottom: 9px; }
.pstep li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 7px; height: 7px; border: 1.5px solid var(--blue); border-radius: 50%; }

/* ---------- Advantages (seal chars) ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.adv-card { background: #fff; border-radius: var(--radius); padding: 36px 32px; border: 1px solid var(--line-blue); transition: all .32s ease; display: flex; gap: 22px; }
.adv-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.adv-char {
  width: 64px; height: 64px; flex-shrink: 0; border-radius: 10px;
  background: var(--seal); color: #fff; font-family: var(--font-serif);
  font-size: 34px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(192,57,43,.3);
}
.adv-card h3 { font-size: 19px; margin-bottom: 10px; white-space: nowrap; }
.adv-card p { color: var(--muted); font-size: 14.5px; }
@media (min-width: 1081px) { .adv-grid.adv-grid-side { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cases ---------- */
.case-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.case-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-blue); transition: all .34s ease; }
.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-7px); }
.case-thumb { position: relative; height: 250px; overflow: hidden; }
.case-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.case-card:hover .case-thumb img { transform: scale(1.08); }
.case-thumb .area { position: absolute; left: 18px; top: 18px; background: rgba(12,46,76,.86); color: #fff; font-size: 13px; padding: 6px 14px; border-radius: 20px; backdrop-filter: blur(4px); }
.case-body { padding: 28px 30px 30px; }
.case-body h3 { font-size: 20px; margin-bottom: 14px; line-height: 1.45; }
.case-body p { color: var(--muted); font-size: 14.5px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.case-body .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--seal); font-weight: 600; font-size: 14.5px; }

/* case detail */
.case-detail-banner { color: #fff; }
.case-detail .cd-area { color: #ffb3a8; letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.case-detail h1 { color: #fff; font-family: var(--font-serif); font-size: clamp(28px,3.6vw,44px); max-width: 900px; }
.cd-block { margin-bottom: 46px; }
.cd-block .blk-label { display: flex; align-items: center; gap: 12px; font-family: var(--font-serif); font-size: 22px; color: var(--ink); margin-bottom: 18px; }
.cd-block .blk-label .sq { width: 8px; height: 24px; background: var(--seal); border-radius: 2px; }
.cd-block p { color: var(--muted); margin-bottom: 14px; }
.cd-results { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin: 30px 0; }
.cd-result { background: var(--paper); border-radius: var(--radius); padding: 28px 18px; text-align: center; border: 1px solid var(--line); }
.cd-result b { font-family: var(--font-serif); font-size: 32px; color: var(--seal); display: block; line-height: 1.1; }
.cd-result span { font-size: 13.5px; color: var(--muted); margin-top: 8px; display: block; }
.cd-outcome { background: var(--blue-soft); border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; padding: 26px 30px; color: var(--ink-2); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.testi { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 32px; position: relative; transition: all .3s ease; }
.testi:hover { box-shadow: var(--shadow); }
.testi .qmark { font-family: var(--font-serif); font-size: 60px; color: var(--seal-soft); line-height: .6; position: absolute; right: 26px; top: 34px; }
.testi p { color: var(--text); font-size: 16px; margin-bottom: 22px; position: relative; z-index: 2; }
.testi .who { color: var(--blue); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.testi .who::before { content: ""; width: 26px; height: 2px; background: var(--seal); }

/* ---------- Partners / logo cloud ---------- */
.partner-cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-bottom: 40px; }
.pcat { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 30px; }
.pcat h3 { font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.pcat h3 .d { width: 8px; height: 8px; background: var(--seal); border-radius: 2px; }
.pcat p { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.pcat .names { font-size: 13px; color: var(--faint); border-top: 1px dashed var(--line); padding-top: 12px; }
.logo-cloud { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.logo-cloud .lc {
  background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius-sm);
  aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; padding: 18px;
  filter: grayscale(.35); opacity: .85; transition: all .32s ease;
}
.logo-cloud .lc:hover { filter: grayscale(0); opacity: 1; box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--blue); }
.logo-cloud .lc img { max-height: 64px; width: auto; max-width: 100%; object-fit: contain; }

.client-groups { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 40px; }
.client-group { padding: 24px; background: var(--paper); border-radius: var(--radius); }
.client-group h4 { font-size: 16px; color: var(--seal); margin-bottom: 10px; }
.client-group p { font-size: 13.5px; color: var(--muted); }

/* ---------- News ---------- */
.news-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; border-bottom: 1px solid var(--line-blue); padding-bottom: 18px; }
.news-tabs button { padding: 9px 22px; border-radius: 24px; font-size: 15px; color: var(--muted); font-weight: 500; transition: all .25s ease; }
.news-tabs button:hover { color: var(--blue); background: var(--blue-soft); }
.news-tabs button.active { background: var(--seal); color: #fff; }
.news-list { display: grid; gap: 6px; }
.news-row { display: flex; gap: 22px; padding: 26px 18px; border-radius: var(--radius-sm); align-items: flex-start; transition: all .25s ease; border-bottom: 1px solid var(--line); }
.news-row:hover { background: var(--paper); }
.news-date { flex-shrink: 0; width: 84px; text-align: center; }
.news-date b { font-family: var(--font-serif); font-size: 32px; color: var(--blue); display: block; line-height: 1; }
.news-date span { font-size: 13px; color: var(--faint); }
.news-row:hover .news-date b { color: var(--seal); }
.news-main { flex: 1; }
.news-main h3 { font-size: 19px; margin-bottom: 9px; transition: color .25s ease; font-weight: 600; }
.news-row:hover .news-main h3 { color: var(--seal); }
.news-main p { color: var(--muted); font-size: 14.5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-cat-tag { font-size: 12px; color: var(--seal); background: var(--seal-soft); padding: 2px 10px; border-radius: 4px; margin-right: 10px; vertical-align: middle; }

/* news article */
.article-head { border-bottom: 1px solid var(--line); padding-bottom: 28px; margin-bottom: 34px; }
.article-head h1 { font-family: var(--font-serif); font-size: clamp(26px,3.2vw,38px); margin-bottom: 20px; line-height: 1.4; }
.article-meta { display: flex; flex-wrap: wrap; gap: 22px; color: var(--faint); font-size: 14px; align-items: center; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-body p { color: var(--text); margin-bottom: 22px; font-size: 16.5px; line-height: 2; }
.article-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 40px; padding: 22px 0; border-top: 1px solid var(--line); }
.article-share { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 14px; }
.share-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-blue); display: inline-flex; align-items: center; justify-content: center; color: var(--muted); transition: all .25s ease; }
.share-btn:hover { background: var(--seal); color: #fff; border-color: var(--seal); }

/* ---------- Experts ---------- */
.expert-cats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 50px; }
.expert-cat { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 30px 26px; transition: all .3s ease; position: relative; overflow: hidden; }
.expert-cat:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.expert-cat .n { font-family: var(--font-serif); font-size: 30px; color: var(--seal); font-weight: 700; margin-bottom: 12px; }
.expert-cat h3 { font-size: 18px; margin-bottom: 10px; }
.expert-cat p { color: var(--muted); font-size: 14px; }
.expert-fields { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 50px; }
.expert-fields span { background: var(--blue-soft); color: var(--blue); padding: 9px 20px; border-radius: 24px; font-size: 14.5px; font-weight: 500; }
.expert-rep { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.expert-card { display: flex; gap: 20px; background: var(--paper); border-radius: var(--radius); padding: 28px; }
.expert-avatar { width: 66px; height: 66px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-serif); font-size: 24px; }
.expert-card h4 { font-size: 17px; }
.expert-card .field { color: var(--seal); font-size: 13.5px; margin: 4px 0 9px; font-weight: 600; }
.expert-card p { color: var(--muted); font-size: 14px; }

/* ---------- Downloads ---------- */
.download-list { display: grid; gap: 18px; }
.download-row { display: flex; align-items: center; gap: 24px; background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 24px 28px; transition: all .28s ease; }
.download-row:hover { box-shadow: var(--shadow-sm); border-color: var(--blue); }
.dl-ico { width: 56px; height: 56px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dl-info { flex: 1; }
.dl-info h3 { font-size: 17px; display: flex; align-items: center; gap: 10px; }
.dl-info h3 .tag { font-size: 11.5px; background: var(--seal); color: #fff; padding: 2px 9px; border-radius: 4px; font-weight: 500; }
.dl-info p { color: var(--muted); font-size: 14px; margin-top: 5px; }
.dl-size { color: var(--faint); font-size: 13.5px; flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line-blue); border-radius: var(--radius); background: #fff; overflow: hidden; transition: all .28s ease; }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--blue); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 28px; text-align: left; font-size: 17px; font-weight: 600; color: var(--ink); }
.faq-q .qn { color: var(--seal); font-family: var(--font-serif); flex-shrink: 0; }
.faq-q .plus { width: 28px; height: 28px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .3s ease; font-size: 20px; }
.faq-item.open .plus { background: var(--seal); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 28px 24px 64px; color: var(--muted); font-size: 15.5px; }

/* ---------- Inner page banner / breadcrumb ---------- */
.page-banner { position: relative; padding: 78px 0 70px; color: #fff; overflow: hidden; }
.page-banner .bg { position: absolute; inset: 0; background: url("../assets/img/banner-inner.jpg") center/cover; }
.page-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,34,58,.93), rgba(12,46,76,.78)); }
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-family: var(--font-serif); font-size: clamp(30px,4vw,46px); letter-spacing: 2px; }
.page-banner .pdesc { color: #c3d2e0; margin-top: 14px; max-width: 680px; font-size: 16px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-size: 14px; color: #9db3c6; margin-top: 22px; }
.breadcrumb a { color: #c3d2e0; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .cur { color: #ffb3a8; }

/* sub layout with side nav */
.sub-layout { display: grid; grid-template-columns: 270px 1fr; gap: 44px; align-items: start; }
.side-nav { position: sticky; top: calc(var(--header-h) + 24px); background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); overflow: hidden; }
.side-nav .sn-title { background: var(--ink); color: #fff; padding: 20px 24px; font-family: var(--font-serif); font-size: 18px; }
.side-nav button { display: flex; align-items: center; justify-content: space-between; width: 100%; text-align: left; padding: 16px 24px; font-size: 15px; color: var(--text); border-bottom: 1px solid var(--line); transition: all .25s ease; }
.side-nav button:last-child { border-bottom: none; }
.side-nav button:hover { background: var(--paper); color: var(--blue); }
.side-nav button.active { color: var(--seal); font-weight: 600; box-shadow: inset 3px 0 0 var(--seal); background: var(--seal-soft); }
.sub-panel { display: none; animation: fadeUp .5s ease; }
.sub-panel.active { display: block; }
.sub-panel h2 { font-family: var(--font-serif); font-size: 28px; margin-bottom: 18px; }
.sub-panel .intro { color: var(--muted); font-size: 16px; margin-bottom: 30px; padding-left: 18px; border-left: 3px solid var(--seal); }

/* level tabs (standard levels) */
.level-tabs { display: flex; gap: 8px; flex-wrap: nowrap; margin-bottom: 40px; }
.level-tabs > a { flex: 1 1 0; min-width: 0; display: flex; align-items: center; justify-content: center; text-align: center; white-space: nowrap; transition: all .25s ease; }
.level-tabs button { padding: 13px 26px; border-radius: var(--radius-sm); border: 1.5px solid var(--line-blue); font-size: 15.5px; font-weight: 600; color: var(--muted); background: #fff; transition: all .25s ease; }
.level-tabs button:hover { border-color: var(--blue); color: var(--blue); }
.level-tabs button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
@media (max-width: 880px) {
  .level-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
  .level-tabs > a { flex: 0 0 auto; padding: 11px 16px !important; font-size: 14px !important; }
}
.level-panel { display: none; animation: fadeUp .45s ease; }
.level-panel.active { display: block; }
.level-panel .lp-intro { background: var(--paper); border-radius: var(--radius); padding: 28px 32px; color: var(--ink-2); margin-bottom: 36px; border: 1px solid var(--line); }
.lp-cols { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px 28px; margin-bottom: 40px; }
.lp-col { display: flex; gap: 14px; padding: 18px 20px; background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius-sm); }
.lp-col .n { width: 30px; height: 30px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; font-weight: 700; }
.lp-col b { font-size: 15.5px; display: block; }
.lp-col span { font-size: 13.5px; color: var(--muted); }
.lp-process { counter-reset: step; margin-bottom: 40px; }
.lp-process li { position: relative; padding: 14px 0 14px 52px; border-left: 2px dashed var(--line-blue); margin-left: 18px; color: var(--text); font-size: 15px; }
.lp-process li::before { counter-increment: step; content: counter(step); position: absolute; left: -17px; top: 12px; width: 32px; height: 32px; border-radius: 50%; background: #fff; border: 2px solid var(--blue); color: var(--blue); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.lp-process li:last-child { border-left: 2px dashed transparent; }
.lp-adv { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.lp-adv .a { background: var(--blue-soft); border-radius: var(--radius); padding: 24px; }
.lp-adv .a b { display: block; color: var(--ink); margin-bottom: 8px; font-size: 16px; }
.lp-adv .a span { color: var(--muted); font-size: 14px; }
.lp-badges { display: grid; gap: 12px; margin-top: 30px; }
.lp-badges li { background: var(--seal-soft); color: var(--seal-dark); padding: 13px 22px; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 500; }
.lp-subhead { font-family: var(--font-serif); font-size: 20px; color: var(--ink); margin: 8px 0 22px; display: flex; align-items: center; gap: 12px; }
.lp-subhead::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- Forms ---------- */
.form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow); border: 1px solid var(--line-blue); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 9px; }
.form-field label .req { color: var(--seal); }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 16px; border: 1.5px solid var(--line-blue); border-radius: var(--radius-sm);
  background: #fbfcfd; color: var(--text); transition: all .25s ease;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(30,106,168,.12); }
.captcha-row { display: flex; gap: 12px; }
.captcha-row input { flex: 1; }
.captcha-img { width: 120px; height: 46px; border-radius: var(--radius-sm); background: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--ink-2); letter-spacing: 4px; border: 1.5px solid var(--line-blue); user-select: none; cursor: pointer; }
.form-note { font-size: 13px; color: var(--faint); margin-top: 10px; }
.form-error { color: var(--seal); font-size: 13px; margin-top: 6px; display: none; }
.form-field.invalid input, .form-field.invalid textarea { border-color: var(--seal); }
.form-field.invalid .form-error { display: block; }

/* contact info cards */
.contact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-bottom: 40px; }
.contact-card { display: flex; gap: 18px; background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 26px 28px; transition: all .28s ease; }
.contact-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.contact-card .ci { width: 50px; height: 50px; border-radius: 11px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card b { display: block; font-size: 14px; color: var(--muted); font-weight: 500; margin-bottom: 4px; }
.contact-card .v { font-size: 17px; color: var(--ink); font-weight: 600; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-blue); margin-bottom: 40px; background: #e8f1f8; }
.map-embed .amap-box { width: 100%; height: 380px; }
.map-embed .amap-fallback {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  height: 380px; background: linear-gradient(135deg, #e8f1f8, #d3e4f1); text-align: center; padding: 20px;
}
.map-embed .amap-fallback .pin { width: 52px; height: 52px; }
.map-embed .amap-fallback p { color: var(--ink-2); font-weight: 600; }
.map-open {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  background: #fff; border-top: 1px solid var(--line-blue); transition: background .15s;
}
.map-open:hover { background: #f2f7fb; color: var(--blue); }
@media (max-width: 600px) { .map-embed .amap-box, .map-embed .amap-fallback { height: 300px; } }

/* QR block */
.qr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.qr-card { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 28px; text-align: center; }
.qr-card img { width: 180px; height: 180px; object-fit: contain; margin: 0 auto 16px; border-radius: 8px; }
.qr-card b { font-size: 16px; display: block; }
.qr-card span { font-size: 13.5px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: 96px 0; color: #fff; overflow: hidden; text-align: center; }
.cta-band .bg { position: absolute; inset: 0; background: url("../assets/img/cta-future.jpg") center/cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,34,58,.9), rgba(12,46,76,.72)); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-family: var(--font-serif); font-size: clamp(28px,3.6vw,42px); margin-bottom: 18px; }
.cta-band p { color: #d3e0ec; max-width: 640px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); color: #9db3c6; padding-top: 70px; position: relative; }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--seal), var(--bronze), var(--blue)); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; }
.footer-brand .logo .lt b { color: #fff; }
.footer-brand p { font-size: 14px; color: #8499ab; margin: 22px 0; line-height: 1.9; }
.footer-brand .slogan { font-family: var(--font-serif); color: #d7b98e; font-size: 17px; letter-spacing: 3px; }
.footer h4 { color: #e7eef5; font-size: 16px; margin-bottom: 22px; position: relative; padding-bottom: 12px; font-weight: 600; }
.footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--seal); }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: #93a8ba; display: inline-flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: #ffb3a8; }
.footer-col a::before { content: "›"; color: var(--seal); opacity: 0; transition: opacity .2s; }
.footer-col a:hover::before { opacity: 1; }
.footer-contact li { display: flex; gap: 12px; font-size: 14px; margin-bottom: 16px; align-items: flex-start; color: #93a8ba; }
.footer-contact svg { color: #6f93b2; flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: #c3d2e0; }
.footer-contact a:hover { color: #fff; }
.footer-qr { display: flex; gap: 14px; margin-top: 8px; }
.footer-qr .fq { text-align: center; }
.footer-qr img { width: 88px; height: 88px; border-radius: 6px; background: #fff; padding: 4px; object-fit: contain; }
.footer-qr span { font-size: 12px; display: block; margin-top: 7px; color: #8499ab; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: #74889a; }
.footer-bottom .fb-links { display: flex; gap: 20px; }
.footer-bottom .fb-links a { font-size: 13px; color: #74889a; }
.footer-bottom .fb-links a:hover { color: #fff; }

/* ---------- Floating widgets ---------- */
.float-widget { position: fixed; right: 22px; bottom: 110px; z-index: 70; display: flex; flex-direction: column; gap: 10px; }
.fw-btn {
  width: 54px; height: 54px; border-radius: 50%; background: #fff; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; color: var(--blue);
  position: relative; transition: all .28s ease;
}
.fw-btn:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.fw-btn.phone { background: var(--seal); color: #fff; }
.fw-btn.phone:hover { background: var(--seal-dark); }
.fw-pop {
  position: absolute; right: 64px; top: 0; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 16px; width: 200px; text-align: center;
  opacity: 0; visibility: hidden; transform: translateX(10px); transition: all .28s ease;
}
.fw-btn:hover .fw-pop { opacity: 1; visibility: visible; transform: translateX(0); }
.fw-pop img { width: 160px; height: 160px; object-fit: contain; margin: 0 auto 8px; }
.fw-pop b { font-size: 14px; display: block; }
.fw-pop span { font-size: 12px; color: var(--muted); }
.back-top { opacity: 0; visibility: hidden; transition: all .3s ease; }
.back-top.show { opacity: 1; visibility: visible; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: all .3s ease; }
.modal.show { opacity: 1; visibility: visible; }
.modal-overlay { position: absolute; inset: 0; background: rgba(8,24,40,.62); backdrop-filter: blur(3px); }
.modal-box { position: relative; background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 560px; max-height: 88vh; overflow-y: auto; transform: translateY(20px); transition: transform .3s ease; box-shadow: var(--shadow-lg); }
.modal.show .modal-box { transform: translateY(0); }
.modal-head { padding: 24px 28px; border-bottom: 1px solid var(--line-blue); display: flex; align-items: center; justify-content: space-between; }
.modal-head h3 { font-family: var(--font-serif); font-size: 21px; }
.modal-close { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 22px; transition: all .25s; }
.modal-close:hover { background: var(--paper); color: var(--seal); }
.modal-body { padding: 28px; }
.modal-tabs { display: flex; border-bottom: 1px solid var(--line-blue); margin: 0 28px; }
.modal-tabs button { flex: 1; padding: 15px; font-size: 16px; color: var(--muted); font-weight: 600; position: relative; }
.modal-tabs button.active { color: var(--seal); }
.modal-tabs button.active::after { content: ""; position: absolute; bottom: -1px; left: 20%; right: 20%; height: 2.5px; background: var(--seal); }

/* search modal results */
.search-input-row { display: flex; gap: 10px; margin-bottom: 20px; }
.search-input-row input { flex: 1; padding: 13px 16px; border: 1.5px solid var(--line-blue); border-radius: var(--radius-sm); }
.search-input-row input:focus { outline: none; border-color: var(--blue); }
.search-results { display: grid; gap: 8px; max-height: 46vh; overflow-y: auto; }
.search-result { padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line-blue); transition: all .2s; cursor: pointer; }
.search-result:hover { background: var(--paper); border-color: var(--blue); }
.search-result .sr-type { font-size: 12px; color: var(--seal); font-weight: 600; }
.search-result b { display: block; font-size: 15.5px; margin: 3px 0; color: var(--ink); }
.search-result span { font-size: 13.5px; color: var(--muted); }
.search-empty { text-align: center; color: var(--faint); padding: 30px 0; font-size: 14.5px; }
mark { background: #ffe58f; color: inherit; padding: 0 2px; border-radius: 2px; }

/* member center */
.member-profile { text-align: center; padding-bottom: 10px; }
.member-avatar { width: 76px; height: 76px; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--font-serif); font-size: 30px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.member-profile b { font-size: 19px; display: block; }
.member-profile span { font-size: 13.5px; color: var(--muted); }
.member-menu { margin-top: 18px; display: grid; gap: 4px; }
.member-menu a { padding: 13px 16px; border-radius: var(--radius-sm); font-size: 15px; display: flex; align-items: center; gap: 12px; color: var(--text); }
.member-menu a:hover { background: var(--paper); color: var(--blue); }
.member-menu a svg { color: var(--blue); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; top: 30px; transform: translate(-50%, -20px); z-index: 200;
  background: var(--ink); color: #fff; padding: 15px 28px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); font-size: 15px; display: flex; align-items: center; gap: 11px;
  opacity: 0; visibility: hidden; transition: all .35s ease; max-width: 90vw;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%,0); }
.toast.success { background: #1e7d57; }
.toast.error { background: var(--seal); }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; }
.pagination button { min-width: 42px; height: 42px; border-radius: var(--radius-sm); border: 1.5px solid var(--line-blue); color: var(--muted); font-size: 15px; padding: 0 8px; transition: all .2s; }
.pagination button:hover { border-color: var(--blue); color: var(--blue); }
.pagination button.active { background: var(--seal); color: #fff; border-color: var(--seal); }
.pagination button:disabled { opacity: .4; cursor: not-allowed; }

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* founder */
.founder-hero { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: center; }
.founder-card { background: linear-gradient(160deg, var(--ink), var(--ink-2)); border-radius: var(--radius-lg); padding: 46px 40px; color: #fff; text-align: center; position: relative; overflow: hidden; }
.founder-card::before { content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; border: 2px solid rgba(255,255,255,.08); border-radius: 50%; }
.founder-mono { width: 110px; height: 110px; border-radius: 50%; background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.25); font-family: var(--font-serif); font-size: 48px; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.founder-card b { font-family: var(--font-serif); font-size: 24px; display: block; }
.founder-card span { color: #b9cdda; font-size: 14.5px; }
.founder-card .fquote { margin-top: 24px; font-family: var(--font-serif); color: #d7b98e; font-size: 16.5px; line-height: 1.9; border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; }
.founder-text .greeting { font-size: 17px; color: var(--ink); font-weight: 600; margin-bottom: 16px; }
.founder-text p { color: var(--muted); margin-bottom: 16px; text-indent: 2em; }
.founder-points { display: grid; gap: 18px; margin-top: 26px; }
.founder-points .fp { display: flex; gap: 15px; }
.founder-points .fp .n { width: 40px; height: 40px; border-radius: 9px; background: var(--seal-soft); color: var(--seal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.founder-points b { display: block; color: var(--ink); font-size: 16px; }
.founder-points span { font-size: 14px; color: var(--muted); }

/* vision cards */
.vision-hero { text-align: center; margin-bottom: 56px; }
.vision-hero .vtag { color: var(--seal); letter-spacing: 3px; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.vision-hero h2 { font-family: var(--font-serif); font-size: clamp(26px,3.2vw,40px); max-width: 900px; margin: 0 auto 22px; }
.vision-hero p { color: var(--muted); max-width: 880px; margin: 0 auto; }
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.mission-card { background: #fff; border-radius: var(--radius); padding: 34px 30px; border-top: 4px solid var(--seal); box-shadow: var(--shadow-sm); }
.mission-card .mn { font-family: var(--font-serif); font-size: 30px; color: var(--seal); margin-bottom: 16px; }
.mission-card h3 { font-size: 19px; margin-bottom: 12px; }
.mission-card p { color: var(--muted); font-size: 14.5px; }

/* history timeline vertical */
.timeline { position: relative; max-width: 920px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 130px; top: 6px; bottom: 6px; width: 2px; background: var(--line-blue); }
.tl-phase { position: relative; padding: 0 0 40px 190px; }
.tl-phase .ph-seal { position: absolute; left: 108px; top: 0; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 2.5px solid var(--seal); color: var(--seal); font-family: var(--font-serif); font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.tl-phase .ph-label { position: absolute; left: 0; top: 10px; width: 100px; text-align: right; font-weight: 700; color: var(--ink); font-size: 15px; }
.tl-body { background: var(--paper); border-radius: var(--radius); padding: 24px 28px; border: 1px solid var(--line); }
.tl-body h3 { font-size: 18px; margin-bottom: 12px; }
.tl-body li { color: var(--muted); font-size: 14.5px; padding-left: 20px; position: relative; margin-bottom: 8px; }
.tl-body li::before { content: ""; position: absolute; left: 2px; top: 11px; width: 6px; height: 6px; background: var(--seal); border-radius: 50%; }

/* honors grid */
.honor-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.honor-card { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: all .3s ease; }
.honor-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.honor-card .hi { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; background: var(--seal-soft); color: var(--seal); display: flex; align-items: center; justify-content: center; }
.honor-card b { font-size: 15.5px; display: block; line-height: 1.5; white-space: nowrap; }
.honor-card span { font-size: 13px; color: var(--muted); margin-top: 8px; display: block; }
@media (min-width: 1081px) { .honor-grid.honor-grid-side { grid-template-columns: repeat(2, 1fr); } }
.honor-subhead { font-family: var(--font-serif); font-size: 22px; margin: 10px 0 28px; display: flex; align-items: center; gap: 14px; }
.honor-subhead::before { content: ""; width: 6px; height: 24px; background: var(--seal); border-radius: 2px; }
.honor-section { margin-bottom: 60px; }

/* organization */
.org-centers { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-bottom: 60px; }
.org-center { background: var(--ink); color: #cddbe8; border-radius: var(--radius); padding: 32px 30px; }
.org-center h3 { color: #fff; font-size: 19px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.12); }
.org-center li { font-size: 14px; margin-bottom: 12px; padding-left: 18px; position: relative; line-height: 1.7; }
.org-center li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; background: var(--bronze); border-radius: 1px; transform: rotate(45deg); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.team-card { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 30px; transition: all .3s ease; }
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.team-card .ti { width: 54px; height: 54px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.team-card h3 { font-size: 18px; margin-bottom: 11px; }
.team-card p { color: var(--muted); font-size: 14px; }

/* why choose */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.why-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-blue); background: #fff; }
.why-row { padding: 26px 30px; display: flex; gap: 18px; align-items: flex-start; }
.why-row.pain { background: var(--paper); }
.why-row .wi { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 22px; }
.why-row.pain .wi { background: #e7e3da; color: #8a8375; }
.why-row.sol { background: var(--blue-soft); }
.why-row.sol .wi { background: var(--seal); color: #fff; }
.why-row b { display: block; font-size: 16.5px; margin-bottom: 5px; }
.why-row.pain b { color: #6b6558; }
.why-row.sol b { color: var(--seal); }
.why-row span { font-size: 14px; color: var(--muted); }

/* social benefits */
.sb-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.sb-card { text-align: center; }
.sb-card .si { width: 62px; height: 62px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.sb-card b { font-size: 17px; display: block; margin-bottom: 9px; }
.sb-card span { font-size: 14px; color: var(--muted); }

/* future */
.future-zones { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-bottom: 60px; }
.fz-card { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 30px; position: relative; }
.fz-card .zn { font-family: var(--font-serif); font-size: 15px; color: var(--seal); font-weight: 700; margin-bottom: 12px; }
.fz-card h3 { font-size: 19px; margin-bottom: 11px; }
.fz-card p { color: var(--muted); font-size: 14.5px; }
.future-core { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 60px; }
.fc2 { background: var(--paper); border-radius: var(--radius); padding: 28px; }
.fc2 b { color: var(--seal); display: block; margin-bottom: 9px; font-size: 16px; }
.fc2 span { color: var(--muted); font-size: 14px; }
.future-dir { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.fdir { text-align: left; padding: 26px; background: var(--ink); border-radius: var(--radius); color: #cddbe8; transition: all .3s ease; }
.fdir:hover { transform: translateY(-5px); background: var(--ink-2); }
.fdir b { color: #fff; display: block; font-size: 16px; margin-bottom: 9px; }
.fdir span { font-size: 13.5px; color: #a9bccb; }

/* culture */
.culture-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 60px; }
.cul-card { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 30px 26px; text-align: center; transition: all .3s ease; }
.cul-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.cul-card .ci2 { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--seal); color: #fff; display: flex; align-items: center; justify-content: center; }
.cul-card b { font-size: 17px; display: block; margin-bottom: 9px; }
.cul-card span { font-size: 14px; color: var(--muted); }
.cause-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cause-card { display: flex; gap: 16px; background: var(--paper); border-radius: var(--radius); padding: 26px; }
.cause-card .ci3 { width: 46px; height: 46px; border-radius: 10px; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cause-card b { display: block; font-size: 15.5px; margin-bottom: 6px; }
.cause-card span { font-size: 13.5px; color: var(--muted); }

/* cooperation */
.coop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.coop-card { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 34px 30px; transition: all .32s ease; position: relative; }
.coop-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.coop-card .cn2 { font-family: var(--font-serif); font-size: 40px; color: var(--seal-soft); font-weight: 700; line-height: 1; }
.coop-card:hover .cn2 { color: var(--seal); }
.coop-card h3 { font-size: 21px; margin: 14px 0; }
.coop-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.coop-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.coop-tags span { font-size: 13px; background: var(--blue-soft); color: var(--blue); padding: 5px 13px; border-radius: 20px; }
.coop-note { text-align: center; max-width: 820px; margin: 44px auto 0; color: var(--ink-2); font-size: 16px; background: var(--seal-soft); padding: 24px 32px; border-radius: var(--radius); }

/* insights */
.trend-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-bottom: 56px; }
.trend-card { background: #fff; border-radius: var(--radius); padding: 32px 30px; border: 1px solid var(--line-blue); transition: all .3s ease; }
.trend-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.trend-card .tn { font-family: var(--font-serif); font-size: 38px; color: var(--seal); line-height: 1; margin-bottom: 16px; }
.trend-card h3 { font-size: 18px; margin-bottom: 11px; }
.trend-card p { color: var(--muted); font-size: 14px; }
.pain-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.pain-card { background: var(--ink); border-radius: var(--radius); padding: 28px 26px; color: #cddbe8; }
.pain-card h4 { color: #fff; font-size: 17px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.pain-card h4::before { content: "!"; width: 24px; height: 24px; border-radius: 50%; background: var(--seal); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; font-family: var(--font-serif); }
.pain-card p { font-size: 13.5px; color: #a9bccb; }

/* system service */
.sys-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.sys-list { display: grid; gap: 12px; }
.sys-list li { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius-sm); padding: 15px 20px; display: flex; align-items: center; gap: 13px; font-size: 15px; }
.sys-list li::before { content: ""; width: 8px; height: 8px; background: var(--seal); border-radius: 2px; flex-shrink: 0; }
.sys-features { display: grid; gap: 18px; }
.sys-feature { display: flex; gap: 16px; background: var(--paper); border-radius: var(--radius); padding: 22px 24px; }
.sys-feature .n { width: 48px; height: 48px; border-radius: 11px; background: var(--seal); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sys-feature b { display: block; font-size: 16px; }
.sys-feature span { font-size: 14px; color: var(--muted); }

/* consulting */
.cons-block { margin-bottom: 50px; }
.cons-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cons-item { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 26px; transition: all .3s ease; }
.cons-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.cons-item b { display: block; font-size: 16px; color: var(--ink); margin-bottom: 7px; }
.cons-item span { font-size: 14px; color: var(--muted); }
.eval-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 26px; }
.eval-item { background: var(--blue-soft); border-radius: var(--radius-sm); padding: 16px 20px; font-size: 14.5px; color: var(--ink-2); display: flex; gap: 11px; align-items: center; }
.eval-item::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--seal); flex-shrink: 0; }

/* training */
.train-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.train-item { background: #fff; border: 1px solid var(--line-blue); border-radius: var(--radius); padding: 26px; transition: all .3s ease; }
.train-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.train-item b { display: block; font-size: 16px; color: var(--ink); margin-bottom: 7px; }
.train-item span { font-size: 14px; color: var(--muted); }

/* application */
.app-block { margin-bottom: 40px; border: 1px solid var(--line-blue); border-radius: var(--radius); overflow: hidden; }
.app-block .ab-head { background: var(--ink); color: #fff; padding: 20px 28px; font-family: var(--font-serif); font-size: 19px; display: flex; align-items: center; gap: 12px; }
.app-block .ab-head .star { color: #ffd27a; }
.app-block .ab-body { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line-blue); }
.app-block .ab-item { background: #fff; padding: 22px 28px; display: flex; gap: 14px; }
.app-block .ab-item .n { min-height: 36px; padding: 7px 12px; border-radius: 9px; background: var(--seal-soft); color: var(--seal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; font-size: 13px; line-height: 1.25; white-space: nowrap; align-self: flex-start; text-align: center; }
.app-block .ab-item b { display: block; font-size: 15.5px; }
.app-block .ab-item span { font-size: 13.5px; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
}
@media (max-width: 1080px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-cta .btn { display: none; }
  .g-4, .stats-grid, .honor-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .g-3, .process-flow, .adv-grid, .expert-cats, .mission-grid, .org-centers, .team-grid,
  .trend-grid, .cons-grid, .train-grid, .future-zones, .future-core, .future-dir,
  .culture-grid, .cause-grid, .coop-grid, .sb-grid { grid-template-columns: repeat(2,1fr); }
  .lp-adv { grid-template-columns: 1fr; }
  .partner-cats { grid-template-columns: 1fr; }
  .client-groups { grid-template-columns: repeat(2,1fr); }
  .logo-cloud { grid-template-columns: repeat(4,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-split, .founder-hero, .sys-split { grid-template-columns: 1fr; gap: 40px; }
  .sub-layout { grid-template-columns: 1fr; }
  .side-nav { position: static; }
  .hero-seal, .hero-scroll { display: none; }
  .hero-bar .hb-item:nth-child(n+3) { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .topbar .tb-left .hide-sm, .topbar .tb-right .hide-sm { display: none; }
  .g-2, .g-3, .g-4, .case-grid, .testi-grid, .g-3, .process-flow, .adv-grid,
  .expert-cats, .expert-rep, .mission-grid, .org-centers, .team-grid, .trend-grid,
  .pain-grid, .cons-grid, .eval-list, .train-grid, .future-zones, .future-core,
  .future-dir, .culture-grid, .cause-grid, .coop-grid, .sb-grid, .form-grid,
  .contact-grid, .qr-grid, .client-groups, .cd-results, .app-block .ab-body { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .honor-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat:last-child { border-bottom: none; }
  .logo-cloud { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .form-wrap, .modal-body { padding: 26px 20px; }
  .news-row { flex-direction: column; gap: 12px; }
  .news-date { display: flex; align-items: baseline; gap: 8px; width: auto; }
  .news-date b { font-size: 22px; }
  .download-row { flex-wrap: wrap; }
  .dl-size { width: 100%; }
  .timeline::before { left: 22px; }
  .tl-phase { padding: 0 0 34px 56px; }
  .tl-phase .ph-seal { left: 0; width: 44px; height: 44px; }
  .tl-phase .ph-label { position: static; display: block; text-align: left; margin-bottom: 8px; width: auto; }
  .float-widget { right: 14px; bottom: 90px; }
  .fw-btn { width: 48px; height: 48px; }
  .hero-content h1 { font-size: 32px; }
  .hero-actions .btn { width: 100%; }
  .header .container { gap: 10px; padding-top: 8px; padding-bottom: 8px; }
  .logo .mark { width: 40px; height: 40px; }
  .logo .lt b { font-size: 13px; letter-spacing: 0; }
  .icon-btn { width: 38px; height: 38px; }
}

@media (max-width: 420px) {
  .logo .mark { width: 36px; height: 36px; }
  .logo .lt b { font-size: 11.5px; }
  #member-open { display: none; }
}

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