/* 对齐原站 brand（sky）风格的静态站样式 */
:root {
  --brand: #0ea5e9;
  --brand-600: #0284c7;
  --brand-50: #f0f9ff;
  --brand-100: #e0f2fe;
  --ink: #0f172a;
  --muted: #64748b;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: "Inter", system-ui, "PingFang SC", "Microsoft YaHei", sans-serif; color: var(--ink); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
a { color: inherit; }
.wrap { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.center { text-align: center; }

/* Header */
.site-header { background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid #e2e8f0; position: sticky; top: 0; z-index: 40; }
.header-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; padding: .85rem 0; }
.brand { display: inline-flex; align-items: center; gap: .35rem; font-weight: 800; font-size: 1.05rem; color: var(--ink); text-decoration: none; letter-spacing: -.01em; min-width: 0; }
.brand-logo { height: 3.25rem; width: auto; max-width: 9rem; object-fit: contain; display: block; flex-shrink: 0; }
.brand-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: min(14rem, 42vw); }
@media (min-width: 768px) {
  .brand { gap: .5rem; }
  .brand-logo { height: 4.25rem; max-width: 11rem; }
  .brand-text { font-size: 1.2rem; max-width: none; }
}
.nav-list { display: flex; flex-wrap: wrap; gap: .4rem 1.35rem; list-style: none; margin: 0; padding: 0; }
.nav-link { color: #475569; text-decoration: none; font-weight: 500; font-size: .95rem; }
.nav-link.active, .nav-link:hover { color: var(--brand); }

.site-main { min-height: 60vh; }
.site-main.wrap { padding: 2rem 1rem 3rem; }
.site-main.full { padding: 0 0 0; }

/* Footer */
.site-footer { background: #0f172a; color: #cbd5e1; padding: 3rem 0 1.25rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 1.75rem; }
.site-footer h2 { font-size: .95rem; color: #fff; margin: 0 0 .65rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer a { color: #93c5fd; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-copy { text-align: center; font-size: .82rem; color: #64748b; margin: 1.75rem 0 0; }

/* Buttons — 对齐原站 */
.btn { display: inline-flex; align-items: center; gap: .4rem; padding: .75rem 1.4rem; border-radius: .55rem; text-decoration: none; font-weight: 600; transition: .15s; border: none; cursor: pointer; font-size: .95rem; }
.btn-primary { background: #0f172a; color: #fff; }
.btn-primary:hover { background: #1e293b; }
.btn-outline { border: 1px solid #e2e8f0; color: #334155; background: #fff; }
.btn-outline:hover { background: #f8fafc; }
.btn-ghost { color: #334155; background: transparent; }

/* Portal dark band */
.portal-band { background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #0f172a 100%); color: #fff; padding: 5.5rem 0 3rem; position: relative; overflow: hidden; }
.portal-band .kicker { color: rgba(125,211,252,.9); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 .5rem; }
.portal-band h1 { font-size: clamp(1.75rem, 4vw, 3rem); margin: 0 0 .6rem; font-weight: 800; letter-spacing: -.02em; }
.portal-band .lead { color: #94a3b8; max-width: 40rem; margin: 0; }

/* Hero full */
.hero-full { position: relative; min-height: min(92vh, 760px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: url("/assets/hero.jpg") center/cover no-repeat; }
.hero-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(248,250,252,.97) 0%, rgba(248,250,252,.88) 28%, rgba(248,250,252,.45) 58%, rgba(248,250,252,.12) 82%, transparent 100%); }
.hero-inner { position: relative; z-index: 1; padding: 6rem 1rem 4rem; width: 100%; max-width: 80rem; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: .35rem; background: #e0f2fe; color: #0284c7; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: .4rem .85rem; border-radius: 999px; margin: 0 0 1.25rem; }
.hero-title { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.18; font-weight: 800; margin: 0 0 1.1rem; letter-spacing: -.02em; max-width: 36rem; }
.hero-title span { color: var(--brand); }
.hero-desc { color: #475569; font-size: 1.05rem; max-width: 34rem; margin: 0 0 1.6rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin: 0 0 2.25rem; }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 36rem; border-top: 1px solid #e2e8f0; padding-top: 1.5rem; }
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-value { font-size: 1.35rem; font-weight: 800; }
.stat-label { font-size: .82rem; color: var(--muted); }

/* Sections */
.section { padding: 4.5rem 0; position: relative; }
.section-alt { background: #f8fafc; }
.section-dark { background: #0f172a; color: #fff; }
/* 标题层级：page-title(h1) > 首页 section 大标题 > 内容区 section-title(h2) > subcat-title(h3) */
.page-title {
  font-size: 1.625rem;
  margin: 0 0 .75rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-title { font-size: 1.85rem; }
}
.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 .75rem;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.35;
}
.section-title a { color: inherit; text-decoration: none !important; border-bottom: none !important; }
.section-title a:hover { color: var(--brand-600); }
/* 产品中心大类标题：明确小于 page-title */
.cat-section > .section-title {
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: .15rem;
  border-bottom: none;
  text-decoration: none;
}
/* 首页板块标题保持视觉分量 */
.section .section-title { font-size: clamp(1.55rem, 2.8vw, 2rem); font-weight: 800; margin: 0 0 .75rem; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 36rem; margin: 0 auto 2.5rem; }
.section-dark .section-sub { color: #94a3b8; }
.section-rule { height: 1px; background: linear-gradient(90deg, transparent, rgba(14,165,233,.55), transparent); margin: 0 0 0; }

/* Service cards */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.25rem; }
.svc-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 1rem; padding: 2rem 1.5rem; text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 4px 12px rgba(14,165,233,.06); transition: .2s; }
.svc-card:hover { border-color: rgba(14,165,233,.25); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(14,165,233,.12); }
.svc-icon { width: 4.25rem; height: 4.25rem; margin: 0 auto 1.25rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f0f9ff, #e0f2fe); color: var(--brand-600); font-size: 1.6rem; font-weight: 800; }

/* Category cards (home) */
.home-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr)); gap: 1rem; }
.home-cat-card { display: block; background: linear-gradient(180deg, #fff, #f8fafc); border: 1px solid #f1f5f9; border-radius: 1rem; padding: 1.75rem 1.25rem; text-decoration: none; color: inherit; box-shadow: 0 1px 2px rgba(0,0,0,.04); transition: .2s; }
.home-cat-card:hover { border-color: var(--brand); box-shadow: 0 12px 28px rgba(14,165,233,.1); transform: translateY(-3px); }
.home-cat-card h3 { margin: 0 0 .4rem; font-size: 1.05rem; line-height: 1.35; text-wrap: balance; }
.home-cat-card p { margin: 0; font-size: .85rem; color: var(--muted); line-height: 1.45; text-wrap: pretty; word-break: keep-all; overflow-wrap: break-word; }

/* Logo rail */
.logo-rail { overflow: hidden; position: relative; padding: 2rem 0; background: #fff; }
.logo-rail::before, .logo-rail::after { content: ""; position: absolute; top: 0; bottom: 0; width: 4rem; z-index: 2; pointer-events: none; }
.logo-rail::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.logo-rail::after { right: 0; background: linear-gradient(270deg, #fff, transparent); }
.logo-track { display: flex; width: max-content; gap: 3rem; align-items: center; animation: logo-scroll 45s linear infinite; }
.logo-track img { height: 2.75rem; width: auto; max-width: 8rem; object-fit: contain; filter: grayscale(1); opacity: .7; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Why */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .why-grid { grid-template-columns: 1.1fr .9fr; } }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; }
.why-dot { width: 2.75rem; height: 2.75rem; border-radius: 999px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-dot i { width: .5rem; height: .5rem; border-radius: 999px; background: var(--brand); display: block; }
.why-item h4 { margin: 0 0 .35rem; font-size: 1.15rem; }
.why-item p { margin: 0; color: #94a3b8; }
.why-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.why-tile { aspect-ratio: 1; border-radius: 1.25rem; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1rem; }
.why-tile.accent { background: var(--brand); border-color: transparent; }
.why-tile .v { font-size: 1.6rem; font-weight: 800; }
.why-tile .l { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: #94a3b8; margin-top: .35rem; }
.why-tile.accent .l { color: rgba(255,255,255,.75); }

/* Flow */
.flow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr)); gap: 1rem; }
.flow-card { background: #fff; border: 1px solid #f1f5f9; border-radius: .9rem; padding: 1.25rem; text-align: center; }
.flow-step { color: var(--brand); font-weight: 800; font-size: .85rem; margin-bottom: .4rem; }
.flow-card h3 { margin: 0 0 .35rem; font-size: .98rem; }
.flow-card p { margin: 0; font-size: .8rem; color: var(--muted); }

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr)); gap: 1.1rem; list-style: none; margin: 0 0 1rem; padding: 0; }
.product-card { background: #fff; border: 1px solid #e2e8f0; border-radius: .85rem; padding: 0; transition: .15s; overflow: hidden; }
.product-card:hover { border-color: #7dd3fc; transform: translateY(-3px); box-shadow: 0 10px 24px rgba(14,165,233,.12); }
.product-card-link { display: block; padding: 1.1rem; text-decoration: none; color: inherit; height: 100%; }
.product-card img { height: 110px; width: auto; max-width: 100%; object-fit: contain; display: block; margin: 0 auto .5rem; }
.product-model { margin: .4rem 0; font-size: 1rem; font-weight: 700; color: var(--brand); }
.product-card:hover .product-model { color: var(--brand-600); }
.product-brand, .product-desc { margin: .15rem 0; font-size: .86rem; color: var(--muted); }

.cat-jump-list { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-wrap: wrap; gap: .6rem .75rem; }
.cat-jump-list a { color: var(--brand-600); text-decoration: none; font-weight: 600; padding: .4rem .8rem; background: var(--brand-50); border-radius: .5rem; border: 1px solid var(--brand-100); }
.cat-jump-list a:hover { background: var(--brand-100); }
.cat-section { scroll-margin-top: 5rem; margin-bottom: 2.5rem; }
.section-more { margin-top: .35rem; }
.subcat-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.25rem; }
.subcat-chips a { font-size: .75rem; padding: .2rem .55rem; border-radius: 999px; background: #f1f5f9; color: #64748b; text-decoration: none; }
.subcat-chips a:hover { background: var(--brand-100); color: var(--brand-600); }
.subcat-chips-nested { margin: -.35rem 0 1rem; }

/* Category nav — 紧凑分组，不占整屏高度 */
.cat-tree-panel { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 1rem; padding: 1rem 1.15rem; margin: 0 0 1.75rem; }
.cat-tree-panel-compact { margin-bottom: 1.5rem; padding: .85rem 1rem; }
.cat-tree-heading { font-size: 1rem !important; font-weight: 700 !important; margin-bottom: .65rem !important; }
.cat-nav { display: flex; flex-direction: column; gap: .5rem; }
.cat-nav-group { display: grid; grid-template-columns: minmax(6.5rem, 9.5rem) 1fr; gap: .35rem .7rem; align-items: start; padding: .4rem 0; border-bottom: 1px dashed #e2e8f0; }
.cat-nav-group:last-child { border-bottom: none; padding-bottom: 0; }
.cat-nav-main { font-weight: 700; font-size: .82rem; color: var(--brand-600); text-decoration: none; line-height: 1.35; padding-top: .1rem; }
.cat-nav-main:hover { color: var(--brand); }
.cat-nav-chips { display: flex; flex-wrap: wrap; gap: .3rem; }
.cat-chip { font-size: .72rem; padding: .15rem .45rem; border-radius: 999px; background: #fff; border: 1px solid #e2e8f0; color: #64748b; text-decoration: none; line-height: 1.3; }
.cat-chip:hover { border-color: var(--brand); color: var(--brand-600); background: var(--brand-50); }
.cat-chip.muted { color: #94a3b8; border-style: dashed; cursor: default; }
@media (max-width: 640px) {
  .cat-nav-group { grid-template-columns: 1fr; gap: .4rem; }
}

/* legacy tree (if any) */
.cat-tree, .cat-tree-children { list-style: none; margin: 0; padding: 0; }
.cat-tree-children { margin: .35rem 0 .5rem .85rem; padding-left: .85rem; border-left: 2px solid var(--brand-100); }
.cat-tree-item { margin: .25rem 0; }
.cat-tree-link { color: #334155; text-decoration: none; font-weight: 600; font-size: .95rem; display: inline-block; padding: .2rem 0; }
.cat-tree-link:hover { color: var(--brand-600); }
.cat-tree-parent { color: var(--brand-600); font-size: 1rem; }
.cat-tree-item.d0 > .cat-tree-link { font-size: 1.05rem; font-weight: 800; }
.cat-tree-item.d2 .cat-tree-link { font-size: .88rem; font-weight: 500; color: #64748b; }
.subcat-section { scroll-margin-top: 5rem; margin-bottom: 2rem; padding-top: .5rem; border-top: 1px dashed #e2e8f0; }
.subcat-section:first-of-type { border-top: none; padding-top: 0; }
.subcat-title { font-size: .95rem; margin: 0 0 .6rem; font-weight: 700; line-height: 1.35; }
.subcat-title a { color: var(--ink); text-decoration: none; }
.subcat-title a:hover { color: var(--brand-600); }

.breadcrumb { font-size: .9rem; color: #64748b; margin-bottom: 1rem; }
.crumb-sep { margin: 0 .35rem; }
.crumb-current { color: #334155; }
.lead { color: var(--muted); font-size: 1.02rem; max-width: 42rem; }
.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li { padding: .4rem 0; border-bottom: 1px solid #f1f5f9; }
.detail-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
@media (min-width: 768px) { .detail-grid { grid-template-columns: minmax(14rem, 20rem) 1fr; } }
.detail-media { margin: 0; padding: 1rem; border: 1px solid #e2e8f0; border-radius: .75rem; background: #fff; display: flex; align-items: center; justify-content: center; min-height: 12rem; }
.detail-media img { display: block; width: 100%; max-width: 20rem; height: auto; max-height: 22rem; object-fit: contain; object-position: center; }
.detail-section { margin-top: 2rem; }
.desc-p { color: #334155; margin: 0 0 .75rem; }

.search-bar { display: flex; gap: .5rem; margin: 1rem 0; }
.search-bar input { flex: 1; padding: .7rem .85rem; border: 1px solid #cbd5e1; border-radius: .55rem; font-size: 1rem; }
.search-meta { color: #64748b; font-size: .9rem; margin-bottom: .75rem; }
.list-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #e2e8f0; border-radius: .5rem; overflow: hidden; }
.list-table th, .list-table td { padding: .55rem .65rem; text-align: left; border-bottom: 1px solid #f1f5f9; font-size: .92rem; }
.list-table th { background: #f8fafc; }
.list-table a { color: var(--brand-600); text-decoration: none; }

/* About */
.about-wrap { padding: 2.5rem 1rem 3.5rem; max-width: 56rem; }
.content-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 1.1rem; padding: 2rem; margin-bottom: 1.5rem; box-shadow: 0 4px 24px -8px rgba(15,23,42,.08); position: relative; overflow: hidden; }
.content-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--brand), #38bdf8, var(--brand)); }
.section-head { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid #f1f5f9; }
.section-kicker { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #94a3b8; }

/* Timeline zigzag — 对齐原站 AboutPage */
.timeline-zigzag { position: relative; padding: .5rem 0 1rem; }
.tl-wave { display: none; }
.tl-nodes { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 1rem; }
.tl-node { position: relative; display: flex; }
.tl-card { flex: 1; background: #fff; border: 1px solid #f1f5f9; border-radius: 1rem; padding: 1rem 1.15rem; box-shadow: 0 1px 3px rgba(0,0,0,.04); transition: .2s; }
.tl-card:hover { border-color: rgba(14,165,233,.25); box-shadow: 0 8px 24px rgba(14,165,233,.1); }
.tl-card-head { display: flex; flex-wrap: wrap; align-items: flex-start; gap: .65rem; margin-bottom: .5rem; }
.tl-year-badge { flex-shrink: 0; min-width: 5rem; padding: .25rem .55rem; border-radius: .5rem; font-weight: 800; font-size: .88rem; color: var(--brand-600); background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(56,189,248,.08)); border: 1px solid var(--brand-100); font-variant-numeric: tabular-nums; }
.tl-card-title { margin: 0; font-size: 1rem; font-weight: 700; line-height: 1.4; }
.tl-card-desc { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.65; }
.tl-dot { display: none; }
@media (min-width: 768px) {
  .tl-wave { display: block; position: absolute; left: 50%; top: 1rem; bottom: 0; width: 6rem; transform: translateX(-50%); opacity: .75; pointer-events: none; }
  .tl-nodes { gap: 1.25rem; }
  .tl-node { min-height: 4rem; }
  .tl-left { justify-content: flex-start; padding-right: calc(50% + 1.5rem); }
  .tl-right { justify-content: flex-end; padding-left: calc(50% + 1.5rem); }
  .tl-left .tl-card { border-radius: 1.35rem 1.35rem 1.35rem .65rem; }
  .tl-right .tl-card { border-radius: 1.35rem 1.35rem .65rem 1.35rem; }
  .tl-dot { display: block; position: absolute; top: 1.35rem; left: 50%; width: .75rem; height: .75rem; border-radius: 999px; background: linear-gradient(135deg, var(--brand), #38bdf8); box-shadow: 0 0 0 4px rgba(14,165,233,.12); transform: translateX(-50%); }
}

/* Group architecture */
.group-intro { color: #475569; font-size: 1.02rem; line-height: 1.75; margin: 0 0 2rem; max-width: 42rem; }
.co-grid-rich { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .co-grid-rich { grid-template-columns: 1fr 1fr; } }
.co-card-rich { background: rgba(248,250,252,.8); border: 1px solid #f1f5f9; border-radius: .85rem; padding: 1.35rem 1.4rem; transition: .2s; }
.co-card-rich:hover { border-color: rgba(14,165,233,.25); box-shadow: 0 6px 20px rgba(15,23,42,.06); }
.co-card-head { display: flex; align-items: center; gap: 1rem; margin-bottom: .85rem; }
.co-icon-wrap { width: 3rem; height: 3rem; border-radius: .75rem; background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(56,189,248,.08)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(15,23,42,.05); }
.co-icon { width: 1.5rem; height: 1.5rem; color: var(--brand-600); }
.co-card-meta h3 { margin: 0 0 .25rem; font-size: 1.05rem; font-weight: 700; line-height: 1.35; }
.co-type { display: inline-block; font-size: .72rem; font-weight: 600; color: var(--brand-600); background: var(--brand-50); padding: .15rem .45rem; border-radius: .25rem; }
.co-biz { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.65; }
.co-biz-label { color: #475569; font-weight: 600; }

.co-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1rem; }
.co-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: .85rem; padding: 1.15rem; }
.co-card .type { font-size: .75rem; color: var(--brand-600); font-weight: 700; margin-bottom: .35rem; }
.co-card h3 { margin: 0 0 .35rem; font-size: .98rem; }
.co-card p { margin: 0; font-size: .85rem; color: var(--muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.info-card { background: #fff; border: 1px solid #f1f5f9; border-radius: .85rem; padding: 1.35rem 1.4rem; box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.info-card h3 { margin: 0 0 .85rem; font-size: 1.05rem; display: flex; align-items: center; gap: .45rem; }
.info-card ul { list-style: none; margin: 0; padding: 0; }
.info-card li { margin: 0 0 .4rem; }
.info-card a { color: #475569; text-decoration: none; }
.info-card a:hover { color: var(--brand-600); }
.qr-card .qr-hint { margin: 0 0 1rem; font-size: .88rem; color: var(--muted); }
.qr-row { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: flex-start; }
.qr-box { text-align: center; flex-shrink: 0; }
.qr-box img { width: 9rem; height: 9rem; min-width: 9rem; min-height: 9rem; object-fit: contain; background: #f8fafc; border-radius: .85rem; border: 1px solid #e2e8f0; box-shadow: 0 1px 3px rgba(0,0,0,.04); display: block; }
.qr-label { margin-top: .45rem; font-size: .85rem; font-weight: 600; color: #334155; }
.mailto-box { background: #fff; border: 1px solid #f1f5f9; border-radius: 1rem; padding: 1.75rem; margin-bottom: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,.04); }

.job-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.job-card { background: #fff; border: 1px solid #e2e8f0; border-radius: .9rem; padding: 1.35rem; }
.job-card h2 { margin: 0 0 .6rem; font-size: 1.15rem; }
.job-card p { margin: 0; color: var(--muted); white-space: pre-wrap; }
