/* ============================================================
   page-lianxi-women.css — 联系我们 · 云朵拟态 (lc-*)
   与首页同系视觉，独立杂志式布局
   ============================================================ */

html.theme-pearl-elegance .pe-contact-page {
  --lc-bg: #f6f1ec;
  --lc-surface: #fffdfb;
  --lc-ink: #1c1a17;
  --lc-muted: #7a736c;
  --lc-body: #5c5650;
  --lc-border: rgba(28, 26, 23, 0.1);
  --lc-border-strong: rgba(28, 26, 23, 0.2);
  --lc-shadow: 0 26px 60px -30px rgba(28, 26, 23, 0.24);
  --lc-shadow-sm: 0 14px 32px -18px rgba(28, 26, 23, 0.18);
  --lc-clay: #c98f6b;
  --lc-sage: #7f9a76;
  --lc-sky: #7f97b8;
  --lc-sun: #d9a53f;
  --lc-sans: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
  font-family: var(--lc-sans);
  background: var(--lc-bg);
  padding-bottom: 0;
}

.pe-contact-page .container { max-width: 1360px; }

/* —— 云朵 —— */
.lc-cloud {
  position: absolute;
  width: 76px;
  height: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #eee7e2 100%);
  border-radius: 999px;
  box-shadow: 0 16px 28px -12px rgba(28, 26, 23, 0.22);
  animation: lc-float 8s ease-in-out infinite;
  pointer-events: none;
}

.lc-cloud::before,
.lc-cloud::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: inherit;
}

.lc-cloud::before { width: 42px; height: 42px; top: -21px; left: 6px; }
.lc-cloud::after { width: 30px; height: 30px; top: -15px; left: 42px; }

.lc-cloud--sm { width: 44px; height: 18px; }
.lc-cloud--sm::before { width: 24px; height: 24px; top: -12px; left: 4px; }
.lc-cloud--sm::after { width: 17px; height: 17px; top: -8px; left: 24px; }

.lc-cloud--md { width: 62px; height: 24px; }
.lc-cloud--md::before { width: 34px; height: 34px; top: -17px; left: 5px; }
.lc-cloud--md::after { width: 24px; height: 24px; top: -12px; left: 34px; }

.lc-cloud--lg { width: 112px; height: 44px; }
.lc-cloud--lg::before { width: 62px; height: 62px; top: -31px; left: 10px; }
.lc-cloud--lg::after { width: 44px; height: 44px; top: -22px; left: 62px; }

@keyframes lc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* —— 描边角标 —— */
.lc-frame {
  position: absolute;
  inset: -10px;
  pointer-events: none;
}

.lc-frame__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 0 solid var(--lc-border-strong);
}

.lc-frame__corner--tl { top: 0; left: 0; border-top-width: 1.5px; border-left-width: 1.5px; border-radius: 6px 0 0 0; }
.lc-frame__corner--tr { top: 0; right: 0; border-top-width: 1.5px; border-right-width: 1.5px; border-radius: 0 6px 0 0; }
.lc-frame__corner--bl { bottom: 0; left: 0; border-bottom-width: 1.5px; border-left-width: 1.5px; border-radius: 0 0 0 6px; }
.lc-frame__corner--br { bottom: 0; right: 0; border-bottom-width: 1.5px; border-right-width: 1.5px; border-radius: 0 0 6px 0; }

/* —— 通用 —— */
.lc-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 24px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lc-ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--lc-border-strong);
}

.lc-head {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto clamp(32px, 5vw, 52px);
}

.lc-head__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lc-clay);
}

.lc-head__title {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: clamp(26px, 3.8vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--lc-ink);
}

.lc-head__sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--lc-muted);
}

.pe-contact-page .lc-hero__sub a,
.pe-contact-page .lc-zone__sub a,
.pe-contact-page .lc-route__meta a,
.pe-contact-page .lc-note a,
.pe-contact-page .lc-faq-row a {
  color: var(--lc-clay);
  font-weight: 700;
}

.lc-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: #fffdfb;
  background: #18140f;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 34px -14px rgba(24, 20, 15, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lc-btn-dark:hover {
  transform: translateY(-2px);
  color: #fffdfb;
}

.lc-btn-dark--onlight {
  color: #1c1a17;
  background: #fffdfb;
  box-shadow: 0 16px 34px -14px rgba(0, 0, 0, 0.4);
}

.lc-btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lc-ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--lc-border-strong);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lc-btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  color: var(--lc-ink);
}

.lc-btn-outline .lc-frame { inset: -7px; }

.lc-link-quiet {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 253, 251, 0.86);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lc-link-quiet:hover { color: #fffdfb; }

/* —— ① 首屏 —— */
.lc-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(92vh, 880px);
  padding: clamp(120px, 14vw, 150px) 0 clamp(64px, 8vw, 80px);
  background: radial-gradient(130% 100% at 50% -10%, #f3ebe6 0%, #ece3e2 45%, #ede7e3 75%, #f6f1ec 100%);
}

html.theme-pearl-elegance:has(#page-lianxi) .pe-contact-page .lc-hero {
  margin-top: calc(-1 * var(--nav-height));
}

.lc-hero__clouds { position: absolute; inset: 0; z-index: 0; }
.lc-hero__clouds .lc-cloud:nth-child(1) { top: 12%; left: 4%; }
.lc-hero__clouds .lc-cloud:nth-child(2) { top: 22%; left: 12%; animation-delay: 1.2s; }
.lc-hero__clouds .lc-cloud:nth-child(3) { top: 8%; right: 6%; animation-delay: 0.6s; }
.lc-hero__clouds .lc-cloud:nth-child(4) { top: 48%; right: 4%; animation-delay: 1.6s; }
.lc-hero__clouds .lc-cloud:nth-child(5) { top: 72%; left: 2%; animation-delay: 0.9s; }

.lc-hero__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding-inline: clamp(24px, 6vw, 88px);
}

.lc-hero__grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.lc-hero__col-text { flex: 0 0 auto; width: min(720px, 100%); }
.lc-hero__col-panel { flex: 0 0 auto; width: 360px; max-width: 100%; display: flex; }

.lc-hero__title {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--lc-ink);
}

.lc-hero__accent {
  background: linear-gradient(135deg, var(--lc-clay), var(--lc-sun));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lc-hero__role {
  margin: 0 0 16px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  color: #46413b;
}

.lc-hero__sub {
  margin: 0 0 24px;
  max-width: 52ch;
  font-size: clamp(14.5px, 1.3vw, 16px);
  line-height: 1.8;
  color: var(--lc-muted);
}

.lc-hero__sub strong { color: var(--lc-ink); font-weight: 700; }

.lc-hero__points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lc-hero__points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--lc-ink);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--lc-border);
}

.lc-hero__points i { width: 14px; height: 14px; color: var(--lc-sage); }

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

.lc-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 4vh, 36px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lc-muted);
  animation: lc-scroll-bounce 2.2s ease-in-out infinite;
}

.lc-hero__scroll i { width: 16px; height: 16px; }

@keyframes lc-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* —— 响应卡 —— */
.lc-sla {
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--lc-surface);
  border: 1px solid var(--lc-border);
  box-shadow: var(--lc-shadow);
}

.lc-sla__head {
  padding: clamp(20px, 2.8vw, 26px) clamp(22px, 3vw, 28px) clamp(14px, 2vw, 18px);
  border-bottom: 1px solid var(--lc-border);
  background: linear-gradient(180deg, #fff 0%, #faf6f2 100%);
}

.lc-sla__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fffdfb;
  background: var(--lc-sky);
}

.lc-sla__badge i { width: 12px; height: 12px; }

.lc-sla__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--lc-ink);
}

.lc-sla__list {
  list-style: none;
  margin: 0;
  padding: clamp(14px, 2vw, 18px) clamp(22px, 3vw, 28px);
}

.lc-sla__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--lc-border);
}

.lc-sla__list li:last-child { border-bottom: none; }

.lc-sla__key {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--lc-muted);
}

.lc-sla__val {
  font-size: 13px;
  font-weight: 700;
  color: var(--lc-ink);
  text-align: right;
}

.lc-sla__note {
  margin: 0;
  padding: 14px clamp(22px, 3vw, 28px);
  font-size: 12px;
  line-height: 1.6;
  color: var(--lc-muted);
  background: #f6f2ee;
  border-top: 1px solid var(--lc-border);
}

/* —— ② 轨道 —— */
.lc-track {
  padding: clamp(48px, 8vw, 80px) 0;
  position: relative;
}

.lc-track::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(127, 151, 184, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.lc-track .container { position: relative; z-index: 1; }

.lc-track__rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 18px);
}

.lc-track__stop {
  flex: 1 1 140px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: clamp(16px, 2.2vw, 22px) clamp(14px, 2vw, 18px);
  border-radius: 18px;
  text-decoration: none;
  text-align: center;
  background: var(--lc-surface);
  border: 1px solid var(--lc-border);
  box-shadow: var(--lc-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lc-track__stop:hover {
  transform: translateY(-3px);
  box-shadow: var(--lc-shadow);
}

.lc-track__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: #fffdfb;
  background: #1c1a17;
}

.lc-track__label {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--lc-ink);
}

/* —— ③ 杂志式正文 —— */
.lc-magazine {
  padding: clamp(40px, 6vw, 64px) 0 clamp(56px, 8vw, 88px);
}

.lc-magazine__wrap {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.lc-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  padding: clamp(18px, 2.4vw, 22px);
  border-radius: 20px;
  background: var(--lc-surface);
  border: 1px solid var(--lc-border);
  box-shadow: var(--lc-shadow-sm);
}

.lc-sidebar__label {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lc-muted);
}

.lc-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.lc-sidebar__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lc-ink);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.lc-sidebar__nav a i {
  width: 15px;
  height: 15px;
  color: var(--lc-clay);
  flex-shrink: 0;
}

.lc-sidebar__nav a:hover {
  background: #f6f2ee;
  color: var(--lc-clay);
}

.lc-sidebar__cta {
  padding-top: 14px;
  border-top: 1px solid var(--lc-border);
}

.lc-sidebar__cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fffdfb;
  text-decoration: none;
  background: #1c1a17;
  transition: background 0.2s ease;
}

.lc-sidebar__cta a:hover {
  background: #2a2621;
  color: #fffdfb;
}

.lc-sidebar__cta a i { width: 15px; height: 15px; color: var(--lc-sun); }

.lc-body {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 72px);
}

.lc-zone { scroll-margin-top: calc(var(--nav-height) + 20px); }

.lc-zone__head {
  margin-bottom: clamp(20px, 3vw, 28px);
  padding-bottom: clamp(16px, 2.4vw, 22px);
  border-bottom: 2px solid var(--lc-border);
}

.lc-zone__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lc-sky);
  background: rgba(127, 151, 184, 0.12);
  border: 1px solid rgba(127, 151, 184, 0.25);
}

.lc-zone__title {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.25;
  color: var(--lc-ink);
}

.lc-zone__sub {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--lc-muted);
}

/* —— 工单区块 —— */
.lc-ticket {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: clamp(20px, 3vw, 28px);
  align-items: start;
}

.lc-ticket__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lc-ticket__steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 22px);
  border-radius: 16px;
  background: var(--lc-surface);
  border: 1px solid var(--lc-border);
  box-shadow: var(--lc-shadow-sm);
}

.lc-ticket__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #fffdfb;
  background: var(--lc-clay);
}

.lc-ticket__steps h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--lc-ink);
}

.lc-ticket__steps p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--lc-muted);
}

.lc-ticket__panel {
  padding: clamp(24px, 3vw, 30px);
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(135deg, #1c1a17 0%, #2a2621 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fffdfb;
}

.lc-ticket__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--lc-sun);
}

.lc-ticket__ico i { width: 24px; height: 24px; }

.lc-ticket__panel h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.lc-ticket__panel > p {
  margin: 0 0 20px;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 253, 251, 0.72);
}

.lc-ticket__panel .lc-btn-dark {
  width: 100%;
  margin-bottom: 14px;
}

.lc-ticket__sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lc-sun);
  text-decoration: none;
}

.lc-ticket__sub i { width: 14px; height: 14px; }

/* —— 场景分流 —— */
.lc-route-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lc-route {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 18px);
  align-items: center;
  padding: clamp(16px, 2.2vw, 20px) clamp(18px, 2.6vw, 22px);
  border-radius: 16px;
  background: var(--lc-surface);
  border: 1px solid var(--lc-border);
  box-shadow: var(--lc-shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lc-route:hover {
  border-color: var(--lc-border-strong);
  transform: translateY(-2px);
}

.lc-route__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f6f2ee;
  border: 1px solid var(--lc-border);
  color: var(--lc-clay);
}

.lc-route__ico i { width: 18px; height: 18px; }

.lc-route__body h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--lc-ink);
}

.lc-route__body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--lc-muted);
}

.lc-route__meta {
  text-align: right;
  min-width: 100px;
}

.lc-route__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--lc-ink);
  background: #f6f2ee;
  border: 1px solid var(--lc-border);
}

.lc-route__tag--primary {
  color: #fffdfb;
  background: var(--lc-clay);
  border-color: var(--lc-clay);
}

.lc-route__meta small {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--lc-muted);
}

/* —— 便利贴 —— */
.lc-notes__scatter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 22px);
}

.lc-note {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.6vw, 26px);
  border-radius: 18px;
  background: var(--lc-surface);
  border: 1px solid var(--lc-border);
  box-shadow: var(--lc-shadow-sm);
  transform: rotate(-1deg);
  transition: transform 0.25s ease;
}

.lc-note--sage {
  transform: rotate(1.2deg);
  background: linear-gradient(165deg, #f8faf7 0%, #fffdfb 100%);
}

.lc-note:hover { transform: rotate(0) translateY(-3px); }

.lc-note__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: #f6f2ee;
  border: 1px solid var(--lc-border);
  color: var(--lc-clay);
}

.lc-note__ico i { width: 20px; height: 20px; }

.lc-note h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--lc-ink);
}

.lc-note > p:not(.lc-note__hint) {
  margin: 0 0 14px;
  flex: 1;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--lc-muted);
}

.lc-note a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.lc-note a i { width: 14px; height: 14px; }

.lc-note__hint {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--lc-muted);
}

/* —— 联系前准备 —— */
.lc-prep {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
}

.lc-prep li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 22px);
  border-radius: 16px;
  background: var(--lc-surface);
  border: 1px solid var(--lc-border);
  box-shadow: var(--lc-shadow-sm);
}

.lc-prep__mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lc-sage);
  color: #fffdfb;
}

.lc-prep__mark i { width: 14px; height: 14px; }

.lc-prep strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lc-ink);
}

.lc-prep span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: var(--lc-muted);
}

/* —— FAQ 列表 —— */
.lc-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lc-faq-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 22px);
  border-radius: 16px;
  background: var(--lc-surface);
  border: 1px solid var(--lc-border);
  box-shadow: var(--lc-shadow-sm);
}

.lc-faq-row__mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  color: #fffdfb;
  background: var(--lc-clay);
}

.lc-faq-row h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--lc-ink);
}

.lc-faq-row p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--lc-muted);
}

/* —— 延伸阅读 —— */
.lc-more {
  padding: clamp(28px, 4vw, 40px) 0 clamp(32px, 5vw, 48px);
}

.lc-more__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.lc-more-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lc-ink);
  text-decoration: none;
  background: var(--lc-surface);
  border: 1px solid var(--lc-border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lc-more-pill:hover {
  transform: translateY(-2px);
  border-color: var(--lc-border-strong);
  color: var(--lc-ink);
}

.lc-more-pill i { width: 16px; height: 16px; color: var(--lc-clay); }

/* —— 收束 CTA —— */
.lc-closing {
  position: relative;
  overflow: hidden;
  margin: 0 clamp(16px, 3vw, 24px) clamp(24px, 4vw, 40px);
  padding: clamp(56px, 9vw, 96px) 0;
  border-radius: 36px;
  background: radial-gradient(120% 100% at 50% -10%, #2a2621 0%, #1c1a17 60%);
}

.lc-closing__clouds { position: absolute; inset: 0; z-index: 0; opacity: 0.9; }
.lc-closing__clouds .lc-cloud { background: linear-gradient(180deg, #4a453d, #34302a); box-shadow: none; }
.lc-closing__clouds .lc-cloud::before,
.lc-closing__clouds .lc-cloud::after { background: inherit; }
.lc-closing__clouds .lc-cloud:nth-child(1) { top: 14%; left: 10%; }
.lc-closing__clouds .lc-cloud:nth-child(2) { top: 60%; left: 22%; animation-delay: 1s; }
.lc-closing__clouds .lc-cloud:nth-child(3) { top: 20%; right: 12%; animation-delay: 2s; }

.lc-closing__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.lc-closing__title {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.25;
  color: #fffdfb;
}

.lc-closing__sub {
  margin: 0 auto 30px;
  max-width: 46ch;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 253, 251, 0.72);
}

.lc-closing__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
}

/* —— fade-in —— */
#page-lianxi .fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

#page-lianxi .fade-in.visible,
#page-lianxi .lc-hero.fade-in {
  opacity: 1;
  transform: none;
}

/* —— 响应式 —— */
@media (max-width: 1080px) {
  .lc-hero__grid {
    flex-direction: column;
    gap: clamp(36px, 8vw, 48px);
  }

  .lc-hero__col-text { width: 100%; text-align: center; }
  .lc-hero__col-panel { width: 100%; justify-content: center; }
  .lc-hero__sub { margin-inline: auto; text-align: left; }
  .lc-hero__points { justify-content: center; }
  .lc-hero__actions { justify-content: center; }

  .lc-magazine__wrap { grid-template-columns: 1fr; }

  .lc-sidebar {
    position: static;
    padding: 14px 16px;
  }

  .lc-sidebar__nav {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }

  .lc-sidebar__nav a {
    flex: 1 1 auto;
    font-size: 12px;
    padding: 8px 10px;
  }

  .lc-sidebar__cta { padding-top: 12px; }

  .lc-ticket { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .lc-hero__clouds .lc-cloud:nth-child(2),
  .lc-hero__clouds .lc-cloud:nth-child(5) { display: none; }

  .lc-hero__scroll { display: none; }

  .lc-track__stop { flex: 1 1 calc(50% - 8px); max-width: none; }

  .lc-notes__scatter,
  .lc-prep { grid-template-columns: 1fr; }

  .lc-note,
  .lc-note--sage { transform: none; }

  .lc-route {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .lc-route__meta {
    grid-column: 1 / -1;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--lc-border);
  }

  .lc-route__meta small { margin-top: 0; }

  .lc-closing { margin-inline: 12px; border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  #page-lianxi .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lc-cloud { animation: none; }
  .lc-hero__scroll { animation: none; }

  .lc-track__stop:hover,
  .lc-route:hover,
  .lc-note:hover,
  .lc-more-pill:hover,
  .lc-btn-dark:hover,
  .lc-btn-outline:hover {
    transform: none;
  }
}
