/* 谦信邮币网 · 收购落地页 — 津涛结构 + 谦信品牌色 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700;900&display=swap');

:root {
  --bg: #faf7f2;
  --surface: #fff;
  --ink: #2b2825;
  --ink-dim: #726e68;
  --ink-light: #a8a49e;
  --accent: #b8946e;
  --accent-dim: #8b6f52;
  --accent-deep: #6d5438;
  --accent-pale: #f6f0e7;
  --cta: #c45c3e;
  --cta-hover: #a84a30;
  --border: #e8e3da;
  --cream: #fff8ee;
  --brand-gold: #e8c99a;
  --brand-bar: #5a4228;
  --font: 'Noto Sans SC', -apple-system, 'PingFang SC', sans-serif;
  --page-max: 480px;
  --bar-h: 3.75rem;
  --float-phone-h: 2.75rem;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --float-stack: calc(var(--float-phone-h) + var(--bar-h) + var(--safe-bottom));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: var(--float-stack);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: #e8a87c; }

.page {
  max-width: var(--page-max);
  margin: 0 auto;
  background: var(--surface);
  overflow-x: clip;
}

/* ① 顶栏：下滑收起公司介绍，电话条常驻吸顶 */
.lp-top-shell {
  position: sticky;
  top: 0;
  z-index: 200;
}
.lp-top {
  padding: 10px 12px 8px;
  background: linear-gradient(165deg, var(--accent-deep) 0%, var(--brand-bar) 100%);
  color: #fff;
  overflow: hidden;
  max-height: 132px;
  opacity: 1;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease, padding 0.35s ease;
}
.lp-top-shell.is-collapsed .lp-top {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
}
.lp-top-shell.is-collapsed {
  box-shadow: 0 2px 12px rgba(45, 32, 18, 0.18);
}
.lp-phone-bar--top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lp-top__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-top__logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}
.lp-top__name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: #fff;
}
.lp-top__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lp-top__tags span {
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(232, 201, 154, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
}

/* ① 首屏：单张营销海报 */
.lp-hero-img {
  line-height: 0;
  background: #1a1208;
}
.lp-hero-img img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* 悬浮：顶部微信条 */
.lp-float-wx {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 100%;
  max-width: var(--page-max);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.28s ease;
}
.lp-float-wx.is-visible {
  transform: translateX(-50%) translateY(0);
}
.lp-float-wx[hidden] { display: flex; }
.lp-float-wx__text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  min-width: 0;
}
.lp-float-wx__btn {
  flex-shrink: 0;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #07c160;
  border-radius: 18px;
}

/* 悬浮：右侧 FAB */
.lp-fab {
  position: fixed;
  right: max(8px, env(safe-area-inset-right, 8px));
  bottom: calc(var(--float-stack) + 12px);
  z-index: 450;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 481px) {
  .lp-fab {
    right: calc(50% - var(--page-max) / 2 + 8px);
  }
}
.lp-fab__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  animation: lp-fab-pulse 2.5s ease-in-out infinite;
}
.lp-fab__btn--wx { background: #07c160; animation-delay: 0.3s; }
.lp-fab__btn--tel { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dim) 100%); }
@keyframes lp-fab-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* 悬浮：底栏上方电话条 */
.lp-float-phone {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--bar-h) + var(--safe-bottom));
  width: 100%;
  max-width: var(--page-max);
  z-index: 350;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: var(--float-phone-h);
  padding: 0 10px;
  background: var(--brand-bar);
  color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}
.lp-float-phone__text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  min-width: 0;
}
.lp-float-phone__btn {
  flex-shrink: 0;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dim) 100%);
  border-radius: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .lp-fab__btn { animation: none; }
  .lp-float-wx { transition: none; }
  .lp-top { transition: none; }
}

/* ② 表单 — 谦信青铜底 */
.lp-form-wrap {
  padding: 18px 16px 22px;
  color: #fff;
}
.lp-form-wrap--brand {
  background: linear-gradient(165deg, var(--accent-dim) 0%, var(--accent-deep) 52%, var(--brand-bar) 100%);
}
.lp-form-head {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.lp-form-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
  font-size: 13px;
}
.lp-form-count strong {
  display: inline-block;
  min-width: 2.8em;
  padding: 2px 8px;
  background: var(--cta);
  border-radius: 4px;
  font-weight: 700;
  text-align: center;
}
.lp-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.75);
}
.lp-privacy__dot {
  width: 14px; height: 14px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 50%;
  flex-shrink: 0;
}
.lp-privacy a { color: rgba(255,255,255,.9); text-decoration: underline; }

.lp-form { display: flex; flex-direction: column; gap: 12px; }

.lp-row label,
.lp-cats legend {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.lp-row input[type="text"],
.lp-row input[type="tel"] {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: none;
  border-radius: 22px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  -webkit-appearance: none;
}
.lp-row input::placeholder { color: #bbb; }
.lp-row input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }

.lp-cats { border: none; }
.lp-cats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lp-cat { position: relative; cursor: pointer; }
.lp-cat input { position: absolute; opacity: 0; width: 0; height: 0; }
.lp-cat span {
  display: block;
  text-align: center;
  padding: 10px 6px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border-radius: 22px;
  user-select: none;
}
.lp-cat input:checked + span {
  background: #fff8ee;
  color: var(--accent-deep);
  font-weight: 600;
  box-shadow: inset 0 0 0 2px var(--accent);
}

.lp-submit {
  display: block;
  width: 100%;
  height: 48px;
  margin-top: 10px;
  border: none;
  border-radius: 24px;
  background: linear-gradient(90deg, var(--cta) 0%, var(--accent-dim) 48%, var(--accent) 100%);
  color: #fff;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.lp-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.lp-feedback {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
}
.lp-feedback[hidden] { display: none; }
.lp-feedback.is-error { background: #fff0f0; color: #b42318; }
.lp-feedback.is-success { background: #f0fff4; color: #2d6a4f; }
.lp-feedback a { color: var(--cta); text-decoration: underline; }

/* ③ 电话条 */
.lp-phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: var(--brand-bar);
  color: #fff;
}
.lp-phone-bar__link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  min-width: 0;
}
.lp-phone-bar__btn {
  flex-shrink: 0;
  padding: 10px 18px;
  background: linear-gradient(180deg, #e8c99a 0%, var(--accent) 100%);
  color: var(--brand-bar);
  font-size: 14px;
  font-weight: 800;
  border-radius: 22px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ④ 微信二维码 */
.lp-wechat {
  padding: 24px 16px 28px;
  text-align: center;
  background: var(--bg);
  border-bottom: 8px solid var(--accent-pale);
}
.lp-wechat__head {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.lp-wechat__lede {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-bottom: 16px;
  padding: 0 8px;
}
.lp-wechat__frame {
  display: inline-block;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow, 0 4px 20px rgba(109, 84, 56, 0.12));
  border: 2px solid var(--border);
  margin-bottom: 12px;
}
.lp-wechat__frame img {
  width: 200px;
  height: 200px;
  display: block;
}
.lp-wechat__hint {
  font-size: 12px;
  color: var(--ink-light);
  margin-bottom: 6px;
}
.lp-wechat__copy {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.6;
  margin-bottom: 12px;
  padding: 0 8px;
}
.lp-wechat__phone {
  display: inline-block;
  font-size: 15px;
  color: var(--accent-dim);
  font-weight: 600;
}
.lp-wechat__phone strong { color: var(--cta); font-size: 17px; }

/* ⑤ 回收类别 */
.lp-types {
  padding: 20px 12px 16px;
  background: linear-gradient(180deg, var(--accent-pale) 0%, var(--surface) 100%);
}
.lp-sec-head {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
.lp-sec-head--light { color: #fff; }
.lp-sec-head__arrows {
  font-size: 14px;
  letter-spacing: -2px;
  opacity: .85;
}
.lp-sec-sub {
  text-align: center;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 14px;
  line-height: 1.55;
  padding: 0 8px;
}
.lp-sec-sub--light { color: rgba(255,255,255,.85); }
.lp-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lp-type-card {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--accent-deep);
  box-shadow: 0 3px 12px rgba(109, 84, 56, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.lp-type-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  vertical-align: top;
}
.lp-type-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 6px 9px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, transparent 0%, rgba(45, 32, 18, 0.55) 35%, rgba(45, 32, 18, 0.88) 100%);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

/* ⑧ 闲置不如换钱 — 窄条青铜色文字海报 */
.lp-slogan {
  line-height: 0;
  padding: 12px 12px 14px;
  background: var(--bg);
}
.lp-slogan__img {
  width: 100%;
  max-height: 168px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(109, 84, 56, 0.12);
  border: 1px solid var(--border);
}

/* ⑧ 我们的优势 — 青铜底纯文字 */
.lp-adv {
  padding: 20px 0 24px;
  background: linear-gradient(180deg, var(--accent-dim) 0%, var(--accent-deep) 100%);
  color: #fff;
}
.lp-adv__head {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--brand-gold);
  margin-bottom: 6px;
}
.lp-adv__arrows { font-size: 14px; letter-spacing: -2px; }
.lp-adv__sub {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
}
.lp-adv__row {
  margin-bottom: 12px;
  padding: 0 16px;
}
.lp-adv__text--solo {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.lp-adv__text--solo h3 { justify-content: flex-start; }
.lp-adv__text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-adv__arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 14px;
}
.lp-adv__text p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  margin-bottom: 10px;
}
.lp-adv__line {
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,.5);
}

/* 微信条（表单②上方） */
.lp-wx-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-wx-strip__text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  min-width: 0;
}
.lp-wx-strip__btn {
  flex-shrink: 0;
  padding: 8px 14px;
  background: #07c160;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
}

.lp-about__corp {
  text-align: center;
  font-size: 12px;
  color: var(--ink-light);
  padding: 0 16px 16px;
}
/* 回收展示 · 单张拼接图 */
.lp-showcase {
  padding: 20px 12px 22px;
  background: linear-gradient(180deg, var(--accent-pale) 0%, var(--surface) 100%);
  border-top: 1px solid var(--border);
}
.lp-showcase__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(45, 32, 18, 0.14);
}

/* ⑥ 回收类型 · 参考单列编号排版（谦信色） */
.lp-scope {
  padding: 28px 12px 22px;
  background: linear-gradient(180deg, var(--accent-pale) 0%, var(--surface) 100%);
}
.lp-scope__card {
  position: relative;
  margin-top: 14px;
  padding: 28px 14px 18px;
  background: var(--cream);
  border: 3px solid var(--accent-deep);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(109, 84, 56, 0.12);
}
.lp-scope__tab {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 148px;
  padding: 8px 22px 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  background: linear-gradient(180deg, #f5e6c8 0%, var(--brand-gold) 55%, var(--accent) 100%);
  border: 2px solid var(--accent-deep);
  border-radius: 8px 8px 12px 12px;
  box-shadow: 0 3px 10px rgba(109, 84, 56, 0.18);
  white-space: nowrap;
}
.lp-scope__lede {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dim);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.lp-scope__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-scope__item {
  padding: 14px 0 16px;
}
.lp-scope__item:not(:last-child) {
  border-bottom: 1px dashed rgba(109, 84, 56, 0.35);
}
.lp-scope__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 6px 16px 6px 6px;
  background: linear-gradient(90deg, var(--accent-dim) 0%, var(--accent-deep) 100%);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(45, 32, 18, 0.2);
}
.lp-scope__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 13px;
  font-weight: 900;
  color: var(--accent-deep);
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(109, 84, 56, 0.12);
}
.lp-scope__cat {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.lp-scope__item p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--accent-deep);
  font-weight: 500;
  padding-left: 2px;
}

/* ⑩ 关于我们 */
.lp-about { background: var(--surface); }
.lp-about__head {
  padding: 20px 16px 16px;
  background: linear-gradient(180deg, var(--accent-dim) 0%, var(--accent-deep) 100%);
  color: #fff;
  text-align: center;
}
.lp-about__head h2 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}
.lp-about__arrows { font-size: 14px; letter-spacing: -2px; opacity: .9; }
.lp-about__head p { font-size: 13px; opacity: .9; }
.lp-about__card {
  margin: -8px 12px 0;
  padding: 16px 14px;
  background: var(--cream);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(109, 84, 56, 0.1);
  position: relative;
  z-index: 2;
}
.lp-about__card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-dim);
  text-align: justify;
}
.lp-about__card p + p { margin-top: 10px; }
.lp-about__lead { font-weight: 600; color: var(--ink) !important; }
.lp-about__corp a {
  color: var(--accent-deep);
  font-weight: 600;
}
.lp-about__feats {
  list-style: none;
  margin: 14px 12px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lp-about__feats li {
  padding: 10px 10px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.lp-about__feats strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-deep);
  margin-bottom: 4px;
}
.lp-about__feats span {
  display: block;
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink-dim);
}
.lp-about__addr { font-size: 12px !important; color: var(--ink-light) !important; }
.lp-about__banner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 12px 20px;
  padding: 12px 14px;
  background: linear-gradient(90deg, var(--accent-dim) 0%, var(--accent-deep) 100%);
  border-radius: 28px;
  color: #fff;
}
.lp-about__banner-text { flex: 1; min-width: 0; }
.lp-about__banner-text strong {
  display: block;
  font-size: 15px;
  color: var(--accent-pale);
  margin-bottom: 2px;
}
.lp-about__banner-text span { font-size: 11px; opacity: .9; }
.lp-about__banner-btn {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  background: var(--accent-deep);
  border: 2px solid #fff;
  border-radius: 50%;
}

.lp-footer {
  padding: 12px 16px 16px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-light);
  line-height: 1.65;
  background: var(--bg);
}
.lp-footer a { color: var(--ink-dim); }

/* 固定底栏 */
.lp-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--page-max);
  z-index: 300;
  display: flex;
  align-items: stretch;
  height: calc(var(--bar-h) + var(--safe-bottom));
  padding: 0 0 var(--safe-bottom);
  background: var(--surface);
  box-shadow: 0 -2px 16px rgba(109, 84, 56, 0.12);
  border-top: 1px solid var(--border);
}
.lp-bar__item {
  flex: 0 0 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-dim);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 4px 2px;
}
.lp-bar__cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 5px 8px 5px 4px;
  padding: 0 10px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dim) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 24px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(109, 84, 56, 0.35);
}

@media (min-width: 481px) {
  body { padding-top: 8px; }
  .page { box-shadow: 0 0 24px rgba(109, 84, 56, 0.12); }
}
