/* 【中文功能说明】全局变量定义品牌颜色、阴影和通用尺寸。 */
:root {
  --navy: #071a33;
  --navy-soft: #102b52;
  --gold: #c8a75d;
  --blue-soft: #eaf3ff;
  --white: #ffffff;
  --ink: #152238;
  --muted: #65758b;
  --line: #dce5f0;
  --bg: #f7f9fc;
  --danger: #b42318;
  --success: #137333;
  --shadow: 0 20px 50px rgba(7, 26, 51, 0.12);
  --radius: 22px;
}

/* 【中文功能说明】基础页面样式设置字体、颜色和滚动行为。 */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 【中文功能说明】品牌文字标志：居中排列，主标题大、副标题小并位于下方。 */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.brand-main {
  color: var(--navy);
  font-size: 1.42rem;
  font-weight: 800;
}

.brand-sub {
  margin-top: 2px;
  padding-left: 0.32em;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

/* 【中文功能说明】按钮组件用于主要预约入口和次要操作。 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(7, 26, 51, 0.18);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(7, 26, 51, 0.22);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.button-danger {
  color: var(--white);
  background: var(--danger);
  border-color: var(--danger);
}

.full-width {
  width: 100%;
}

/* 【中文功能说明】顶部导航提供桌面和移动端菜单布局。 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 240, 0.8);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy-soft);
  font-weight: 600;
}

.nav-links a:not(.button):hover,
.nav-links a:not(.button):focus-visible {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
}

/* 【中文功能说明】英雄区使用新加坡天际线背景和深色遮罩突出主标题。 */
.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.88), rgba(7, 26, 51, 0.58), rgba(7, 26, 51, 0.18)),
    url("https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&w=1800&q=80") center top / cover;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 110px 0 150px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero-text {
  max-width: 630px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* 【中文功能说明】英雄区主按钮改用金色强调色，避免与深色背景相近。 */
.hero-actions .button:not(.button-secondary) {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 14px 28px rgba(7, 26, 51, 0.35);
}

.hero-actions .button:not(.button-secondary):hover,
.hero-actions .button:not(.button-secondary):focus-visible {
  background: #f0c04a;
  border-color: #f0c04a;
  box-shadow: 0 18px 34px rgba(7, 26, 51, 0.4);
}

/* 【中文功能说明】信任条展示三项业务证明信息。 */
.trust-bar {
  margin-top: -54px;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-grid div {
  padding: 28px;
  background: var(--white);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.trust-grid span {
  margin-top: 4px;
  color: var(--muted);
}

/* 【中文功能说明】通用区块、标题和网格样式支持页面各内容区。 */
.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--bg);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.booking-layout h2,
.split h2,
.admin-card h1,
.dashboard-top h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p:not(.eyebrow),
.booking-layout p,
.split p,
.muted-text {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.testimonial,
.reason-list article,
.timeline article,
.admin-card,
.appointment-card,
.booking-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 26, 51, 0.08);
}

.service-card {
  padding: 28px;
}

.service-card h3,
.reason-list h3,
.timeline h3,
.appointment-card h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  line-height: 1.2;
}

.service-card p,
.reason-list p,
.timeline p,
.testimonial blockquote,
.appointment-card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--navy);
  background: var(--blue-soft);
  font-weight: 800;
}

/* 【中文功能说明】优势区使用左右分栏和列表卡片强化专业感。 */
.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.reason-list article {
  padding: 24px;
}

/* 【中文功能说明】流程时间线显示四个咨询服务步骤。 */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline article {
  position: relative;
  padding: 28px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

/* 【中文功能说明】客户评价卡片展示占位客户名称和职位。 */
.testimonial {
  margin: 0;
  padding: 28px;
}

.testimonial blockquote {
  font-size: 1.02rem;
}

.testimonial figcaption {
  margin-top: 18px;
  color: var(--navy);
  font-weight: 800;
}

/* 【中文功能说明】FAQ 手风琴样式用于折叠和展开常见问题。 */
.accordion {
  display: grid;
  gap: 14px;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 26, 51, 0.06);
}

.accordion summary {
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.accordion p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

/* 【中文功能说明】预约区表单收集姓名、电话、邮箱、日期、时间和留言。 */
.booking-section {
  background:
    radial-gradient(circle at top left, rgba(200, 167, 93, 0.18), transparent 36%),
    var(--navy);
  color: var(--white);
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.booking-layout h2,
.booking-layout p {
  color: var(--white);
}

.booking-layout p {
  opacity: 0.82;
}

.booking-form {
  padding: 30px;
  color: var(--ink);
}

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

.full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 167, 93, 0.18);
}

.booking-form .button {
  margin-top: 20px;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

/* 【中文功能说明】页脚和 WhatsApp 浮动按钮提供联系入口。 */
.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.74);
  background: #06152a;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand .brand-main {
  color: var(--white);
}

.footer-brand .brand-sub {
  color: rgba(255, 255, 255, 0.64);
}

.footer-contact {
  display: grid;
  gap: 10px;
  max-width: 340px;
}

.footer-contact strong {
  color: var(--white);
}

.footer-contact p {
  margin: 0;
}

.footer-contact .button {
  justify-self: start;
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.cta-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(7, 26, 51, 0.28);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-float:hover,
.cta-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(7, 26, 51, 0.34);
}

/* 【中文功能说明】后台页面样式包含登录卡片、筛选区和预约列表。 */
.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(200, 167, 93, 0.18), transparent 30%),
    var(--bg);
}

.admin-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.admin-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 90px;
}

.admin-card {
  width: min(460px, 100%);
  margin: 44px auto;
  padding: 32px;
}

.login-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.admin-dashboard {
  display: grid;
  gap: 22px;
}

.dashboard-top {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  gap: 16px;
  align-items: end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 26, 51, 0.08);
}

.filter-label {
  min-width: 0;
}

.appointments-list {
  display: grid;
  gap: 18px;
}

.appointment-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.appointment-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.appointment-meta span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--blue-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.empty-state {
  padding: 32px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  text-align: center;
}

/* 【中文功能说明】首页 PR 评分工具引导区，左右布局并在移动端堆叠。 */
.score-promo {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(200, 167, 93, 0.2), transparent 44%),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.score-promo h2 {
  margin: 8px 0 12px;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.score-promo p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.score-promo-action {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.score-promo-action .button {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.score-promo-action span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

/* 【中文功能说明】PR 评分页英雄区样式，深色背景突出工具价值主张。 */
.score-hero {
  position: relative;
  padding: 92px 0 64px;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(200, 167, 93, 0.22), transparent 42%),
    var(--navy);
}

.score-hero-content {
  max-width: 760px;
}

.score-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.score-hero-text {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.score-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.score-hero-points span {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
}

/* 【中文功能说明】评分应用容器整体卡片样式。 */
.score-section {
  padding: 56px 0 90px;
}

.score-app {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

/* 【中文功能说明】进度条展示测评完成进度。 */
.score-progress {
  margin-bottom: 28px;
}

.score-progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(7, 26, 51, 0.1);
  overflow: hidden;
}

.score-progress-bar span {
  display: block;
  width: 12%;
  height: 100%;
  border-radius: 999px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.score-progress-label {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

/* 【中文功能说明】题目与选项样式，单选按钮式大块点击区域。 */
.score-question-label {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.score-question {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.score-options {
  display: grid;
  gap: 12px;
}

.score-option {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

.score-option:hover,
.score-option:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(7, 26, 51, 0.1);
  transform: translateY(-1px);
}

.score-option.selected {
  border-color: var(--gold);
  background: rgba(200, 167, 93, 0.12);
}

.score-nav {
  margin-top: 22px;
}

/* 【中文功能说明】联系与预约表单步骤样式。 */
.score-lead-text {
  margin: 0 0 22px;
  color: var(--muted);
}

.score-form .form-grid {
  margin-bottom: 8px;
}

.score-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 600;
}

.score-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.score-consent span {
  font-size: 0.92rem;
}

/* 【中文功能说明】结果区分数环、等级与面板样式。 */
.score-result-head {
  text-align: center;
  margin-bottom: 24px;
}

.score-meter {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 24px;
}

.score-ring {
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0deg, rgba(7, 26, 51, 0.12) 0deg);
  display: grid;
  place-items: center;
}

.score-ring::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--white);
}

.score-ring-value,
.score-ring-caption {
  position: relative;
  z-index: 1;
  text-align: center;
}

.score-ring-value {
  color: var(--navy);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.score-ring-caption {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.score-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
}

.score-category p {
  margin: 14px 0 0;
  color: var(--muted);
}

.score-result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.score-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.score-panel h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.1rem;
}

.score-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.score-panel li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
}

.score-panel li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}

.score-panel-positive li::before {
  content: "+";
  color: var(--success);
}

.score-panel-weak li::before {
  content: "!";
  color: var(--danger);
}

.score-panel-reco {
  margin-bottom: 22px;
  background: var(--bg);
}

.score-panel-reco li::before {
  content: ">";
  color: var(--gold);
}

/* 【中文功能说明】结果区结尾行动号召区块，深色高对比并带金色光晕强化转化。 */
.score-cta {
  position: relative;
  overflow: hidden;
  padding: 46px 34px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top left, rgba(200, 167, 93, 0.28), transparent 46%),
    radial-gradient(circle at bottom right, rgba(200, 167, 93, 0.16), transparent 50%),
    linear-gradient(160deg, #0a2548, var(--navy));
  color: var(--white);
  text-align: center;
}

.score-cta-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 460px;
  height: 460px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(200, 167, 93, 0.28), transparent 60%);
  pointer-events: none;
}

.score-cta-eyebrow {
  position: relative;
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.score-cta h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.score-cta p {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}

.score-cta-note {
  position: relative;
  margin: 16px 0 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.86rem;
  font-weight: 600;
}

.score-cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.score-cta-actions .button {
  min-height: 60px;
  padding: 0 40px;
  color: var(--navy);
  background: linear-gradient(135deg, #f0cf7a, var(--gold));
  border-color: var(--gold);
  font-size: 1.05rem;
  box-shadow: 0 16px 36px rgba(200, 167, 93, 0.42);
}

.score-cta-actions .button:hover,
.score-cta-actions .button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(200, 167, 93, 0.52);
}

.score-cta-actions .button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

/* 【中文功能说明】计算加载状态的转圈动画。 */
.score-loading {
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 60px 0;
  color: var(--muted);
  font-weight: 700;
}

.score-spinner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid rgba(7, 26, 51, 0.12);
  border-top-color: var(--gold);
  animation: score-spin 0.9s linear infinite;
}

@keyframes score-spin {
  to {
    transform: rotate(360deg);
  }
}

/* 【中文功能说明】同意条款下方的隐私说明文字。 */
.score-consent-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* 【中文功能说明】结果页分数英雄区：深色高端卡片，金色分数环与最强行动号召。 */
.result-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 34px 44px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% -10%, rgba(200, 167, 93, 0.22), transparent 55%),
    linear-gradient(165deg, #0a2548, var(--navy));
  box-shadow: 0 30px 70px rgba(7, 26, 51, 0.32);
  text-align: center;
  margin-bottom: 34px;
}

.result-hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(200, 167, 93, 0.3), transparent 62%);
  pointer-events: none;
}

.result-hero-inner {
  position: relative;
  z-index: 1;
}

.result-greeting {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0cf7a, var(--gold));
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 26px rgba(200, 167, 93, 0.45);
}

.result-meter {
  display: grid;
  place-items: center;
  margin: 30px 0 6px;
}

.result-ring {
  position: relative;
  width: 236px;
  height: 236px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--gold) 0deg, rgba(255, 255, 255, 0.14) 0deg);
  filter: drop-shadow(0 18px 40px rgba(200, 167, 93, 0.4));
}

.result-ring::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(200, 167, 93, 0.22), transparent 70%);
  z-index: -1;
}

.result-ring-inner {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #f3f6fb);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  text-align: center;
  box-shadow:
    inset 0 2px 12px rgba(7, 26, 51, 0.08),
    0 8px 22px rgba(7, 26, 51, 0.18);
}

.result-ring-value {
  color: var(--navy);
  font-size: 4.1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.result-ring-sub {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
}

.result-summary {
  max-width: 580px;
  margin: 20px auto 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

/* 【中文功能说明】英雄区内最强主行动号召按钮，金色光晕加轻微脉冲吸引点击。 */
.result-hero-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.result-book-btn {
  flex-direction: column;
  gap: 2px;
  min-height: 70px;
  padding: 12px 44px;
  color: var(--navy);
  background: linear-gradient(135deg, #f3d585, var(--gold));
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(200, 167, 93, 0.5);
  animation: result-cta-pulse 2.4s ease-in-out infinite;
}

.result-book-btn:hover,
.result-book-btn:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f7dd97, #d2b264);
  border-color: #d2b264;
  box-shadow: 0 24px 50px rgba(200, 167, 93, 0.6);
  animation: none;
}

.result-book-btn-main {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.result-book-btn-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(7, 26, 51, 0.7);
}

@keyframes result-cta-pulse {
  0%, 100% {
    box-shadow: 0 18px 40px rgba(200, 167, 93, 0.5);
  }
  50% {
    box-shadow: 0 18px 52px rgba(200, 167, 93, 0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .result-book-btn {
    animation: none;
  }
}

.result-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.result-cta-trust li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 700;
}

.result-cta-trust li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}

.result-book-note {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

/* 【中文功能说明】结果分区标题，统一信息层级的视觉引导。 */
.result-section-head {
  margin: 0 0 18px;
  text-align: center;
}

.result-section-head h3 {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  letter-spacing: -0.02em;
}

.result-section-head .score-question-label {
  margin-bottom: 0;
}

/* 【中文功能说明】正面因素与需关注项的双栏卡片。 */
.result-factors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.result-factor-card {
  position: relative;
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(7, 26, 51, 0.07);
}

.result-factor-icon {
  position: absolute;
  top: -18px;
  left: 26px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 10px 22px rgba(7, 26, 51, 0.18);
}

.result-positive .result-factor-icon {
  background: linear-gradient(135deg, #1aa15a, var(--success));
}

.result-attention .result-factor-icon {
  background: linear-gradient(135deg, #eaa44a, #d9892f);
}

.result-factor-card h3 {
  margin: 14px 0 16px;
  color: var(--navy);
  font-size: 1.12rem;
}

.result-factor-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.result-factor-card li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  line-height: 1.4;
}

.result-factor-card li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
}

.result-positive {
  border-top: 4px solid var(--success);
}

.result-positive li::before {
  content: "\2713";
  color: var(--success);
  background: rgba(19, 115, 51, 0.12);
}

.result-attention {
  border-top: 4px solid #d9892f;
}

.result-attention li::before {
  content: "!";
  color: #b8650f;
  background: rgba(217, 137, 47, 0.16);
}

.result-factor-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

/* 【中文功能说明】推荐下一步列表区。 */
.result-reco {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 26px;
}

.result-reco h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1.12rem;
}

.result-reco ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.result-reco li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.result-reco li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}

/* 【中文功能说明】中段行动号召横幅，在阅读信息时持续推动预约。 */
.result-midcta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 167, 93, 0.4);
  background:
    radial-gradient(circle at left, rgba(200, 167, 93, 0.14), transparent 60%),
    var(--bg);
}

.result-midcta-text {
  display: grid;
  gap: 4px;
}

.result-midcta-text strong {
  color: var(--navy);
  font-size: 1.12rem;
}

.result-midcta-text span {
  color: var(--muted);
  font-size: 0.94rem;
}

.result-midcta-btn {
  flex-shrink: 0;
  min-height: 56px;
  padding: 0 30px;
  color: var(--navy);
  background: linear-gradient(135deg, #f0cf7a, var(--gold));
  border-color: var(--gold);
  box-shadow: 0 14px 30px rgba(200, 167, 93, 0.4);
}

.result-midcta-btn:hover,
.result-midcta-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(200, 167, 93, 0.5);
}

/* 【中文功能说明】参考 PDF 的信息区块：黄金窗口、收益、流程。 */
.result-info {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 18px;
}

/* 【中文功能说明】黄金窗口信息区采用浅金强调底色，突出 2026 机会。 */
.result-info-spotlight {
  border-color: rgba(200, 167, 93, 0.45);
  background:
    radial-gradient(circle at top right, rgba(200, 167, 93, 0.12), transparent 55%),
    var(--white);
}

.result-info h3 {
  margin: 4px 0 12px;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.result-info > p {
  margin: 0;
  color: var(--muted);
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.result-stats div {
  padding: 20px;
  border-radius: 16px;
  background: var(--bg);
  text-align: center;
}

.result-stats strong {
  display: block;
  color: var(--navy);
  font-size: 1.9rem;
  letter-spacing: -0.03em;
}

.result-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.result-gains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.result-gains article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.result-gains h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

.result-gains p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.result-steps {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: result-step;
  display: grid;
  gap: 14px;
}

.result-steps li {
  position: relative;
  padding: 16px 18px 16px 58px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
}

.result-steps li::before {
  counter-increment: result-step;
  content: counter(result-step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
}

.result-steps strong {
  display: block;
  color: var(--navy);
}

.result-steps span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.result-disclaimer {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* 【中文功能说明】移动端常驻底部行动号召条，滚动长结果页时持续引导预约。 */
.result-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(160deg, #0a2548, var(--navy));
  box-shadow: 0 18px 44px rgba(7, 26, 51, 0.4);
}

.result-sticky-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.result-sticky-text strong {
  color: var(--white);
  font-size: 0.98rem;
  white-space: nowrap;
}

.result-sticky-text span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.result-sticky-cta .button {
  flex-shrink: 0;
  min-height: 48px;
  padding: 0 24px;
  color: var(--navy);
  background: linear-gradient(135deg, #f0cf7a, var(--gold));
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(200, 167, 93, 0.42);
}

@media (max-width: 760px) {
  .result-sticky-cta:not(.hidden) {
    display: flex;
  }
}

/* 【中文功能说明】预约弹窗整体布局与遮罩。 */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 51, 0.55);
  backdrop-filter: blur(3px);
}

.booking-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(7, 26, 51, 0.4);
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
}

.booking-modal-head {
  text-align: center;
  margin-bottom: 22px;
  padding: 0 30px;
}

.booking-modal-head h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.booking-modal-head p {
  margin: 0;
  color: var(--muted);
}

.booking-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.booking-col {
  display: grid;
  gap: 18px;
  align-content: start;
}

.booking-block {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.booking-step-label {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-block-title {
  display: block;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1.05rem;
}

.booking-block label {
  margin-bottom: 14px;
}

.booking-block label:last-of-type {
  margin-bottom: 0;
}

/* 【中文功能说明】日历头部与月份导航。 */
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.calendar-head strong {
  color: var(--navy);
}

.calendar-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.calendar-nav button {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1;
}

.calendar-nav span {
  min-width: 120px;
  text-align: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.calendar-weekdays span {
  text-align: center;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

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

.calendar-cell {
  aspect-ratio: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.calendar-cell.empty {
  border: none;
  background: none;
}

.calendar-cell:not(.empty):not(.disabled):hover {
  border-color: var(--gold);
  background: rgba(200, 167, 93, 0.12);
}

.calendar-cell.disabled {
  color: var(--line);
  cursor: not-allowed;
}

.calendar-cell.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.calendar-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

/* 【中文功能说明】时间段选择按钮网格。 */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.time-slot {
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
}

.time-slot:hover {
  border-color: var(--gold);
}

.time-slot.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* 【中文功能说明】弹窗内的下拉框与电话输入框样式，强制与输入框尺寸一致。 */
.booking-block select {
  width: 100%;
  display: block;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 44px 14px 15px;
  margin: 0;
  color: var(--ink);
  background-color: var(--white);
  line-height: 1.6;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23152238' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.booking-block select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 167, 93, 0.18);
}

.phone-field {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.phone-prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  color: var(--navy);
  font-weight: 700;
}

.phone-field input {
  flex: 1;
}

.booking-confirm {
  margin-top: 8px;
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

#cancel-booking {
  margin-top: 10px;
}

/* 【中文功能说明】预约成功提示卡片。 */
.booking-success {
  text-align: center;
  padding: 30px 10px;
}

.booking-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(19, 115, 51, 0.12);
  color: var(--success);
  font-size: 2rem;
}

.booking-success h2 {
  margin: 0 0 10px;
  color: var(--navy);
}

.booking-success p {
  max-width: 460px;
  margin: 0 auto 22px;
  color: var(--muted);
}

/* 【中文功能说明】响应式样式保证网站在平板和手机上易读易用。 */
@media (max-width: 960px) {
  .booking-modal-body {
    grid-template-columns: 1fr;
  }

  .result-gains {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.four,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .booking-layout,
  .dashboard-top {
    grid-template-columns: 1fr;
  }
}

/* 【中文功能说明】新增内容页通用样式：面包屑、轻色页头、正文排版与“承诺/不承诺”双栏卡片，复用既有品牌变量，纯新增不影响现有页面。 */
.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.breadcrumbs {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--gold);
}

.breadcrumbs span {
  color: var(--navy);
}

.page-hero {
  padding: 56px 0 40px;
  background: var(--bg);
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.prose {
  color: var(--ink);
}

.prose h2 {
  margin: 40px 0 12px;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: -0.02em;
}

.prose h3 {
  margin: 26px 0 8px;
  color: var(--navy);
  font-size: 1.12rem;
}

.prose p,
.prose li {
  color: var(--ink);
}

.prose p {
  margin: 0 0 14px;
}

.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.prose a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover,
.prose a:focus-visible {
  color: var(--gold);
}

.prose .muted-note {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* 【中文功能说明】首页“我们承诺/我们不承诺”信任区双栏卡片，强化 YMYL 类目的诚信定位。 */
.promise-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 26, 51, 0.08);
}

.promise-card.promise-yes {
  border-top: 4px solid var(--success);
}

.promise-card.promise-no {
  border-top: 4px solid var(--gold);
}

.promise-card h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1.15rem;
}

.promise-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.promise-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  line-height: 1.45;
}

.promise-yes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.promise-no li::before {
  content: "\00D7";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}

/* 【中文功能说明】预约表单同意条款说明文字样式，仅为可读性，不改变任何提交逻辑。 */
.booking-consent-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.5;
}

.booking-consent-note a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .card-grid.two {
    grid-template-columns: 1fr;
  }

  .container,
  .narrow,
  .admin-main {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 82px 0 130px;
  }

  .trust-grid,
  .card-grid.four,
  .card-grid.three,
  .reason-list,
  .timeline,
  .form-grid,
  .appointment-meta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: grid;
  }

  .section {
    padding: 72px 0;
  }

  .booking-form,
  .admin-card,
  .dashboard-top {
    padding: 22px;
  }

  .score-app {
    padding: 22px;
  }

  .score-cta {
    padding: 24px;
  }

  .result-factors,
  .result-stats,
  .result-gains {
    grid-template-columns: 1fr;
  }

  .result-hero,
  .result-info {
    padding: 30px 20px;
  }

  .result-midcta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .result-midcta-btn,
  .result-book-btn {
    width: 100%;
  }

  /* 【中文功能说明】为常驻底部行动号召条预留空间，避免遮挡结果内容。 */
  #result-step:not(.hidden) {
    padding-bottom: 84px;
  }

  .booking-modal {
    padding: 0;
  }

  .booking-modal-dialog {
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    padding: 24px 18px 40px;
  }

  .booking-modal-head {
    padding: 0 24px;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .score-promo {
    grid-template-columns: 1fr;
    padding: 26px;
  }
}
