/* ================================================
   旧猫二手优品 GEO官网 - 全局设计系统
   共享样式表 (assets/style.css)
   ================================================ */

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

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
}

/* ===== Root Variables ===== */
:root {
  --red: #FC1010;
  --red-50: #fff2f1;
  --red-100: #ffdbd8;
  --red-300: #ff8f88;
  --red-600: #e20d0d;
  --red-700: #c40b0b;
  --red-900: #7d0707;
  --red-light: #fdf0ee;
  --dark: #111;
  --gray: #666;
  --border: #eee;
  --light-bg: #fafafa;
  --header-height: 78px;
  /* 阴影阶梯（参考演示站的柔和浮层语言） */
  --shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.05);
  --shadow-md: 0 8px 24px rgba(17, 17, 17, 0.07);
  --shadow-lg: 0 16px 40px rgba(17, 17, 17, 0.1);
  --shadow-red: 0 6px 16px rgba(252, 16, 16, 0.14);
  --shadow-red-hover: 0 12px 28px rgba(252, 16, 16, 0.2);
  /* 缓动 */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  /* 全站统一使用无衬线字体。 */
  --font-sans: "Noto Sans SC", PingFang SC, Helvetica Neue, Arial, sans-serif;
}

/* ===== 基础交互体验 ===== */
html {
  scroll-behavior: smooth;
  /* 锚点跳转时为固定导航预留空间 */
  scroll-padding-top: calc(var(--header-height) + 16px);
}

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

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Body ===== */
body {
  font-family: var(--font-sans);
  background: #fafafa;
  color: #222;
  line-height: 1.8;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ===== 标题衬线排版（对齐参考站：衬线大标题 + 无衬线正文） ===== */
.hero h1,
.inner-banner h1,
.title,
.dark-section h2,
.geo-card h2,
.question-box h2,
.faq-item h3,
.card h3,
.dark-card h3,
.honor-card h3,
.guide-card h3,
.article-card h3,
.product-card h3,
.step-card h4 {
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}

body.nav-open {
  overflow: hidden;
}

/* ===== Container ===== */
.container {
  width: 1280px;
  max-width: calc(100% - 40px);
  margin: auto;
}

/* ===== Links ===== */
a {
  text-decoration: none;
  color: inherit;
}

/* ===== Header ===== */
.header {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  height: calc(var(--header-height) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid #eee;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}
/* 滚动后的悬浮状态（由 enhance.js 切换） */
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.07);
}
.header-block {
  height: calc(var(--header-height) + env(safe-area-inset-bottom));
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  width: 202px;
  min-width: 0;
}

.logo-image {
  display: block;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.menu,
.nav-menu {
  display: flex;
  gap: 26px;
  font-size: 15px;
}

.menu a,
.nav-menu a {
  position: relative;
  transition: color 0.25s ease;
}

/* 桌面端菜单下划线生长动效 */
@media (min-width: 901px) {
  .menu a::after,
  .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s var(--ease-out);
  }

  .menu a:hover::after,
  .nav-menu a:hover::after,
  .menu a.is-active::after,
  .menu a[aria-current="page"]::after,
  .nav-menu a.is-active::after,
  .nav-menu a[aria-current="page"]::after {
    transform: scaleX(1);
  }
}

.menu a:hover,
.nav-menu a:hover {
  color: var(--red);
}

.menu a.is-active,
.menu a[aria-current="page"],
.nav-menu a.is-active,
.nav-menu a[aria-current="page"] {
  color: var(--red);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.nav-toggle.x span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.x span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.x span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mask {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.nav-mask.open {
  opacity: 1;
  visibility: visible;
}

/* PC 页头按新版官网设计稿统一，移动端继续使用原有折叠菜单。 */
@media (min-width: 901px) {
  :root {
    --header-height: 64px;
  }

  .header {
    background: #fff;
    border-top: 0;
    border-bottom: 1px solid #eee;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav {
    justify-content: flex-start;
  }

  .logo {
    width: 156px;
    flex: 0 0 156px;
  }

  .navwrap {
    margin-left: 128px;
  }

  .menu,
  .nav-menu {
    gap: 40px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    white-space: nowrap;
  }

  .menu a::after,
  .nav-menu a::after {
    display: none;
  }

  .nav-right {
    gap: 20px;
    margin-left: auto;
  }

  .phone {
    display: none;
  }

  .header .app-btn,
  .header .service-btn {
    display: inline-flex;
    width: 88px;
    height: 28px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 28px;
    font-size: 14px;
    line-height: 1;
    box-shadow: none;
  }

  .header .service-btn:hover,
  .header .app-btn:hover {
    transform: none;
    box-shadow: none;
  }
}

.phone {
  font-weight: 700;
  color: var(--red);
  transition: color 0.25s ease;
}

.phone:hover {
  color: var(--red-700);
}

.app-btn {
  border: 1px solid var(--red);
  padding: 8px 18px;
  border-radius: 20px;
  color: var(--red);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s ease,
    color 0.25s ease;
}

.app-btn:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.service-btn {
  background: var(--red);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 22px;
  box-shadow: var(--shadow-red);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s ease;
}

.service-btn:hover {
  background: var(--red-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-hover);
}

.service-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-red);
}

/* ===== Section ===== */
.section {
  padding: 96px 0;
}

.section--filters {
  padding: 36px 0 0;
}

.section--filters .cat-bar,
.section--filters .city-box {
  margin-top: 0;
}

/* ===== 内页 Banner ===== */
.inner-banner {
  position: relative;
  background: #f7f7f7;
  font-family: var(--font-sans);
  overflow: hidden;
}

.inner-banner__content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 384px;
}

.inner-banner__text {
  position: relative;
  z-index: 2;
  max-width: 500px;
  padding: 40px 0;
}

.inner-banner h1 {
  color: #2b2f33;
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -1px;
}

.inner-banner h1 span {
  color: var(--red);
}

.inner-banner p {
  margin-top: 26px;
  color: #666;
  font-size: 18px;
  line-height: 1.8;
  width: 390px;
}

.inner-banner__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.inner-banner--about .inner-banner__image {
  object-position: center center;
}

.title {
  font-size: 38px;
  text-align: center;
  margin-bottom: 50px;
}

/* ===== Buttons ===== */
.btn-primary {
  color: #fff;
  padding: 15px 32px;
  border-radius: 30px;
  display: inline-block;
  background: #FC1010;
  box-shadow: var(--shadow-red);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s ease;
}

.btn-primary:hover {
  background: var(--red-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-hover);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  border: 1px solid var(--red);
  color: var(--red);
  padding: 11px 30px;
  border-radius: 30px;
  display: inline-block;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s ease,
    color 0.25s ease;
}

.btn-outline:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-red {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  box-shadow: var(--shadow-red);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s ease;
}

.btn-red:hover {
  background: var(--red-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-hover);
}

.btn-red:active {
  transform: translateY(0);
}

/* ===== Tags ===== */
.tag {
  display: inline-block;
  width: fit-content;
  background: var(--red-light);
  color: var(--red);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 5px;
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease-out);
}

.tag:hover {
  background: var(--red-100);
  transform: translateY(-1px);
}

/* ===== Footer ===== */
.footer {
  padding: 33px 0 30px;
  background: #111;
  color: #9a9a9a;
}

.home-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.home-footer__brand {
  max-width: 300px;
  font-size: 14px;
  line-height: 1.6;
  color: #8f8f8f;
}

.home-footer__logo {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
}

.home-footer__brand p {
  margin: 0;
  margin-bottom: 8px;
}
.home-footer__brand strong {
  font-size: 16px;
  font-weight: 700;
  color: #f2f2f2;
}

.home-footer__brand address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
  line-height: 1.7;
}

.home-footer__nav {
  display: grid;
  width: 400px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 8px;
}

.home-footer__nav-toggle {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f5f5f5;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  text-align: left;
}

.home-footer__nav-icon {
  display: none;
}

.home-footer__nav-panel[hidden] {
  display: block;
}

.home-footer__nav-panel a {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #9f9f9f;
  transition:
    color 0.22s ease,
    transform 0.22s var(--ease-out);
}

.home-footer__nav-panel a:last-child {
  margin-bottom: 0;
}

.home-footer__nav-panel a:hover,
.home-footer__nav-panel a:focus-visible,
.home-footer__contact-phone a:hover,
.home-footer__contact-phone a:focus-visible,
.home-footer__bottom a:hover,
.home-footer__bottom a:focus-visible {
  color: #fff;
}

.home-footer__nav-panel a:hover {
  transform: translateX(4px);
}

.home-footer__contact {
  flex: 0 0 108px;
  width: 108px;
  padding-top: 14px;
}

.home-footer__contact-title {
  display: none;
  margin: 0 0 15px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #f5f5f5;
}

.home-footer__contact-content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
}

.home-footer__contact-info {
  display: none;
  flex: 1;
  min-width: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #8f8f8f;
}

.home-footer__contact-phone {
  margin: 0 0 10px;
}

.home-footer__contact-phone a {
  color: #f2f2f2;
  font-size: 16px;
  font-weight: 700;
}

.home-footer__contact-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  font-style: normal;
}

.home-footer__app {
  flex: 0 0 108px;
  width: 108px;
  text-align: center;
}

.home-footer__app img {
  display: block;
  width: 84px;
  height: 84px;
  margin: 0 auto 15px;
  padding: 3px;
  background: #fff;
  border-radius: 12px;
}

.home-footer__app p {
  font-size: 14px;
  line-height: 1.5;
  color: #b0b0b0;
}

.home-footer__bottom {
  display: flex;
  justify-content: center;
  gap: 90px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  line-height: 1.5;
  color: #8f8f8f;
}

.home-footer__bottom a {
  color: #8f8f8f;
  transition: color 0.22s ease;
}

.home-footer__friend-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 900px) {
  .home-footer__top {
    flex-direction: column;
    gap: 30px;
  }

  .home-footer__brand,
  .home-footer__nav,
  .home-footer__contact {
    width: 100%;
    max-width: 500px;
  }

  .home-footer__nav {
    max-width: 100%;
  }

  .home-footer__contact-content {
    justify-content: space-between;
  }

  .home-footer__bottom {
    justify-content: flex-start;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 26px;
  }

  .home-footer__top {
    gap: 0;
  }

  .home-footer__logo {
    width: 204px;
    margin-bottom: 18px;
  }

  .home-footer__brand {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.7;
  }

  .home-footer__brand p {
    margin-bottom: 0;
  }
  .home-footer__brand .home-footer__phone,
  .home-footer__brand .home-footer__address {
    display: none;
  }

  .home-footer__nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
  }

  .home-footer__nav-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .home-footer__nav-group:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .home-footer__nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0;
    padding: 24px 0 21px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    cursor: pointer;
  }

  .home-footer__nav-icon {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    color: #f5f5f5;
  }

  .home-footer__nav-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .home-footer__nav-toggle[aria-expanded="true"] .home-footer__nav-icon::before {
    top: 3px;
    transform: rotate(225deg);
  }

  .home-footer__nav-panel[hidden] {
    display: none;
  }

  .home-footer__nav-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 -15px;
    padding: 24px 47px 38px;
    background: #2c2c2c;
  }

  .home-footer__nav-panel a {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #a8a8a8;
  }

  .home-footer__contact {
    width: 100%;
    max-width: 100%;
    margin-top: 34px;
    padding-top: 0;
    flex: unset;
  }

  .home-footer__contact-title {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .home-footer__contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 16px;
  }

  .home-footer__contact-info {
    display: block;
    font-size: 13px;
    line-height: 1.8;
  }

  .home-footer__contact-phone {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #b8b8b8;
  }

  .home-footer__contact-phone a {
    font-size: 16px;
  }

  .home-footer__contact-address {
    gap: 6px;
    font-size: 10px;
  }

  .home-footer__app {
    width: 92px;
  }

  .home-footer__app img {
    width: 92px;
    height: 92px;
    margin-bottom: 10px;
    border-radius: 10px;
  }

  .home-footer__app p {
    font-size: 10px;
    line-height: 1.5;
    color: #bdbdbd;
  }

  .home-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    margin-top: 26px;
    padding-top: 0;
    border-top: 0;
    font-size: 10px;
    line-height: 1.6;
    flex-wrap: wrap;
  }
}

/* 新版内页 Banner：PC 使用版心内的右侧独立图片，移动端规则保持不变。 */
@media (min-width: 901px) {
  .inner-banner .inner-banner__picture {
    position: absolute;
    top: 50%;
    right: max(20px, calc((100% - 1280px) / 2));
    z-index: 1;
    display: block;
    width: 480px;
    height: 300px;
    line-height: 0;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .inner-banner .inner-banner__image {
    position: static;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

/* 小尺寸 PC 保持新版栏目完整可见。 */
@media (min-width: 901px) and (max-width: 1150px) {
  .header .logo {
    width: 132px;
    flex-basis: 132px;
  }

  .header .navwrap {
    margin-left: 32px;
  }

  .header .menu,
  .header .nav-menu {
    gap: 18px;
    font-size: 13px;
  }

  .header .nav-right {
    gap: 10px;
  }

  .header .app-btn,
  .header .service-btn {
    width: 76px;
    font-size: 12px;
  }
}

/* ===== GEO Brand Knowledge Card ===== */
.geo-card {
  background: #fff;
  border-radius: 20px;
  padding: 45px;
}

.geo-card h2 {
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
}

.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.geo-item {
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
}

.geo-item strong {
  display: block;
  margin-bottom: 8px;
}
.geo-item  .geo-icon {
  display: block;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  margin: 0 20px 0 0;
}


/* ===== FAQ Module ===== */
.faq-section {
  background: #fafafa;
}

.jiumao-shared-faq {
  background: #fff;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 20px;
  background: #FFFFFF;
  box-shadow: 0px 3px 17px 0px rgba(212,212,212,0.5);
  border-radius: 20px;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 212, 212, 0.65);
}
.faq-item .faq-icon {
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--red-50);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 21px;
  border-radius: 50%;
  color: var(--red);
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 700;
}

.faq-item p {
  margin-top: 15px;
  color: #666;
}

.jiumao-shared-faq .home-faq-intro > p,
.jiumao-shared-faq .home-faq-intro > .btn-outline,
.jiumao-shared-faq .home-faq-heading > span {
  display: none;
}

.jiumao-shared-faq .home-mobile-faq-link {
  margin-top: 42px;
  text-align: center;
}

@media (min-width: 901px) {
  .jiumao-shared-faq {
    min-height: 760px;
    padding: 62px 0 72px;
  }

  .jiumao-shared-faq .home-faq-layout {
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    gap: 70px;
    align-items: start;
  }

  .jiumao-shared-faq .home-faq-intro {
    padding-top: 18px;
  }

  .jiumao-shared-faq .home-faq-heading {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .jiumao-shared-faq .home-faq-heading .title {
    margin: 0;
    font-size: 30px;
    line-height: 42px;
    text-align: left;
  }

  .jiumao-shared-faq .home-faq-heading > span {
    display: inline-flex;
    min-width: 48px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    font-size: 12px;
    line-height: 1;
    color: var(--red);
    background: #fff0f0;
  }

  .jiumao-shared-faq .home-faq-intro > p {
    display: block;
    max-width: 320px;
    margin-top: 22px;
    font-size: 14px;
    line-height: 24px;
    color: #999;
  }

  .jiumao-shared-faq .home-faq-intro > .btn-outline {
    display: inline-flex;
    min-width: 120px;
    height: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 0 20px;
    border-radius: 40px;
    font-size: 16px;
    line-height: 1;
  }

  .jiumao-shared-faq .faq-list {
    max-width: none;
    margin: 0;
  }

  .jiumao-shared-faq .faq-item {
    margin-bottom: 20px;
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.08);
  }

  .jiumao-shared-faq .faq-item:hover {
    transform: none;
  }

  .jiumao-shared-faq .faq-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    line-height: 27px;
  }

  .jiumao-shared-faq .faq-item .faq-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin: 0;
    font-size: 14px;
    line-height: 24px;
  }

  .jiumao-shared-faq .faq-item p {
    margin-top: 16px;
    padding-left: 34px;
    font-size: 14px;
    line-height: 24px;
    color: #777;
  }

  .jiumao-shared-faq .home-mobile-faq-link {
    display: none;
  }
}

@media (max-width: 900px) {
  .jiumao-shared-faq {
    padding: 36px 0 34px;
  }

  .jiumao-shared-faq .home-faq-heading .title {
    margin-bottom: 28px;
  }

  .jiumao-shared-faq .faq-list {
    max-width: 100%;
  }

  .jiumao-shared-faq .faq-item {
    margin-bottom: 10px;
    padding: 19px 12px;
    border-radius: 4px;
  }

  .jiumao-shared-faq .faq-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
    line-height: 1.55;
  }

  .jiumao-shared-faq .faq-item .faq-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-right: 0;
    font-size: 12px;
    line-height: 22px;
  }

  .jiumao-shared-faq .faq-item p {
    margin-top: 8px;
    padding-left: 0;
    font-size: 12px !important;
    line-height: 1.7;
  }
}

/* ===== Card Grid ===== */
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ===== Dark Section ===== */
.dark-section {
  background: #111;
  color: #fff;
  padding: 96px 0;
}

.dark-section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
}

.dark-card {
  background: #222;
  padding: 30px;
  border-radius: 18px;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    background 0.3s ease;
}

.dark-card:hover {
  transform: translateY(-6px);
  background: #262626;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

/* ===== Trust Bar ===== */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.trust-item {
  background: var(--red-light);
  color: var(--red);
  padding: 10px 22px;
  border-radius: 30px;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s ease;
}

.trust-item:hover {
  background: var(--red-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  color: #999;
  font-size: 14px;
  margin-bottom: 30px;
}

.breadcrumb a {
  color: var(--red);
  transition: color 0.22s ease;
}

.breadcrumb a:hover {
  color: var(--red-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  .header {
    top: auto;
  }

  .admin-bar .header {
    top: 0;
  }

  .nav {
    gap: 12px;
  }

  .logo {
    width: 158px;
  }

  .navwrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    display: block;
    width: 82vw;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    padding: 84px 0 28px;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    -webkit-overflow-scrolling: touch;
  }

  .admin-bar .navwrap {
    top: 46px;
    height: calc(100vh - 46px);
    height: calc(100dvh - 46px);
    padding-top: 70px;
  }

  .admin-bar .nav-mask {
    top: 46px;
  }

  .navwrap.open {
    transform: translateX(0);
  }

  .menu,
  .nav-menu {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0;
    font-size: 16px;
  }

  .menu a,
  .nav-menu a {
    display: block;
    min-height: 52px;
    padding: 14px 28px;
    border-bottom: 1px solid var(--border);
    color: var(--dark);
    line-height: 1.5;
  }

  .menu a:hover,
  .nav-menu a:hover {
    background: var(--red-light);
  }

  .nav-right {
    margin-left: auto;
    gap: 8px;
  }

  .nav-right .phone,
  .nav-right .app-btn,
  .nav-right .service-btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .container {
    max-width: calc(100% - 30px);
  }

  .card-grid-4,
  .card-grid-3,
  .card-grid-2,
  .geo-grid {
    grid-template-columns: 1fr !important;
  }

  .footer .card-grid-4,
  .footer > .container > div:first-child {
    grid-template-columns: 1fr !important;
  }

  .section,
  .dark-section {
    padding: 64px 0;
  }

  .title,
  .dark-section h2,
  .geo-card h2 {
    font-size: 28px;
    line-height: 1.35;
    margin-bottom: 28px;
  }

  .geo-card,
  .faq-item,
  .card,
  .dark-card {
    padding: 22px;
    border-radius: 14px;
  }

  .hero-buttons,
  .trust-bar,
  .nav-right {
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-outline,
  .btn-red,
  .app-btn,
  .service-btn {
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: calc(100% - 48px);
  }

  .logo {
    font-size: 16px;
  }

  .title,
  .dark-section h2,
  .geo-card h2 {
    font-size: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline,
  .btn-red {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }
}
