
:root {
  --background: #f6f3ee;
  --foreground: #1d1a18;
  --muted: #7a736b;
  --line: #ebe5dc;
  --panel: #ffffff;
  --soft: #f6f6f6;
  --brand: #a87b47;
  --brand-dark: #493522;
  --accent: #cc3d35;
}


* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

button,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

@keyframes goldPulse {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(168, 123, 71, 0.26), 0 0 0 0 rgba(212, 164, 91, 0.34);
  }

  50% {
    box-shadow: 0 18px 38px rgba(168, 123, 71, 0.36), 0 0 0 10px rgba(212, 164, 91, 0);
  }
}

@keyframes goldDotPulse {
  0%,
  100% {
    box-shadow: 0 8px 18px rgba(168, 123, 71, 0.22), 0 0 0 0 rgba(212, 164, 91, 0.32);
  }

  50% {
    box-shadow: 0 12px 24px rgba(168, 123, 71, 0.34), 0 0 0 8px rgba(212, 164, 91, 0);
  }
}

.intro-shell,
.survey-shell {
  width: 100%;
  min-height: 100vh;
  padding: 0 18px 34px;
}

.intro-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    radial-gradient(circle at 12% 8%, rgba(168, 123, 71, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f3ed 100%);
}

.catalog-button {
  position: fixed;
  z-index: 20;
  top: max(18px, env(safe-area-inset-top));
  left: 16px;
  min-height: 40px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(73, 53, 34, 0.12);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(73, 53, 34, 0.1);
  backdrop-filter: blur(12px);
}

.menu-icon {
  width: 16px;
  height: 13px;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
}

.menu-icon span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.catalog-label {
  display: inline-block;
  line-height: 1;
}

.catalog-panel {
  position: fixed;
  z-index: 21;
  top: calc(max(18px, env(safe-area-inset-top)) + 48px);
  left: 16px;
  width: min(320px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(73, 53, 34, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(73, 53, 34, 0.16);
  backdrop-filter: blur(16px);
}

.catalog-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: #f2eee8;
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}

.catalog-panel p {
  margin: 0 0 12px;
  color: #7c5630;
  font-size: 14px;
  font-weight: 900;
}

.catalog-item {
  width: 100%;
  display: block;
  padding: 14px 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: inherit;
  text-align: left;
}

.catalog-item strong,
.catalog-item span {
  display: block;
}

.catalog-item strong {
  color: var(--foreground);
  font-size: 18px;
  font-weight: 900;
}

.catalog-item span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
  font-weight: 700;
}

.catalog-item.active strong {
  color: #7c5630;
}

.catalog-item.active span {
  color: var(--brand-dark);
}

.catalog-detail {
  margin: -2px 0 10px;
  padding: 14px;
  border-radius: 10px;
  background: #faf7f2;
  text-align: left;
}

.catalog-detail b,
.catalog-detail span {
  display: block;
}

.catalog-detail b {
  margin-top: 10px;
  color: #7c5630;
  font-size: 13px;
  font-weight: 900;
}

.catalog-detail b:first-child {
  margin-top: 0;
}

.catalog-detail span {
  margin-top: 5px;
  color: #463c34;
  font-size: 14px;
  line-height: 1.48;
  font-weight: 700;
}

.service-shell {
  min-height: 100vh;
  padding: 18px 18px 38px;
  background:
    radial-gradient(circle at 12% 8%, rgba(168, 123, 71, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f3ed 100%);
  color: var(--foreground);
}

.service-back {
  min-height: 38px;
  border: 1px solid rgba(73, 53, 34, 0.12);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(73, 53, 34, 0.08);
}

.service-hero,
.service-section,
.price-panel {
  width: min(100%, 560px);
  margin: 16px auto 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(73, 53, 34, 0.08);
}

.case-wide-shell .service-hero,
.case-wide-shell .service-section {
  width: min(100%, 920px);
}

.case-wide-shell .service-hero {
  padding: 34px 36px 30px;
}

.case-wide-shell .service-section {
  padding: 30px 36px;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 20px 22px;
}

.service-hero p,
.service-hero span {
  margin: 0;
  color: #7c5630;
  font-size: 14px;
  font-weight: 800;
}

.service-hero > span {
  display: inline-flex;
  margin-top: 10px;
  border-radius: 999px;
  padding: 7px 12px;
  background: #f1ebe3;
  color: var(--brand-dark);
  font-size: 13px;
}

.service-hero h1 {
  margin: 28px 0 0;
  color: var(--foreground);
  font-size: clamp(34px, 9vw, 48px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.service-hero h2 {
  max-width: 560px;
  margin: 18px 0 0;
  color: #3a342e;
  font-size: 19px;
  line-height: 1.46;
  font-weight: 800;
}

.service-side {
  margin-top: 22px;
  padding: 22px 18px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 248, 238, 0.96) 100%);
  border: 1px solid #e4c99d;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 28px rgba(73, 53, 34, 0.08);
}

.service-side strong,
.service-side b,
.service-side span {
  display: block;
}

.service-side strong {
  width: fit-content;
  margin: 0 auto;
  border-bottom: 2px solid rgba(168, 123, 71, 0.32);
  padding-bottom: 5px;
  color: var(--brand);
  font-size: 22px;
  font-weight: 900;
}

.service-side b {
  margin-top: 14px;
  color: var(--foreground);
  font-size: 25px;
  line-height: 1.34;
  font-weight: 900;
}

.service-side span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.service-side-tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.service-side-tags i {
  min-width: 54px;
  border-radius: 999px;
  padding: 7px 10px;
  background: #ffffff;
  color: var(--brand-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(73, 53, 34, 0.08);
}

.service-section {
  padding: 24px 18px;
}

.service-kicker {
  margin: 0;
  color: var(--foreground);
  font-size: 24px;
  line-height: 1.2;
  text-align: left;
  font-weight: 900;
}

.service-section h2 {
  margin: 10px 0 20px;
  max-width: 620px;
  color: #7c5630;
  font-size: 16px;
  line-height: 1.45;
  text-align: left;
  font-weight: 800;
}

.benefit-list {
  display: grid;
  gap: 12px;
}

.benefit-list div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7f6f4;
}

.benefit-list b {
  grid-row: span 2;
  color: var(--brand);
  font-size: 15px;
  font-weight: 900;
}

.benefit-list strong {
  color: var(--foreground);
  font-size: 19px;
  font-weight: 900;
}

.benefit-list span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.fit-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.fit-list div {
  min-height: 50px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 14px;
  background: #fff8ee;
  color: var(--foreground);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.fit-list div::before {
  content: "✓";
  width: 28px;
  height: 28px;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-weight: 900;
}

.price-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  padding: 22px 18px;
  border: 2px solid #d9b074;
  background: #fffaf3;
}

.price-panel span {
  color: var(--brand-dark);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.price-panel strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  color: var(--brand);
  font-size: clamp(52px, 15vw, 72px);
  line-height: 1;
  text-align: center;
  font-weight: 900;
}

.price-panel small {
  margin: 0 6px;
  font-size: 28px;
  line-height: 1;
}

.service-actions {
  width: min(100%, 560px);
  margin: 0 auto;
  padding-bottom: 20px;
}

.cases-hero h1 {
  margin-top: 24px;
}

.case-section {
  padding-bottom: 28px;
}

.case-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.case-card {
  width: 100%;
  min-height: 116px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: #fffaf3;
  text-align: left;
  box-shadow: 0 10px 24px rgba(73, 53, 34, 0.06);
}

.case-card b {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(168, 123, 71, 0.22);
  animation: goldDotPulse 2.4s ease-in-out infinite;
}

.case-card strong {
  color: var(--foreground);
  font-size: 20px;
  font-weight: 900;
}

.case-card span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.case-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.case-proof-row div {
  min-height: 76px;
  border: 1px solid #ead8bf;
  border-radius: 12px;
  padding: 12px 8px;
  background: #fff8ee;
  text-align: center;
}

.case-proof-row strong,
.case-proof-row span {
  display: block;
}

.case-proof-row strong {
  color: var(--brand);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.case-proof-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.consulting-case-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.consulting-case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(73, 53, 34, 0.08);
}

.case-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 0;
}

.case-card-top b {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1ebe3;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.case-card-top strong {
  color: var(--foreground);
  font-size: 20px;
  font-weight: 900;
}

.consulting-case-card p {
  margin: 10px 14px 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.consulting-case-card img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  object-position: top center;
  border-top: 1px solid var(--line);
  background: #111111;
}

.deep-proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.deep-proof-row div {
  min-height: 88px;
  border: 1px solid #e4c99d;
  border-radius: 12px;
  padding: 16px 10px;
  background:
    linear-gradient(135deg, #fff8ee 0%, #ffffff 100%);
  text-align: center;
  box-shadow: 0 10px 24px rgba(73, 53, 34, 0.07);
}

.deep-proof-row strong,
.deep-proof-row span {
  display: block;
}

.deep-proof-row strong {
  color: var(--brand);
  font-size: clamp(30px, 8vw, 44px);
  line-height: 1;
  font-weight: 900;
}

.deep-proof-row span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.deep-case-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  width: 100%;
}

.deep-case-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 30px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(73, 53, 34, 0.08);
}

.deep-case-top {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  padding-right: 18px;
}

.deep-case-top b {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f1ebe3;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.deep-case-top img {
  width: 112px;
  max-height: 98px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.deep-case-body {
  min-width: 0;
  max-width: 620px;
}

.deep-case-body strong {
  display: block;
  margin-top: 0;
  color: var(--foreground);
  font-size: 28px;
  line-height: 1.16;
  font-weight: 900;
}

.deep-case-body h3 {
  margin: 12px 0 0;
  color: var(--brand);
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.06;
  font-weight: 900;
}

.deep-case-body p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

@media (max-width: 430px) {
  .deep-case-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .deep-case-top {
    min-height: 92px;
    flex-direction: row;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 14px;
  }

  .deep-case-top img {
    width: min(150px, calc(100% - 54px));
  }
}

.intro-card {
  width: min(100%, 430px);
  padding: 52px 18px 30px;
  text-align: center;
}

.avatar {
  width: 98px;
  height: 98px;
  margin: 0 auto 28px;
  display: block;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 12px 34px rgba(73, 53, 34, 0.18);
}

.intro-card h1 {
  margin: 0 0 26px;
  font-size: 27px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.intro-brief {
  width: min(100%, 372px);
  margin: 0 auto;
  border: 1px solid rgba(168, 123, 71, 0.16);
  border-radius: 12px;
  padding: 18px 16px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(255, 255, 255, 0.78));
  box-shadow: 0 12px 30px rgba(73, 53, 34, 0.06);
}

.intro-copy,
.intro-note {
  margin: 0 auto;
  max-width: 340px;
  text-align: left;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.intro-copy {
  color: #2d2925;
}

.intro-dimensions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.intro-dimensions span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f1ebe3;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
}

.intro-note {
  border-left: 3px solid rgba(168, 123, 71, 0.42);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(246, 243, 238, 0.8);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.primary-button {
  width: min(100%, 335px);
  min-height: 56px;
  margin: 42px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(168, 123, 71, 0.22);
}

.start-glow-button {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8f6539 0%, #c99b5c 48%, #a87b47 100%);
  box-shadow: 0 12px 26px rgba(168, 123, 71, 0.26), 0 0 0 0 rgba(212, 164, 91, 0.34);
  animation: goldPulse 2.2s ease-in-out infinite;
}

.start-glow-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.36) 50%, transparent 100%);
  animation: buttonShine 2.8s ease-in-out infinite;
}

@keyframes buttonShine {
  0%,
  52% {
    transform: translateX(-130%) skewX(-18deg);
  }

  100% {
    transform: translateX(130%) skewX(-18deg);
  }
}

.primary-button:active {
  transform: translateY(1px);
}

.survey-shell {
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(29, 26, 24, 0.03);
}

.survey-hero {
  margin: 0 -18px 22px;
  padding: 34px 24px 30px;
  overflow: hidden;
  position: relative;
  background: var(--brand-dark);
  color: #ffffff;
  text-align: center;
}

.survey-hero::before,
.survey-hero::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.survey-hero::before {
  left: -118px;
  top: -50px;
}

.survey-hero::after {
  right: -76px;
  bottom: -112px;
}

.survey-hero p,
.survey-hero h1,
.survey-hero span {
  position: relative;
  z-index: 1;
}

.survey-hero p {
  margin: 0 0 8px;
  font-size: 16px;
  opacity: 0.82;
}

.survey-hero h1 {
  margin: 0;
  font-size: 29px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.survey-hero span {
  display: block;
  margin-top: 12px;
  font-size: 17px;
  font-weight: 700;
  opacity: 0.88;
}

.progress-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 0 0 26px;
  padding: 14px 0 2px;
}

.progress-wrap strong {
  font-size: 22px;
}

.progress-wrap span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee8df;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
  transition: width 180ms ease;
}

.question-list {
  display: grid;
  gap: 34px;
}

.question-block {
  scroll-margin-top: 16px;
}

.question-meta {
  width: max-content;
  margin-bottom: 9px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1ebe3;
  color: #7c5630;
  font-size: 13px;
  font-weight: 800;
}

.question-block h2 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.42;
  font-weight: 800;
  letter-spacing: 0;
}

.question-block h2 span {
  color: var(--accent);
  margin-left: 6px;
}

.choice-list {
  display: grid;
  gap: 14px;
}

.choice {
  min-height: 58px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--soft);
  color: #24211f;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice b {
  font-size: 20px;
}

.choice span {
  font-size: 18px;
  line-height: 1.36;
  font-weight: 700;
}

.choice.selected {
  border-color: rgba(168, 123, 71, 0.45);
  background: #fbf4eb;
}

textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  border: 2px solid transparent;
  border-radius: 10px;
  outline: none;
  padding: 18px;
  background: var(--soft);
  color: var(--foreground);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

textarea:focus {
  border-color: rgba(168, 123, 71, 0.5);
  background: #fffdf9;
}

textarea::placeholder {
  color: #aaa7a2;
}

.notice {
  margin: 24px 0 -10px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.submit-bar {
  position: sticky;
  bottom: 0;
  margin: 24px -18px -34px;
  padding: 14px 18px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), #ffffff 40%);
}

.submit-bar .primary-button {
  margin-top: 0;
}

.result-panel {
  padding: 52px 0 34px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: #7c5630;
  font-size: 15px;
  font-weight: 800;
}

.result-panel h1 {
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.score-ring {
  width: 132px;
  height: 132px;
  margin: 0 auto 24px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-direction: column;
  border-radius: 999px;
  background: #f7efe5;
  color: var(--brand-dark);
  box-shadow: inset 0 0 0 10px #fffaf4;
}

.score-ring span {
  width: 100%;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.score-ring small {
  width: 100%;
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.result-panel > p:not(.eyebrow) {
  max-width: 420px;
  margin: 0 auto 24px;
  color: #3a342e;
  font-size: 18px;
  line-height: 1.62;
  font-weight: 700;
  text-align: left;
}

.result-grid {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.result-grid div,
.cta-box {
  padding: 16px;
  border-radius: 10px;
  background: #f7f6f4;
  text-align: left;
}

.result-grid strong,
.cta-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 900;
}

.result-grid span,
.cta-box span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.cta-box {
  border: 1px solid var(--line);
  background: #fffaf3;
}

.result-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.result-actions .primary-button {
  margin-top: 0;
}

.report-box {
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  text-align: left;
}

.report-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--line);
  background: #faf7f2;
}

.report-head strong {
  font-size: 17px;
  font-weight: 900;
}

.report-head button {
  flex: 0 0 auto;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--brand-dark);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.report-box pre,
.submission-card pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: #312c27;
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.58;
}

.report-box pre {
  max-height: 520px;
  overflow: auto;
  padding: 16px;
  font-size: 14px;
}

.admin-shell {
  min-height: 100vh;
  padding: 24px 16px 42px;
  background: #f6f3ee;
  color: var(--foreground);
}

.admin-header,
.admin-empty,
.submission-card {
  width: min(100%, 900px);
  margin: 0 auto;
}

.admin-header {
  padding: 22px 0 20px;
}

.admin-header p,
.admin-header h1,
.admin-header span {
  margin: 0;
}

.admin-header p {
  color: #7c5630;
  font-size: 15px;
  font-weight: 900;
}

.admin-header h1 {
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.admin-header span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.admin-empty {
  margin-top: 24px;
  padding: 28px 20px;
  border-radius: 10px;
  background: #ffffff;
}

.admin-empty h1,
.admin-empty h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
}

.admin-empty p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.submission-list {
  display: grid;
  gap: 16px;
}

.submission-card {
  padding: 18px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(29, 26, 24, 0.06);
}

.submission-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.submission-top strong,
.submission-top span,
.submission-top b {
  display: block;
}

.submission-top strong {
  font-size: 18px;
  font-weight: 900;
}

.submission-top span,
.submission-meta span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.submission-top b {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 20px;
  font-weight: 900;
}

.submission-meta {
  margin: 12px 0;
}

.submission-card pre {
  max-height: 640px;
  overflow: auto;
  padding: 14px;
  border-radius: 8px;
  background: #f7f6f4;
  font-size: 14px;
}

@media (min-width: 640px) {
  .intro-card {
    padding-top: 72px;
  }

  .survey-shell {
    min-height: 100vh;
  }

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

  .service-hero {
    padding: 36px;
  }

  .service-side {
    margin-top: 24px;
  }

  .benefit-list div {
    grid-template-columns: 48px 136px 1fr;
  }

  .benefit-list b {
    grid-row: auto;
  }

  .price-panel {
    grid-template-columns: minmax(0, 1fr) max-content;
    column-gap: 28px;
  }

  .price-panel span,
  .price-panel strong {
    text-align: center;
  }

  .consulting-case-grid {
    grid-template-columns: 1fr 1fr;
  }

  .consulting-case-card img {
    height: 220px;
  }

  .deep-proof-row {
    grid-template-columns: 1fr 1fr;
  }

}

.hidden { display: none !important; }
