/* =========================================================
   川衫甲服饰 · 主色统一为 header-blue
   主色 #002d88 · 辅色 #3d6cbc · 冷灰底 #f0f2f6
   图标：Font Awesome 4.7（统一色调）
========================================================= */
:root {
  --header-blue: #002d88;
  --header-blue-soft: #3d6cbc;
  --header-active: #a52a2a;
  --header-top: #1a1a1a;
  --primary: var(--header-blue);
  --primary-soft: #1a4aad;
  --primary-dark: #001a52;
  --secondary: var(--header-blue-soft);
  --secondary-deep: var(--header-blue);
  --accent: #5b8de8;
  --light: #f0f3f9;
  --light-warm: #f5f7fc;
  --text: #14233f;
  --muted: #5c6578;
  --muted-light: #8b93a7;
  --line: rgba(0, 45, 136, 0.12);
  --white: #fff;
  --radius: 4px;
  --radius-md: 10px;
  --shadow: 0 8px 28px rgba(0, 45, 136, 0.08);
  --shadow-hover: 0 18px 40px rgba(0, 45, 136, 0.14);
  --container: 1200px;
  --topbar-h: 34px;
  --brand-h: 92px;
  --nav-h: 48px;
  --font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --display: "Cormorant Garamond", "Noto Sans SC", serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease), opacity 0.25s var(--ease);
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ---------- 通用 ---------- */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-light {
  background: var(--light);
}

.section-warm {
  background: var(--light-warm);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--secondary-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--secondary);
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--muted);
  font-size: 0.98rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.6rem;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 45, 136, 0.35);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline-dark {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

/* ---------- Header（三层结构） ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.topbar {
  background: var(--header-top);
  color: #fff;
  font-size: 12px;
}

.topbar-inner {
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.topbar-right a {
  color: #fff;
}

.topbar-right a:hover {
  color: #dce6ff;
}

.topbar-sep {
  opacity: 0.55;
}

.header-brand {
  background: #fff;
  border-bottom: 1px solid #eef0f4;
}

.header-brand-inner {
  min-height: var(--brand-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo-block {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 120px;
}

.site-logo {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.logo-main {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.logo-cn {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--header-blue);
  letter-spacing: 0.04em;
}

.logo-badge {
  width: 28px;
  height: 28px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--header-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  letter-spacing: 0;
  line-height: 1;
}

.logo-en {
  font-size: 11px;
  color: var(--header-blue);
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
}

.header-slogan {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  min-width: 0;
}

.header-slogan::before,
.header-slogan::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 42px;
  background: #e5e8ef;
  transform: translateY(-50%);
}

.header-slogan::before {
  left: 0;
}

.header-slogan::after {
  right: 0;
}

.slogan-zh {
  color: var(--header-blue);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  white-space: nowrap;
}

.slogan-en {
  margin-top: 4px;
  color: var(--header-blue-soft);
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-hotline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  color: var(--header-blue);
  min-width: 190px;
  justify-content: flex-end;
}

.header-hotline i {
  width: 42px;
  height: 42px;
  border: 2px solid #c5d0e6;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #7a879c;
}

.header-hotline em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--header-blue);
  margin-bottom: 2px;
}

.header-hotline strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--header-blue);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  color: var(--header-blue);
  font-size: 1.25rem;
  border: 1px solid #d5dbe8;
  flex-shrink: 0;
}

.nav-bar {
  background: var(--header-blue);
}

.nav-menu {
  display: none;
  align-items: stretch;
  justify-content: center;
  min-height: var(--nav-h);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  height: var(--nav-h);
  padding: 0 2rem;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link i {
  font-size: 12px;
  opacity: 0.9;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffd7d0;
}

.nav-link.is-active {
  color: #ff6b4a;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 160px;
  background: #fff;
  border: 1px solid #e8ecf3;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  padding: 0.45rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s var(--ease);
  z-index: 50;
}

.nav-dropdown-sm a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 13px;
  color: #334155;
  font-weight: 500;
}

.nav-dropdown-sm a:hover {
  background: #f5f7fb;
  color: var(--header-blue);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: calc(var(--topbar-h) + var(--brand-h)) 0 0;
  background: var(--primary-dark);
  z-index: 999;
  overflow: auto;
  padding: 0.5rem 1rem 2rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.9rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--brand-h) - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  padding: 3rem 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 14, 26, 0.88) 8%, rgba(8, 14, 26, 0.55) 48%, rgba(8, 14, 26, 0.35) 100%),
    linear-gradient(to top, rgba(8, 14, 26, 0.85) 0%, transparent 45%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(rgba(91, 141, 232, 0.9) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  pointer-events: none;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0 1.25rem 5.5rem;
  box-sizing: border-box;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  color: var(--secondary);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.hero-brand::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--secondary);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: 1.35rem;
  word-break: break-word;
}

.hero h1 em {
  font-style: normal;
  color: var(--secondary);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 0.85rem;
  word-break: break-word;
}

.hero-desc strong {
  color: var(--secondary);
  font-weight: 600;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.hero-sub strong {
  color: var(--secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-stats {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 14, 26, 0.45);
  backdrop-filter: blur(10px);
}

.hero-stats div {
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero-scroll {
  position: absolute;
  right: 1.5rem;
  bottom: 7.5rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  animation: floatY 2.2s ease-in-out infinite;
}

.hero-scroll:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

/* ---------- 产品分类（图文磁贴） ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.cat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  padding: 1.25rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.cat-card:hover {
  border-color: rgba(0, 45, 136, 0.5);
  box-shadow: var(--shadow);
}

.cat-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.cat-more {
  font-size: 0.78rem;
  color: var(--primary);
  letter-spacing: 0.04em;
  transform: translateX(0);
  transition: transform 0.3s var(--ease);
}

.cat-card:hover .cat-more {
  transform: translateX(5px);
}

/* ---------- 关键词条 ---------- */
.tag-row {
  padding: 1.4rem 0;
  background: var(--primary);
}

.tag-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.4rem;
}

.tag-pill {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.tag-pill i {
  color: var(--secondary);
  font-size: 0.8rem;
}

.tag-pill:hover {
  color: var(--secondary);
}

/* ---------- 三大服务 ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.svc-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  color: #fff;
}

.svc-card-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transition: transform 0.8s var(--ease);
}

.svc-card:hover .svc-card-bg {
  transform: scale(1.06);
}

.svc-card-body {
  position: absolute;
  inset: auto 0 0;
  padding: 1.8rem 1.5rem 1.6rem;
  background: linear-gradient(to top, rgba(8, 14, 26, 0.95), rgba(8, 14, 26, 0.2));
}

.svc-accent {
  width: 36px;
  height: 2px;
  background: var(--secondary);
  margin-bottom: 0.9rem;
  transition: width 0.45s var(--ease);
}

.svc-card:hover .svc-accent {
  width: 72px;
}

.svc-card h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.svc-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.svc-tags span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.2rem 0.55rem;
}

.svc-card .btn {
  min-height: 40px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

/* ---------- 四步 ---------- */
.process {
  background:
    radial-gradient(circle at top right, rgba(0, 45, 136, 0.08), transparent 40%),
    var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}

.step-item {
  position: relative;
  padding: 1.6rem 1.4rem 1.5rem;
  background: var(--light);
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
    background 0.3s var(--ease);
}

.step-item:hover {
  border-color: rgba(0, 45, 136, 0.45);
  background: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 1.2rem;
}

.step-num {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-family: var(--display);
  font-size: 2rem;
  color: rgba(26, 42, 74, 0.12);
  line-height: 1;
}

.step-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
  color: var(--primary);
}

.step-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- 热门产品 ---------- */
.prod-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.prod-head .section-head {
  text-align: left;
  margin: 0;
  max-width: none;
}

.prod-head .section-eyebrow::before {
  display: none;
}

.prod-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.prod-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 45, 136, 0.45);
}

.prod-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e7eaf0;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.prod-card:hover .prod-img img {
  transform: scale(1.06);
}

.prod-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.65rem;
}

.prod-body {
  padding: 1.15rem 1.15rem 1.3rem;
}

.prod-cat {
  font-size: 0.75rem;
  color: var(--muted-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.prod-body h3 {
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.45;
  margin-bottom: 0.65rem;
  min-height: 2.9em;
}

.prod-price {
  color: var(--secondary-deep);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ---------- 关于 ---------- */
.about-grid,
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: center;
}

.about-media,
.why-visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--primary);
}

.about-media img,
.why-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 14, 26, 0.55), transparent 50%);
}

.about-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 45, 136, 0.95);
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 30px rgba(0, 45, 136, 0.35);
}

.about-play i {
  margin-left: 3px;
}

.about-stats-float {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.85rem 1.1rem;
  text-align: center;
  min-width: 96px;
}

.about-stats-float strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--secondary-deep);
  line-height: 1;
}

.about-stats-float span {
  font-size: 0.72rem;
  color: var(--muted);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.about-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--light);
}

.about-feature .ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--secondary-deep);
  background: #fff;
  border: 1px solid var(--line);
}

.about-feature h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--muted);
}

.why-copy {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

.why-list {
  display: grid;
  gap: 0.9rem;
}

.why-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.why-item:last-child {
  border-bottom: 0;
}

.why-item .ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--secondary-deep);
  background: rgba(0, 45, 136, 0.12);
  font-size: 1.05rem;
}

.why-item h4 {
  margin-bottom: 0.2rem;
  color: var(--primary);
}

.why-item p {
  font-size: 0.88rem;
  color: var(--muted);
}

.why-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

/* ---------- 新闻 ---------- */
.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.news-head .section-head {
  text-align: left;
  margin: 0;
}

.news-head .section-eyebrow::before {
  display: none;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.news-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.news-card:hover {
  border-color: rgba(0, 45, 136, 0.5);
  box-shadow: var(--shadow);
}

.news-card-img {
  background: var(--light);
  min-height: 110px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.news-card-img img.news-card-logo {
  object-fit: contain;
  padding: 0.65rem;
  background: #fff;
}

.news-card:hover .news-card-img img:not(.news-card-logo) {
  transform: scale(1.06);
}

.news-card-body {
  padding: 1rem 1.05rem;
  min-width: 0;
}

.news-meta {
  display: flex;
  gap: 0.7rem;
  font-size: 0.74rem;
  color: var(--muted-light);
  margin-bottom: 0.4rem;
}

.news-meta .tag {
  color: var(--secondary-deep);
}

.news-card h3 {
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- 画册 ---------- */
.catalog-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.4rem 1.5rem;
  background:
    linear-gradient(135deg, rgba(0, 45, 136, 0.92), rgba(0, 26, 82, 0.95)),
    url("../images/humtun/factory.jpg") center / cover;
  color: #fff;
  align-items: center;
}

.catalog-qr {
  text-align: center;
}

.catalog-qr img {
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  background: #fff;
  padding: 8px;
}

.catalog-qr .mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--secondary);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.catalog-box h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.catalog-box > div > p,
.catalog-qr + div p,
.catalog-box p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 1.1rem;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.catalog-links {
  display: grid;
  gap: 0.65rem;
}

.catalog-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
}

.catalog-links a i {
  color: var(--secondary);
  width: 1.1rem;
  text-align: center;
}

.catalog-links a:hover {
  border-color: rgba(0, 45, 136, 0.55);
  background: rgba(0, 45, 136, 0.1);
}

.catalog-links small {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.74rem;
}

/* ---------- 合作 ---------- */
.partners {
  text-align: center;
}

.partners-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--muted-light);
  margin-bottom: 0.55rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.partner-logo {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.partner-logo i {
  color: var(--secondary);
}

.partner-logo:hover {
  border-color: rgba(0, 45, 136, 0.55);
  color: var(--primary);
}

/* ---------- 城市 / CTA ---------- */
.cities-bar {
  padding: 2.8rem 0;
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.cities-bar h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.cities-bar > .container > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.city-tags span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
}

.cta-band {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: var(--primary-dark);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/humtun/factory.jpg") center / cover;
  opacity: 0.18;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cta-phone {
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 700;
}

.cta-phone i {
  margin-right: 0.35rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.65);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
}

.footer-site-logo {
  height: 56px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.55rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--secondary);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.32rem 0;
}

.footer-col a:hover {
  color: var(--secondary);
}

.footer-contact li {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  font-size: 0.88rem;
}

.footer-contact i {
  color: var(--secondary);
  width: 1rem;
  margin-top: 0.2rem;
}

.footer-qr {
  margin-top: 1rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  max-width: 150px;
}

.footer-qr img {
  width: 100px;
  height: 100px;
  margin: 0 auto 0.45rem;
  background: #fff;
  padding: 4px;
}

.footer-qr span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-cities {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}

.footer-cities strong {
  color: var(--secondary);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- 悬浮 / 弹窗 ---------- */
.float-tools {
  position: fixed;
  right: 14px;
  bottom: 90px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.float-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(12, 21, 36, 0.28);
  position: relative;
}

.float-btn.is-gold {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #fff;
}

.float-btn:hover {
  background: var(--primary-soft);
  color: #fff;
}

.float-btn .tip {
  position: absolute;
  right: 54px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.3rem 0.55rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}

.float-btn:hover .tip {
  opacity: 1;
}

#backTop {
  opacity: 0;
  visibility: hidden;
}

#backTop.show {
  opacity: 1;
  visibility: visible;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 14, 26, 0.62);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.is-open {
  display: flex;
}

.modal-box {
  width: min(100%, 380px);
  background: #fff;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 0.8rem;
  top: 0.7rem;
  width: 32px;
  height: 32px;
  color: var(--muted);
  font-size: 1.15rem;
}

.modal-box h3 {
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.modal-box p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
}

.modal-box img {
  width: 170px;
  height: 170px;
  margin: 0 auto 1rem;
}

.modal-phone {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--secondary-deep);
  margin: 0.8rem 0 1.1rem;
}

/* ---------- 内页 ---------- */
.page-banner {
  position: relative;
  padding: 3.2rem 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/humtun/factory.jpg") center / cover;
  opacity: 0.22;
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.page-main {
  padding: 3.5rem 0;
}

.product-list-grid .prod-body h3 {
  min-height: auto;
  margin-bottom: 0.45rem;
}

.prod-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.prod-more {
  font-size: 0.84rem;
  color: var(--primary);
  font-weight: 600;
}

.prod-card:hover .prod-more {
  color: var(--primary-soft);
}

.product-detail-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.product-detail-gallery {
  background: var(--light);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 1;
}

.product-detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info .prod-cat {
  margin-bottom: 0.6rem;
}

.product-detail-info h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-detail-desc {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}

.product-detail-meta {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
}

.product-detail-meta li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-size: 0.95rem;
}

.product-detail-meta i {
  color: var(--primary);
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-scope {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0 2.2rem;
  padding: 1.4rem 1.5rem;
  background: var(--light);
  border: 1px solid var(--line);
}

.product-scope-block h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.98rem;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.product-scope-block h3 i {
  font-size: 0.9rem;
}

.product-scope-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-scope-tags span {
  font-size: 0.84rem;
  color: #2f3a4f;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.35rem 0.75rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .product-scope {
    grid-template-columns: 1.3fr 1fr;
    gap: 1.75rem;
    padding: 1.6rem 1.8rem;
  }
}

.product-detail-content {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.product-detail-title {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.product-detail-content .page-content {
  max-width: none;
  margin: 0;
}

.product-detail-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .product-detail-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.page-content {
  max-width: 880px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.85;
  color: #2f3a4f;
}

.page-content img {
  margin: 1rem auto;
  border-radius: 4px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
  font-family: var(--font);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}

.page-content h2 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.85rem;
  padding-left: 0.65rem;
  border-left: 3px solid var(--primary);
}

.page-content h3 {
  font-size: 1.1rem;
  margin: 1.4rem 0 0.65rem;
}

.page-content h4 {
  font-size: 1rem;
  margin: 1.2rem 0 0.55rem;
}

.page-content p {
  font-size: 16px;
  margin: 0 0 1rem;
  color: #2f3a4f;
}

.page-content ul,
.page-content ol {
  margin: 0 0 1.1rem;
  padding-left: 1.35rem;
}

.page-content li {
  font-size: 16px;
  margin-bottom: 0.45rem;
  color: #2f3a4f;
  line-height: 1.75;
}

.page-content ul {
  list-style: disc;
}

.page-content ol {
  list-style: decimal;
}

.page-content blockquote {
  margin: 1.25rem 0;
  padding: 0.9rem 1.1rem;
  background: var(--light);
  border-left: 3px solid var(--primary);
  color: #334155;
  font-size: 15px;
  line-height: 1.75;
}

.page-content blockquote p {
  margin: 0;
}

.article-meta {
  text-align: center;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.article-meta span + span {
  margin-left: 0.75rem;
}

.article-meta i {
  margin-right: 0.25rem;
  color: var(--primary);
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

.list-grid {
  display: grid;
  gap: 1rem;
}

.list-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.1rem;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}

.list-card:hover {
  border-color: rgba(0, 45, 136, 0.5);
  box-shadow: var(--shadow);
}

.list-card-img {
  background: var(--light);
  min-height: 110px;
}

.list-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-card-img img.list-card-logo {
  object-fit: contain;
  padding: 0.65rem;
  background: #fff;
}

.list-card-body {
  padding: 1rem 1rem 1rem 0;
}

.list-card-body h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.list-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-card-body .date {
  font-size: 0.75rem;
  color: var(--muted-light);
  margin-top: 0.55rem;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-top: 2.4rem;
}

.pagination a,
.pagination span {
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--primary);
}

.pagination a:hover,
.pagination .page-num-current,
.pagination span.page-num-current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.contact-info {
  display: grid;
  gap: 0.9rem;
}

.contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.15rem;
  background: var(--light);
}

.contact-item .ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--secondary-deep);
  background: #fff;
  border: 1px solid var(--line);
}

.contact-item h4 {
  margin-bottom: 0.2rem;
}

.contact-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form {
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.6rem;
}

.contact-form h3 {
  margin-bottom: 1.15rem;
}

.form-row {
  margin-bottom: 0.95rem;
}

.form-row label {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 0.75rem 0.95rem;
  font: inherit;
  outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--secondary);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.icon-tone {
  color: var(--secondary-deep);
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  .news-card {
    grid-template-columns: 150px 1fr;
  }
}

@media (min-width: 768px) {
  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .cat-card {
    min-height: 120px;
  }

  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .about-grid,
  .why-grid,
  .catalog-box,
  .contact-grid {
    grid-template-columns: 1.05fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-actions {
    justify-content: flex-start;
  }

  .catalog-qr {
    text-align: left;
  }

  .catalog-qr img {
    margin-left: 0;
  }

  .hero-scroll {
    right: 2.5rem;
    bottom: 8.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .prod-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .about-media,
  .about-media img,
  .why-visual,
  .why-visual img {
    min-height: 420px;
  }
}

@media (max-width: 1100px) {
  .header-slogan::before,
  .header-slogan::after {
    display: none;
  }

  .slogan-en {
    display: none;
  }

  .header-hotline {
    min-width: auto;
  }

  .nav-link {
    padding: 0 0.7rem;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 4rem 0;
  }

  .header-slogan,
  .header-hotline {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .nav-bar {
    display: none;
  }

  .site-logo {
    height: 48px;
    max-width: 160px;
  }

  .header-brand-inner {
    min-height: 72px;
  }

  .mobile-nav {
    inset: calc(var(--topbar-h) + 72px) 0 0;
  }

  .hero {
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    min-height: auto;
    padding-top: 2.2rem;
  }

  .hero-inner {
    width: 100%;
    max-width: none;
    padding: 0 1.1rem 1.6rem;
  }

  .hero-brand {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.35;
    margin-bottom: 0.85rem;
  }

  .hero h1 br {
    display: none;
  }

  .hero h1 em {
    display: inline;
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 0.7rem;
  }

  .hero-sub {
    font-size: 0.78rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .hero-stats {
    width: 100%;
    flex-shrink: 0;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(8, 14, 26, 0.72);
  }

  .hero-stats div {
    padding: 0.85rem 0.35rem;
  }

  .hero-stats strong {
    font-size: 1.05rem;
  }

  .hero-stats span {
    font-size: 0.68rem;
    letter-spacing: 0;
  }

  .hero-scroll {
    display: none;
  }

  .list-card {
    grid-template-columns: 100px 1fr;
  }

  .footer-qr {
    max-width: none;
  }
}
