:root {
  /* 参考水滴保主色：温馨、可信赖的蓝色 */
  --primary: #3D8CFF;
  --primary-dark: #1669F2;
  --primary-light: #EAF4FF;
  --accent: #FF7A1A;
  --accent-soft: #FFF1E5;
  --green: #12B76A;
  --green-bg: #E9FFF4;
  --gold: #F2B324;
  --gold-bg: #FFF7DB;
  --text: #1a1a1a;
  --text-sec: #5c5c5c;
  --text-muted: #8c8c8c;
  --border: #ECE5D9;
  --r: 16px;
  --r-sm: 12px;
  /* 温馨浅色：暖白/米白底 */
  --bg-page: #FFF9F0;
  --bg-card: rgba(255,255,255,0.96);
  --bg-hero: #FFFDF7;
  --bg-overlay: rgba(255,252,245,0.88);
}
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
/* 根字号随视口自适配：小屏 16px，中屏约 17–18px，大屏手机约 19–20px */
html {
  font-size: clamp(16px, 4.8vw, 20px);
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}
body::-webkit-scrollbar {
  display: none;
}
/* 隐藏页面内所有滚动条，保留滚动能力 */
*::-webkit-scrollbar {
  display: none;
}
body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, "PingFang SC", sans-serif;
  font-size: 1rem;
  color: var(--text);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at top, rgba(255,210,125,0.14), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(61,140,255,0.1), transparent 24%),
    var(--bg-page);
  padding-top: calc(52px + env(safe-area-inset-top, 0));
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0));
}
/* 大屏（平板/横屏）时限制最大宽度，保持可读性 */
@media (min-width: 481px) {
  body { max-width: 480px; box-shadow: 0 0 0 1px var(--border); }
  .page-nav { max-width: 480px; margin: 0 auto; left: 0; right: 0; }
  .sticky-cta { max-width: 480px; left: 50%; transform: translateX(-50%); }
}

/* ── PAGE SYSTEM ── */
.page {
  min-height: 100vh; min-height: 100dvh;
  position: relative;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}
.page-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  overflow: hidden;
}
.page-content {
  position: relative; z-index: 2;
  padding: 0 24px 36px;
  width: 100%;
}
/* P1 专用：flex 列布局，不撑满（让内容自然高度） */
.p1 > .page-content {
  display: flex;
  flex-direction: column;
  /* 不设 flex:1，内容自然高度 */
}

/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  animation: hintBounce 2s infinite;
  cursor: pointer;
  padding: 8px 16px;
  -webkit-tap-highlight-color: transparent;
}
.scroll-hint:active { opacity: 0.8; }
.scroll-hint span { font-size: clamp(0.6rem, 1.7vw, 0.65rem); color: var(--text-muted); font-weight: 500; }
.scroll-hint i { font-size: 1rem; color: var(--primary); }
@keyframes hintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(4px); }
}

/* ── PAGE 1: 3:7 布局（头图 30% / 文案 70%）── */
.p1 .page-bg {
  display: none; /* 背景只在 .hero-visual 上 */
}
.p1 > .page-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0;
  min-height: 100%;
}

/* 上 30%：人物 Hero 图，纯视觉唤起心智 */
.hero-visual {
  flex-shrink: 0;
  height: 30vh;
  height: 30dvh;
  background-color: var(--bg-hero);
  background-image:
    radial-gradient(circle at 50% 12%, rgba(255,228,168,0.42), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 38%, rgba(255,251,247,0.72) 75%, var(--bg-hero) 100%),
    url('assets/hero-protection-mood.webp');
  background-position: center, center, center 25%;
  background-size: cover, cover, cover;
}
/* 下 70%：文案区（说明类文字居中，避免一侧过空） */
.hero-copy {
  flex: 1;
  min-height: 70vh;
  min-height: 70dvh;
  background:
    linear-gradient(180deg, rgba(255,253,247,0.98) 0%, rgba(255,249,240,0.96) 100%);
  padding: 14px 20px 20px;
  padding-top: 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.hero-copy .hero-badges {
  margin-bottom: 10px;
  justify-content: center;
}
.hero-copy .hero-title {
  margin-bottom: 6px;
}
.hero-copy .hero-tagline {
  margin-bottom: 6px;
}
.hero-copy .hero-sub {
  margin-bottom: 12px;
}
.hero-copy .hero-data {
  margin-top: 6px;
  justify-content: center;
}
.hero-copy .hd-item {
  text-align: center;
}
.hero-copy .plan-sec {
  margin-top: 12px;
  width: 100%;
  max-width: 100%;
}
.hero-copy .plan-sec-title {
  text-align: center;
}
/* 方案卡样式（原 hero-bottom 下的保留） */
.hero-copy .plan-card   { padding: 16px 10px 14px; border-radius: 16px; }
.hero-copy .plan-name   { font-size: clamp(0.72rem, 2vw, 0.8rem); font-weight: 800; margin-bottom: 4px; }
.hero-copy .plan-amount { font-size: clamp(1.35rem, 3.8vw, 1.55rem); }
.hero-copy .plan-price  { font-size: clamp(0.65rem, 1.8vw, 0.7rem); margin-top: 6px; white-space: nowrap; }
.hero-copy .plan-price em { font-size: clamp(0.7rem, 2vw, 0.75rem); color: var(--text); }
.hero-copy .plan-sub    { font-size: clamp(0.53rem, 1.55vw, 0.58rem); margin-top: 5px; }

.hero-badges {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.insurer-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg-card);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  padding: 4px 10px 4px 4px; border-radius: 100px;
}
.insurer-logo {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.insurer-logo img { width: 100%; height: 100%; object-fit: contain; }
.insurer-name { font-size: clamp(0.6rem, 1.7vw, 0.65rem); color: var(--text); font-weight: 500; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 3px;
  background: linear-gradient(135deg, #FFB936 0%, #FF8A1F 100%);
  color: #fff; font-size: clamp(0.6rem, 1.7vw, 0.65rem); font-weight: 700;
  padding: 4px 9px; border-radius: 6px;
  box-shadow: 0 4px 12px rgba(255,138,31,0.28);
}
.hero-badge i { font-size: 0.75rem; }

.hero-title {
  font-size: clamp(1.95rem, 5.2vw, 2.35rem); font-weight: 900; color: var(--text);
  line-height: 1.2; margin-bottom: 10px;
  letter-spacing: -0.03em;
  max-width: 100%;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: anywhere;
}
.hero-title-edition {
  font-size: 0.72em; font-weight: 700; color: var(--text-sec);
  margin-left: 0.05em;
}
.hero-tagline {
  font-size: clamp(1rem, 2.8vw, 1.15rem); font-weight: 700; line-height: 1.3;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #FFCB52, #FF8A1F);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(0.78125rem, 2.05vw, 0.875rem); color: var(--text-sec);
  line-height: 1.65; font-weight: 400;
  max-width: 350px;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: anywhere;
}
/* 中底分隔线 */
.hero-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--border), rgba(232,230,227,0.5), transparent);
  margin: 0 20px 16px;
}
.hero-data {
  display: flex; gap: 20px;
  margin-top: 14px;
}
.hd-item { text-align: left; }
.hd-val {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.35rem, 3.8vw, 1.55rem); font-weight: 900; color: var(--text);
  line-height: 1;
}
.hd-val .u { font-size: 0.7rem; font-weight: 700; }
.hd-val.c1 { color: #C99A2E; }
.hd-val.c2 { color: #0BA360; }
.hd-val.c3 { color: var(--primary); }
.hd-label { font-size: clamp(0.625rem, 1.8vw, 0.7rem); color: var(--text-muted); margin-top: 3px; font-weight: 500; }

/* ── PLAN CARDS ── */
.plan-sec {
  margin-top: 16px;
}
.plan-sec-title {
  font-size: clamp(0.7rem, 2vw, 0.75rem); font-weight: 600; color: var(--text-muted);
  letter-spacing: 0.2px; margin-bottom: 10px;
  text-wrap: balance;
}
.plan-row {
  display: flex; gap: 6px;
}
.plan-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 10px 12px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.2s;
  box-shadow: 0 8px 24px rgba(255,168,46,0.07), 0 2px 8px rgba(0,0,0,0.03);
}
.plan-card:active { transform: scale(0.97); }
/* 仅选中态高亮；推荐卡未选中时与其它卡一致为白底 */
.plan-card.selected {
  background: linear-gradient(180deg, #F5FAFF 0%, #ECF5FF 100%);
  border: 2px solid var(--primary);
  box-shadow: 0 12px 28px rgba(61,140,255,0.18);
}
.plan-card.spotlight {
  animation: planSpotlight 1.2s ease;
}
@keyframes planSpotlight {
  0% { transform: translateY(0); box-shadow: 0 0 0 rgba(61,140,255,0); }
  30% { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(61,140,255,0.26); }
  100% { transform: translateY(0); box-shadow: 0 12px 28px rgba(61,140,255,0.18); }
}
.plan-tag {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  font-size: 0.5625rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 2px 10px; border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(74,144,226,0.35);
}
.plan-name {
  font-size: 0.75rem; font-weight: 700; color: var(--text);
  margin-bottom: 2px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  min-height: 2.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: anywhere;
}
.plan-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem; font-weight: 900; line-height: 1;
  margin-bottom: 1px;
  white-space: nowrap;
}
.plan-card:nth-child(1) .plan-amount { color: var(--primary); }
.plan-card:nth-child(2) .plan-amount { color: #C99A2E; }
.plan-card:nth-child(3) .plan-amount { color: #0BA360; }
.plan-amount .pa-u { font-size: 0.6875rem; font-weight: 700; }
.plan-price {
  font-size: 0.625rem; color: var(--text-muted); font-weight: 500;
  margin-top: 4px;
}
.plan-price em {
  font-style: normal; font-weight: 700;
  color: var(--text);
}
.pa-tag {
  font-size: 0.625rem; font-weight: 600;
  color: var(--text-muted);
  margin-left: 3px;
  vertical-align: middle;
  letter-spacing: 0.3px;
}
.plan-sub {
  font-size: 0.53125rem; color: var(--text-muted);
  margin-top: 3px; line-height: 1.3;
  min-height: 2.6em;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: anywhere;
}

/* ── PAGE 2: CLAIMS TRUST ── */
.p2 .page-bg {
  background-image:
    linear-gradient(180deg,
      rgba(255,252,245,0.84) 0%,
      rgba(255,250,243,0.8) 30%,
      rgba(255,247,236,0.92) 60%,
      var(--bg-page) 100%),
    url('assets/claims-story-bg.webp');
  background-position: center, center 25%;
  background-size: cover, cover;
}
.p2 .page-content {
  padding-top: 48px; padding-bottom: 28px;
}

.sec-kicker {
  font-size: clamp(0.65rem, 1.9vw, 0.75rem); font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.sec-headline {
  font-size: clamp(1.35rem, 3.8vw, 1.55rem); font-weight: 900; color: var(--text);
  line-height: 1.25; margin-bottom: 6px;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: anywhere;
}
.sec-headline-box {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 5px 11px 6px;
  border: 1.5px solid rgba(239, 95, 79, 0.92);
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 6px 14px rgba(239, 95, 79, 0.06);
  font-size: clamp(1.04rem, 3.1vw, 1.38rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  text-wrap: wrap;
  word-break: normal;
  overflow-wrap: normal;
}
.sec-desc {
  font-size: clamp(0.8125rem, 2.2vw, 0.875rem); color: var(--text-sec);
  line-height: 1.6; margin-bottom: 24px;
  max-width: 26em;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: anywhere;
}

.claims-grid {
  display: flex; gap: 8px; margin-bottom: 20px;
}
.cg-item {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 8px; text-align: center;
  box-shadow: 0 8px 20px rgba(255,168,46,0.08), 0 2px 8px rgba(0,0,0,0.03);
}
.cg-val {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.25rem, 3.5vw, 1.4rem); font-weight: 900; line-height: 1;
  margin-bottom: 3px;
}
.cg-val .cg-u { font-size: 0.7rem; font-weight: 700; }
.cg-val.v-green { color: #0BA360; }
.cg-val.v-blue { color: var(--primary); }
.cg-val.v-gold { color: #C99A2E; }
.cg-label { font-size: clamp(0.6rem, 1.7vw, 0.65rem); color: var(--text-muted); font-weight: 500; }

/* 理赔页：用户故事滚动区（固定高度内垂直滚动） */
.story-ticker-wrap {
  height: 160px;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 10px 26px rgba(255,168,46,0.08), 0 2px 8px rgba(0,0,0,0.03);
  position: relative;
}
.story-ticker-wrap::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 40px;
  background: linear-gradient(180deg, transparent, var(--bg-card));
  pointer-events: none;
}
.story-ticker-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px 20px;
  animation: storyTickerScroll 25s linear infinite;
}
.story-ticker-inner:hover { animation-play-state: paused; }
@keyframes storyTickerScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
/* 播放中显示暂停图标 */
.p2-video-play-btn.playing i::before { content: '\eb43'; }
.story-ticker-wrap .story-card {
  flex-shrink: 0;
}
.story-stack { display: flex; flex-direction: column; gap: 10px; }
.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
  display: flex; gap: 12px; align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.p2 .story-ticker-wrap .story-card {
  border: none;
  box-shadow: none;
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--border);
}
.p2 .story-ticker-wrap .story-card:last-child { border-bottom: none; }
.story-av {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--border);
}
.story-body { flex: 1; }
.story-name { font-size: 0.8125rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.story-detail { font-size: 0.6875rem; color: var(--text-sec); line-height: 1.5; margin-bottom: 6px; }
.story-result {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.6875rem; font-weight: 600;
  color: #0BA360;
  background: var(--green-bg);
  padding: 4px 10px; border-radius: 6px;
}
.story-result i { font-size: 0.875rem; }

/* 理赔页：增信视频区块（可关联视频号，内嵌播放） */
.p2-video-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  border-radius: var(--r);
  overflow: hidden;
  background: #0a0a0a;
  aspect-ratio: 16/9;
  max-height: 200px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.p2-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.p2-video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
.p2-video-poster.hidden { opacity: 0; pointer-events: none; }
.p2-video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.p2-video-play-btn:hover { transform: scale(1.05); background: #fff; }
.p2-video-play-btn:active { transform: scale(0.98); }
.p2-video-play-btn i { font-size: 1.5rem; }
.p2-video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.85);
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
}
.p2-video-channels-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 0.625rem;
  color: var(--primary-light);
}
.p2-video-channels-link a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.p2-video-channels-link a:active { opacity: 0.8; }

.trust-tags {
  display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap;
}
.tt {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.6875rem; font-weight: 600;
  color: var(--text-sec);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 100px;
  box-shadow: 0 6px 18px rgba(61,140,255,0.06), 0 1px 3px rgba(0,0,0,0.03);
}
.tt i { font-size: 0.875rem; color: #0BA360; }

/* 理赔页底部：1v1 全程帮赔（精炼一句增信） */
.p2-help-claim {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.p2-help-claim .p2-help-title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.p2-help-claim .p2-help-title i {
  font-size: 1.125rem;
  color: var(--primary);
}
.p2-help-claim .p2-help-bbp-icon {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  flex-shrink: 0;
  vertical-align: middle;
}
.p2-help-claim .p2-help-one-liner {
  font-size: 0.8125rem;
  color: var(--text-sec);
  line-height: 1.5;
  margin: 0;
}

/* ── PAGE 3: COVERAGE (保到底) ── */
.p3 .page-bg {
  background-image:
    linear-gradient(180deg,
      rgba(255,252,245,0.82) 0%,
      rgba(255,250,243,0.8) 30%,
      rgba(255,247,236,0.92) 65%,
      var(--bg-page) 100%),
    url('assets/couple-trust.webp');
  background-position: center, center 40%;
  background-size: cover, cover;
  opacity: 1;
}
.p3 .page-content {
  padding-top: 48px; padding-bottom: 28px;
}

.feat-stack {
  display: flex; flex-direction: column; gap: 12px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: transform 0.3s, border-color 0.3s;
  box-shadow: 0 10px 24px rgba(255,168,46,0.08), 0 2px 8px rgba(0,0,0,0.03);
}
.feat-card:active { transform: scale(0.98); }
.feat-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.fi-blue { background: var(--primary-light); color: var(--primary); }
.fi-orange { background: var(--accent-soft); color: var(--accent); }
.fi-green { background: var(--green-bg); color: var(--green); }
.feat-body { flex: 1; }
.feat-name {
  font-size: 0.9375rem; font-weight: 700; color: var(--text);
  margin-bottom: 4px;
}
.feat-desc {
  font-size: 0.75rem; color: var(--text-sec); line-height: 1.55;
}
.feat-tag {
  display: inline-flex; align-items: center; gap: 3px;
  margin-top: 8px;
  font-size: 0.6875rem; font-weight: 600;
  padding: 3px 8px; border-radius: 6px;
}
.ft-blue { background: var(--primary-light); color: var(--primary); }
.ft-orange { background: var(--accent-soft); color: var(--accent); }
.ft-green { background: var(--green-bg); color: var(--green); }

/* ── PAGE 4: ACCESSIBLE + SERVICES ── */
.p4 .page-bg {
  background-image:
    linear-gradient(180deg,
      rgba(255,252,245,0.82) 0%,
      rgba(255,250,243,0.8) 35%,
      rgba(255,247,236,0.93) 70%,
      var(--bg-page) 100%),
    url('assets/elderly-walking-bg.webp');
  background-position: center, center 30%;
  background-size: 100% 100%, auto max(100vh, 70rem);
  background-repeat: no-repeat, no-repeat;
}
.p4 .page-content {
  padding-top: 48px; padding-bottom: 28px;
}

.who-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 20px;
}
.who-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(255,168,46,0.08), 0 2px 8px rgba(0,0,0,0.03);
}
.who-label {
  font-size: 0.765625rem; font-weight: 700; color: var(--text); margin-bottom: 3px;
  line-height: 1.2;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: anywhere;
}
.who-desc {
  font-size: 0.65625rem; color: var(--text-sec); line-height: 1.45; margin-bottom: 6px;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: anywhere;
}
.who-badge {
  font-size: 0.625rem; font-weight: 600;
  padding: 2px 8px; border-radius: 100px;
  display: inline-block;
}
.wb-green { background: var(--green-bg); color: var(--green); }
.wb-blue { background: var(--primary-light); color: var(--primary); }
.wb-orange { background: var(--accent-soft); color: var(--accent); }
.wb-gold { background: var(--gold-bg); color: var(--gold); }

.svc-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 4px 0 16px;
}
.svc-section-title {
  margin-bottom: 14px;
}
.svc-mini-title {
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  letter-spacing: 1px; margin-bottom: 12px;
}
.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 15px 14px;
  box-shadow: 0 8px 20px rgba(61,140,255,0.08), 0 2px 8px rgba(0,0,0,0.03);
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  position: relative;
}
.svc-card:active { transform: none; }
.svc-card.is-open {
  border-color: rgba(61,140,255,0.3);
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 100%);
  box-shadow: 0 16px 30px rgba(61,140,255,0.12);
}
.svc-card-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.svc-card-main {
  flex: 1;
}
.svc-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 8px;
  flex-shrink: 0;
}
.si-blue { background: var(--primary-light); color: var(--primary); }
.si-green { background: var(--green-bg); color: var(--green); }
.svc-name {
  font-size: 0.734375rem; font-weight: 700; color: var(--text); margin-bottom: 2px;
  line-height: 1.2;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: anywhere;
}
.svc-desc {
  font-size: 0.609375rem; color: var(--text-muted); line-height: 1.45;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: anywhere;
}
.svc-card-tip {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.svc-card-tip::before {
  content: '';
  width: 14px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(61,140,255,0.42), rgba(61,140,255,0));
}
.svc-card-tip-text {
  transition: color 0.25s ease;
}
.svc-card.is-open .svc-card-tip-text {
  color: var(--primary-dark);
}
.svc-chevron {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease;
}
.svc-card.is-open .svc-chevron {
  transform: rotate(180deg);
  background: rgba(61,140,255,0.16);
}
.svc-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}
.svc-card.is-open .svc-detail {
  max-height: 220px;
  margin-top: 10px;
}
.svc-detail-inner {
  border-top: 1px dashed rgba(61,140,255,0.22);
  padding-top: 10px;
}
.svc-detail-title {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.svc-detail-copy {
  font-size: 0.625rem;
  line-height: 1.65;
  color: var(--text-sec);
}
.svc-detail-value {
  display: inline-flex;
  margin-top: 8px;
  align-items: center;
  gap: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px 8px;
}

/* ── PAGE 5: PRICE + CTA ── */
.p5 .page-bg {
  background-image:
    linear-gradient(180deg,
      rgba(255,252,245,0.82) 0%,
      rgba(255,250,243,0.8) 25%,
      rgba(255,247,236,0.91) 60%,
      var(--bg-page) 100%),
    url('assets/elderly-walking-bg.webp');
  background-position: center, center 50%;
  background-size: cover, cover;
}
.p5 .page-content {
  padding-top: 48px; padding-bottom: 28px;
}

.price-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 16px;
  box-shadow: 0 12px 28px rgba(255,168,46,0.08), 0 2px 12px rgba(0,0,0,0.04);
}
.price-lead { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 8px; }
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 3px; }
.price-amount {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 7vw, 2.85rem); font-weight: 900;
  background: linear-gradient(135deg, #C99A2E, #E8A83C);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.price-unit { font-size: clamp(0.9rem, 2.5vw, 1rem); font-weight: 700; color: var(--gold); }
.price-note { font-size: clamp(0.65rem, 1.9vw, 0.7rem); color: var(--text-muted); margin-top: 6px; margin-bottom: 16px; }
.price-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.pg {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 4px;
}
.pg-age { font-size: 0.625rem; color: var(--text-muted); margin-bottom: 2px; }
.pg-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--text);
}
.pg-price .y { font-size: 0.625rem; font-weight: 500; color: var(--text-muted); }

.urgency-block {
  background: var(--accent-soft);
  border: 1px solid rgba(255,107,44,0.2);
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.urg-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,107,44,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--accent);
}
.urg-text h4 { font-size: 0.875rem; font-weight: 700; color: var(--accent); margin-bottom: 2px; }
.urg-text p { font-size: 0.6875rem; color: var(--text-sec); line-height: 1.4; }

.cta-btn-big {
  width: 100%;
  height: 54px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 1rem; font-weight: 700;
  border-radius: 14px; border: none;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(74,144,226,0.35);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.cta-btn-big i { font-size: 1.25rem; }
.cta-btn-big::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: sweep 3.5s infinite;
}
@keyframes sweep {
  0% { left: -100%; } 45% { left: 150%; } 100% { left: 150%; }
}

.cta-sub {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  margin-top: 10px;
  font-size: 0.6875rem; color: var(--text-muted);
}
.cta-sub i { font-size: 0.875rem; color: var(--green); }

.pulse-dot {
  width: 8px; height: 8px; background: #FF4757;
  border-radius: 50%; position: relative;
}
.pulse-dot::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%;
  background: rgba(255,71,87,0.3);
  animation: ring 2s infinite;
}
@keyframes ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── 顶部页面导航（第一屏隐藏，第二屏起展示并吸顶）── */
.page-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 8px 10px;
  padding-top: calc(10px + env(safe-area-inset-top, 0));
  background: rgba(255,255,255,0.84);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
.page-nav.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.page-nav::-webkit-scrollbar { display: none; }
.page-nav-item {
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
}
.page-nav-item:hover { color: var(--text-sec); }
.page-nav-item.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.page-nav-item:active { background: var(--primary-light); }

/* ── PAGE INDICATORS（已隐藏，仅作备用）── */
.page-dots {
  display: none;
  position: fixed; right: 10px; top: 50%; transform: translateY(-50%);
  z-index: 100;
  flex-direction: column; gap: 8px;
}
.pd {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 6px; margin: -6px;
  -webkit-tap-highlight-color: transparent;
}
.pd:active { opacity: 0.7; }
.pd.active {
  height: 16px; border-radius: 2px;
  background: rgba(255,255,255,0.7);
}

/* ── TRUST FOOTER (after scroll) ── */
.trust-footer {
  background: transparent;
  border-top: 1px solid var(--border);
  padding: 24px 0 20px;
  margin-top: 20px;
}
.tf-headline {
  text-align: center;
  font-size: 0.9375rem; font-weight: 800; color: var(--text);
  letter-spacing: 1px; margin-bottom: 6px;
}
.tf-sub-headline {
  text-align: center;
  font-size: 0.6875rem; color: var(--text-muted);
  margin-bottom: 18px;
}

.tf-brands {
  display: flex; flex-direction: column; gap: 12px;
}
.tf-brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  box-shadow: 0 10px 24px rgba(61,140,255,0.08), 0 2px 8px rgba(0,0,0,0.03);
}
.tf-brand-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.tf-brand-logo {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.tf-brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.tf-brand-name-group { flex: 1; }
.tf-brand-name {
  font-size: 0.875rem; font-weight: 800; color: var(--text);
  line-height: 1.2;
}
.tf-brand-role {
  font-size: 0.625rem; color: var(--text-muted);
  margin-top: 2px; font-weight: 500;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: anywhere;
}
.tf-brand-highlight {
  font-size: 0.5625rem; font-weight: 700; color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid rgba(212,148,11,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}
.tf-brand-points {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px;
}
.tf-bp {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.6875rem; color: var(--text-sec); font-weight: 500;
}
.tf-bp i { font-size: 0.8125rem; color: var(--green); flex-shrink: 0; }

.tf-anchor-bar {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tf-anchor {
  text-align: center;
}
.tf-anchor-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem; font-weight: 900; color: var(--text);
  line-height: 1;
}
.tf-anchor-val .ta-u { font-size: 0.625rem; font-weight: 700; }
.tf-anchor-val.ta-gold { color: var(--gold); }
.tf-anchor-val.ta-green { color: var(--green); }
.tf-anchor-val.ta-blue { color: var(--primary); }
.tf-anchor-label {
  font-size: 0.5625rem; color: var(--text-muted);
  margin-top: 3px; font-weight: 500;
}
.tf-copy {
  text-align: center;
  font-size: 0.625rem; color: var(--text-muted);
  margin-top: 16px;
  padding-bottom: 20px;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: anywhere;
}

/* ── STICKY CTA BAR（常驻入口，无需读完即可投保）── */
.sticky-cta {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 100%; z-index: 200;
  padding: 8px 14px calc(10px + env(safe-area-inset-bottom, 0));
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: stretch; gap: 7px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
}

/* 社交证明滚动条 */
.cta-social-proof {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  height: 16px; overflow: hidden;
}
.csp-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6DD5A0; flex-shrink: 0;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}
.csp-ticker {
  font-size: clamp(0.65rem, 1.9vw, 0.7rem); color: var(--text-muted); font-weight: 500;
  overflow: hidden; height: 16px; position: relative; flex: 1; max-width: 220px;
}
.csp-ticker-inner {
  position: absolute; top: 0; left: 0; width: 100%;
  animation: tickerScroll 8s ease-in-out infinite;
}
.csp-line {
  height: 16px; line-height: 16px; text-align: center;
}
@keyframes tickerScroll {
  0%,18%  { transform: translateY(0); }
  25%,43% { transform: translateY(-16px); }
  50%,68% { transform: translateY(-32px); }
  75%,93% { transform: translateY(-48px); }
  100%    { transform: translateY(-64px); }
}
.csp-divider {
  width: 1px; height: 10px; background: var(--border); flex-shrink: 0;
}
.csp-count {
  font-size: 0.6875rem; color: var(--text-muted); font-weight: 500; white-space: nowrap;
}

/* 主按钮：足够高、收窄不铺满整宽，拇指友好 */
.sticky-cta-main {
  flex: 0 0 auto;
  width: 100%; max-width: 320px;
  height: 52px;
  min-height: 52px;
  margin: 0 auto;
  background: linear-gradient(135deg, #48A3FF 0%, #1669F2 100%);
  color: #fff; font-size: clamp(1rem, 2.8vw, 1.1rem); font-weight: 700;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.24);
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 0 20px;
  box-shadow: 0 14px 28px rgba(22,105,242,0.3), 0 1px 0 rgba(255,255,255,0.22) inset;
  cursor: pointer; position: relative; overflow: visible;
  transition: transform 0.15s, box-shadow 0.15s;
}
.sticky-cta-main:active {
  transform: scale(0.98);
  box-shadow: 0 8px 16px rgba(22,105,242,0.22);
}
.sticky-cta-main::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  border-radius: 16px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  animation: sweep 3s 1.5s infinite;
}
.cta-main-text {
  letter-spacing: 0.2px;
  white-space: normal;
  text-wrap: balance;
  text-align: center;
}
.cta-main-arrow {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* 心跳角标 */
.cta-urgency-badge {
  position: absolute; top: -9px; right: 10px;
  font-size: clamp(0.6rem, 1.7vw, 0.65rem); font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #FF6B35, #FF4757);
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 10px rgba(255,71,87,0.4);
  animation: heartbeat 1.6s ease-in-out infinite;
  transform-origin: center bottom;
}
@keyframes heartbeat {
  0%   { transform: scale(1); }
  14%  { transform: scale(1.18); }
  28%  { transform: scale(1); }
  42%  { transform: scale(1.12); }
  56%  { transform: scale(1); }
  100% { transform: scale(1); }
}
.sticky-cta-pulse {
  display: none; /* 已由新设计替代 */
}
.sticky-cta-pulse::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(255,71,87,0.3); animation: ring 2s infinite;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.vis { opacity: 1; transform: translateY(0); }
.no-io .fade-up { opacity: 1; transform: none; }
.p1 .fade-up { opacity: 1; transform: none; }
.p1 .fade-up.d1 { animation: heroFadeUp 0.6s 0.1s ease-out both; }
.p1 .fade-up.d2 { animation: heroFadeUp 0.6s 0.2s ease-out both; }
.p1 .fade-up.d3 { animation: heroFadeUp 0.6s 0.3s ease-out both; }
.p1 .fade-up.d4 { animation: heroFadeUp 0.6s 0.4s ease-out both; }
.p1 .fade-up.d5 { animation: heroFadeUp 0.6s 0.5s ease-out both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }
.fade-up.d5 { transition-delay: 0.5s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.quote-sheet {
  position: fixed;
  inset: 0;
  z-index: 260;
  pointer-events: none;
}
.quote-sheet.is-open {
  pointer-events: auto;
}
.quote-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19,39,71,0.26);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.quote-sheet.is-open .quote-sheet-backdrop {
  opacity: 1;
}
.quote-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px calc(18px + env(safe-area-inset-bottom, 0));
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,252,255,0.98) 100%);
  box-shadow: 0 -12px 40px rgba(20,44,89,0.16);
  transform: translateY(100%);
  transition: transform 0.28s ease;
}
.quote-sheet.is-open .quote-sheet-panel {
  transform: translateY(0);
}
.quote-sheet-handle {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(17,24,39,0.12);
  margin: 0 auto 14px;
}
.quote-sheet-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(17,24,39,0.06);
  color: var(--text-sec);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.quote-sheet-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 999px;
  padding: 6px 10px;
}
.quote-sheet-title {
  margin-top: 12px;
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 900;
  color: var(--text);
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: anywhere;
}
.quote-sheet-desc {
  margin-top: 6px;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-sec);
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 390px) {
  .hero-copy {
    padding-left: 16px;
    padding-right: 16px;
  }

  .plan-row {
    gap: 5px;
  }

  .plan-card {
    padding: 12px 8px 10px;
  }

  .plan-name {
    font-size: 0.71875rem;
  }

  .plan-sub {
    font-size: 0.5rem;
  }
}
.quote-chip-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.quote-chip {
  flex: 1;
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-sec);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: inherit;
}
.quote-chip.active {
  border-color: rgba(61,140,255,0.32);
  background: linear-gradient(180deg, #F7FBFF 0%, #EEF6FF 100%);
  color: var(--primary);
  box-shadow: 0 10px 18px rgba(61,140,255,0.1);
}
.quote-sheet-summary {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,243,224,0.92) 0%, rgba(234,244,255,0.92) 100%);
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--text-sec);
}
.quote-sheet-submit {
  width: 100%;
  margin-top: 16px;
  height: 48px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #48A3FF 0%, #1669F2 100%);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(22,105,242,0.28);
}
.quote-sheet-note {
  margin-top: 10px;
  text-align: center;
  font-size: 0.625rem;
  color: var(--text-muted);
}
