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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--primary-dark);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* Motion */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes draw-arc {
  from { stroke-dashoffset: 220; }
  to { stroke-dashoffset: 0; }
}

.anim-rise {
  animation: rise 0.9s var(--ease) both;
}

.anim-rise-2 {
  animation: rise 0.9s var(--ease) 0.12s both;
}

.anim-rise-3 {
  animation: rise 0.9s var(--ease) 0.24s both;
}

.anim-fade {
  animation: fade 1.2s var(--ease) both;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .anim-rise,
  .anim-rise-2,
  .anim-rise-3,
  .anim-fade {
    animation: none !important;
  }

  .btn:hover {
    transform: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border-color: rgba(208, 32, 0, 0.4);
}

.btn-outline:hover {
  background: var(--brand-red-soft);
  color: var(--primary-dark);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #000;
  color: #fff;
}

/* ========== HERO — 氛围图 + 浅色蒙版 + 产品实拍 ========== */
.hero {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
  background: #faf8f7;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  transform: scale(1.03);
  filter: saturate(0.88) brightness(1.06);
  opacity: 0.9;
}

.hero__mask {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.88) 36%,
      rgba(255, 252, 250, 0.68) 58%,
      rgba(255, 248, 246, 0.42) 78%,
      rgba(255, 245, 242, 0.28) 100%
    ),
    radial-gradient(ellipse 70% 80% at 88% 30%, rgba(208, 32, 0, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 60% at 8% 90%, rgba(0, 160, 16, 0.05), transparent 50%);
}

/* 已去掉英雄区顶栏红绿横线，避免与导航底部分隔线叠加重复 */

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero__copy {
  max-width: 560px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.hero__lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-3);
  max-width: 32em;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.hero__visual-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 32, 0, 0.1) 0%, transparent 68%);
  pointer-events: none;
}

.hero__visual-arc {
  position: absolute;
  top: 8%;
  left: 6%;
  right: 6%;
  width: 88%;
  height: auto;
  opacity: 0.45;
  pointer-events: none;
}

.hero__visual-arc path {
  fill: none;
  stroke: var(--brand-red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 280;
  animation: draw-arc 1.6s var(--ease) 0.3s both;
}

.hero__product {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  filter: drop-shadow(0 28px 40px rgba(26, 26, 26, 0.18));
  animation: rise 1s var(--ease) 0.15s both;
}

.hero__caption {
  position: absolute;
  bottom: 18px;
  right: 8%;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

/* ========== STATS ========== */
.stats {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 8px 12px;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 6px;
}

.stat span {
  font-size: 0.8125rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--paper-2);
}

.section-head {
  margin-bottom: 48px;
}

.section-head--center {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--ink-3);
  font-size: 1.05rem;
}

/* ========== 4S FLOW ========== */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.flow__item {
  padding: 32px 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.25s var(--ease);
}

.flow__item:last-child {
  border-right: none;
}

.flow__item:hover {
  background: var(--brand-red-soft);
}

.flow__num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.flow__item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 700;
}

.flow__item p {
  font-size: 0.9375rem;
  color: var(--ink-3);
  line-height: 1.65;
}

.flow__item a {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

.flow__item a + a {
  display: block;
  margin-top: 8px;
}

/* ========== WHY ========== */
.why-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px 64px;
  align-items: center;
}

.why-copy .eyebrow {
  margin-bottom: 14px;
}

.why-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.28;
  margin: 0 0 14px;
}

.why-copy__lead {
  color: var(--ink-3);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 32em;
}

.why-copy h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 28px 0 12px;
  font-weight: 700;
}

.why-copy h3:first-of-type {
  margin-top: 0;
}

.why-copy p {
  color: var(--ink-3);
  font-size: 0.9875rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.why-copy strong {
  color: var(--ink-2);
  font-weight: 600;
}

.why-copy a {
  font-weight: 600;
}

.reasons {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.reasons li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.reasons__n {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  line-height: 1.4;
  padding-top: 2px;
}

.reasons__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reasons__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.reasons__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-3);
}

.reasons__desc a {
  color: var(--primary);
  font-weight: 700;
}

/* ========== QUOTES ========== */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.quote {
  position: relative;
  padding-top: 8px;
}

.quote::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 20px;
}

.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 20px;
}

.quote footer {
  font-size: 0.875rem;
  color: var(--ink-3);
}

.quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
}

/* ========== CRAFTSMAN BAND（浅色杂志：左文右像） ========== */
.craftsman-band {
  padding: 88px 0 48px;
  background:
    radial-gradient(ellipse 50% 60% at 92% 30%, rgba(208, 32, 0, 0.05), transparent 55%),
    var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}

.craftsman-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 48px 64px;
  align-items: center;
}

.craftsman-band__copy {
  min-width: 0;
  max-width: 36em;
}

.craftsman-band__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.craftsman-band__quote {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 28px;
  border: none;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--primary);
}

.craftsman-band__who {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.craftsman-band__who strong {
  font-size: 1.125rem;
  color: var(--ink);
  font-weight: 700;
}

.craftsman-band__who span {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.5;
}

.craftsman-band__points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.craftsman-band__points li {
  position: relative;
  padding: 10px 0 10px 18px;
  font-size: 0.9375rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}

.craftsman-band__points li:last-child {
  border-bottom: none;
}

.craftsman-band__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--secondary);
}

.craftsman-band__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0 0 28px;
  padding: 0;
  font-size: 0.875rem;
  color: var(--ink-3);
  line-height: 1.5;
}

.craftsman-band__metrics b {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin-right: 4px;
}

.craftsman-band__cta {
  margin: 0;
}

.craftsman-band__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  background:
    linear-gradient(180deg, #f3eeea 0%, #e8e0da 100%);
}

.craftsman-band__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(250, 248, 247, 0.55));
  pointer-events: none;
}

.craftsman-band__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

@media (max-width: 900px) {
  .craftsman-band {
    padding: 64px 0 36px;
  }

  .craftsman-band__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .craftsman-band__photo {
    order: -1;
    max-height: 380px;
    max-width: 320px;
    margin: 0 auto;
  }

  .craftsman-band__quote {
    padding-left: 16px;
  }
}

/* ========== STORIES ========== */
.story-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.story-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: background 0.2s var(--ease);
}

.story-item:has(> .story-item__media) {
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
}

.story-item:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.story-item:nth-child(even) {
  padding-left: 32px;
}

.story-item:hover {
  color: inherit;
}

.story-item:hover h3 {
  color: var(--primary);
}

.story-item__media {
  display: block;
  width: 120px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.story-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.story-item:hover .story-item__media img {
  transform: scale(1.04);
}

.story-item__body {
  min-width: 0;
}

.story-item__tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 8px;
}

.story-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color 0.2s var(--ease);
}

.story-item p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.section-foot {
  margin-top: 36px;
  text-align: center;
}

.section-foot .btn + .btn {
  margin-left: 8px;
}

/* 首页故事双 Tab */
.story-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 32px;
  max-width: 420px;
  border: 1px solid var(--line);
  background: #fff;
}

.story-tabs__tab {
  flex: 1;
  margin: 0;
  padding: 12px 16px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink-3);
  cursor: pointer;
  line-height: 1.2;
  transition: color 0.2s, background 0.2s;
}

.story-tabs__tab + .story-tabs__tab {
  border-left: 1px solid var(--line);
}

.story-tabs__tab:hover {
  color: var(--primary);
}

.story-tabs__tab.is-active {
  color: #fff;
  background: var(--primary);
}

.story-tabs__panel[hidden] {
  display: none;
}

/* 真实故事：收紧与上一板块之间的顶距 */
#stories.section {
  padding-top: 48px;
  padding-bottom: 72px;
}

/* 列表分页（WP 归档：.page-numbers + 原型 .is-current） */
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 8px;
}

.pagination a,
.pagination span,
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-3);
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  box-sizing: border-box;
}

.pagination a:hover,
.pagination a.page-numbers:hover {
  color: var(--primary);
  border-color: rgba(208, 32, 0, 0.35);
}

.pagination .is-current,
.pagination .page-numbers.current {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.pagination .is-disabled,
.pagination .page-numbers.dots {
  opacity: 0.45;
  pointer-events: none;
}

.pagination .prev,
.pagination .next {
  min-width: auto;
  padding: 0 14px;
}

.archive-list-footer {
  margin-top: 28px;
  padding-top: 8px;
  text-align: center;
  width: 100%;
}

.archive-list-note {
  margin: 16px 0 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--ink-3);
  text-align: center;
}

/* ========== CTA（维修文案 + 微信二维码合并） ========== */
.cta-band {
  padding: 72px 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(208, 32, 0, 0.08), transparent 50%),
    var(--paper-2);
  border-top: 1px solid var(--line);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band__copy {
  flex: 1 1 280px;
  min-width: 0;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
  margin-bottom: 10px;
}

.cta-band p {
  color: var(--ink-3);
  max-width: 34em;
  margin: 0 0 22px;
  line-height: 1.7;
}

.cta-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-band__qr {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.cta-band__qr img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.cta-band__qr p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  max-width: none;
}

.cta-band__qr span {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-3);
}

/* ========== FOOTER ========== */
.site-footer {
  background: #141414;
  color: #9a9a9a;
  padding: 56px 0 28px;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr auto;
  gap: 32px 28px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-col h4 {
  color: #e8e8e8;
  font-size: 0.875rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-col > li {
  display: contents;
  list-style: none;
}

.footer-col a {
  display: block;
  color: #9a9a9a;
  padding: 4px 0;
}

.footer-col a:hover {
  color: #fff;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: #f2f2f2;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-slogan {
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-phone {
  color: #fff !important;
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-col--wechat {
  justify-self: end;
  text-align: center;
  min-width: 120px;
}

.footer-col--wechat h4 {
  margin-bottom: 12px;
}

.footer-wechat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-wechat img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-wechat span {
  display: block;
  color: #c8c8c8;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

/* 页内加客服微信 */
.kefu-invite {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px 36px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid var(--line);
}

.kefu-invite__qr img {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.kefu-invite__body .eyebrow {
  margin-bottom: 8px;
}

.kefu-invite__body h2 {
  margin: 0 0 10px;
  font-size: 1.375rem;
  line-height: 1.3;
}

.kefu-invite__body > p {
  margin: 0;
  max-width: 34em;
  color: var(--ink-3);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .kefu-invite {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 28px 20px;
  }

  .kefu-invite__body > p {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
  text-align: center;
  line-height: 1.8;
}

.footer-bottom a {
  color: #9a9a9a;
}

/* Mobile bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.06);
}

.mobile-bar a {
  flex: 1;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--ink-3);
  padding: 4px;
}

.mobile-bar a.primary {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__visual {
    min-height: 280px;
    order: -1;
  }

  .flow {
    grid-template-columns: 1fr 1fr;
  }

  .flow__item:nth-child(2) {
    border-right: none;
  }

  .why-layout,
  .quotes {
    grid-template-columns: 1fr;
  }

  .stats__row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-col--wechat {
    grid-column: 1 / -1;
    justify-self: center;
    padding-top: 8px;
  }
}

@media (max-width: 768px) {
  nav.menu,
  .nav-phone {
    display: none;
  }

  .hero {
    padding: 36px 0 48px;
  }

  .hero__mask {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 252, 250, 0.82) 55%,
        rgba(255, 248, 246, 0.72) 100%
      ),
      radial-gradient(ellipse 70% 50% at 50% 0%, rgba(208, 32, 0, 0.06), transparent 60%);
  }

  .hero__bg img {
    object-position: center center;
  }

  .hero__visual {
    min-height: 220px;
  }

  .hero__caption {
    position: static;
    display: block;
    text-align: center;
    margin-top: 12px;
  }

  .section {
    padding: 64px 0;
  }

  .flow,
  .story-list,
  .stats__row {
    grid-template-columns: 1fr;
  }

  .flow__item,
  .story-item:nth-child(odd),
  .story-item:nth-child(even) {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }

  .story-item {
    gap: 0;
  }

  .story-item:has(> .story-item__media) {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }

  .story-item__media {
    width: 96px;
  }

  .reasons li {
    grid-template-columns: 2.25rem 1fr;
    gap: 12px;
    padding: 16px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    gap: 20px 24px;
    align-items: center;
  }

  /* 移动端隐藏页脚菜单列，保留品牌与客服微信同一行 */
  .footer-col:not(.footer-col--brand):not(.footer-col--wechat) {
    display: none;
  }

  .footer-col--brand {
    grid-column: auto;
  }

  .footer-col--wechat {
    grid-column: auto;
    justify-self: end;
    text-align: center;
    padding-top: 0;
    min-width: 0;
  }

  .footer-wechat img {
    width: 88px;
    height: 88px;
  }

  .footer-phone {
    font-size: 1rem;
  }

  .mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 64px;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band__qr {
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }
}
