:root {
  --anchor-offset: 108px;
  --bg: #f2ece2;
  --bg-soft: rgba(255, 250, 243, 0.78);
  --surface: rgba(255, 251, 245, 0.88);
  --surface-strong: #fffaf3;
  --ink: #19231f;
  --ink-soft: #55605a;
  --line: rgba(25, 35, 31, 0.08);
  --primary: #17342d;
  --primary-strong: #10241f;
  --accent: #b48145;
  --accent-soft: rgba(180, 129, 69, 0.14);
  --shadow: 0 24px 60px rgba(20, 28, 25, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background:
    radial-gradient(circle at top left, rgba(180, 129, 69, 0.18), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(23, 52, 45, 0.16), transparent 24%),
    linear-gradient(180deg, #f8f4ed 0%, #f2ece2 52%, #ece4d7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(25, 35, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 35, 31, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 78%);
}

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

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

.page-shell {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 40px;
}

#profile,
#credentials,
#experience,
#consult {
  scroll-margin-top: var(--anchor-offset);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(18, 29, 25, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  color: inherit;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #dab688);
  color: #fff7ed;
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-meta-line {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex-wrap: wrap;
}

.brand-phone-icon {
  display: none;
}

.brand-text strong,
.section-heading h2,
.hero h1,
.service-card h3,
.case-card h3,
.about-card h3,
.package-card h3,
.assessment-panel h3,
.scenario-card strong,
.guide-card h3,
.portrait-art h2,
.side-card h3 {
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  text-wrap: pretty;
}

.brand-text strong {
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.brand-text small,
.site-nav a,
.hero-lead,
.note-card p,
.service-card p,
.case-card p,
.about-card li,
.contact-list dt,
.contact-list dd,
.package-copy,
.package-list li,
.guide-card p,
.assessment-lead,
.assessment-note,
.scenario-card p,
.chat-header p,
.disclaimer,
.side-card li,
.side-card p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.brand-text small {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.brand-role {
  display: block;
}

.site-nav {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}

@media (min-width: 861px) {
  html[lang="zh-CN"] .brand {
    margin-left: 8px;
  }

  html[lang="zh-CN"] .site-header {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  html[lang="zh-CN"] .brand,
  html[lang="zh-CN"] .header-actions {
    align-items: center;
  }

  html[lang="zh-CN"] .brand-link {
    align-items: center;
    gap: 16px;
  }

  html[lang="zh-CN"] .brand-mark {
    display: inline-flex !important;
    width: 60px;
    height: 60px;
    font-size: 34px;
    flex-shrink: 0;
  }

  html[lang="zh-CN"] .brand-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  html[lang="zh-CN"] .brand-text strong {
    font-size: 1.16rem;
    line-height: 1.04;
    white-space: nowrap;
  }

  html[lang="zh-CN"] .brand-text small {
    font-size: 0.84rem;
    line-height: 1.18;
    white-space: nowrap;
  }

  html[lang="zh-CN"] .brand-meta-line {
    display: block;
  }

  html[lang="zh-CN"] .brand-role {
    display: inline;
    white-space: nowrap;
  }

  html[lang="zh-CN"] .brand-title::before {
    content: " ";
  }

  html[lang="zh-CN"] .site-nav {
    justify-content: center;
  }

  html[lang="zh-CN"] .header-actions {
    margin-left: auto;
  }
}

@media (min-width: 561px) and (max-width: 860px) {
  html[lang="zh-CN"] .brand {
    margin-left: 8px;
  }

  html[lang="zh-CN"] .brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
  }

  html[lang="zh-CN"] .brand-mark {
    display: inline-flex !important;
    width: 48px;
    height: 48px;
    font-size: 28px;
    flex-shrink: 0;
  }

  html[lang="zh-CN"] .brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    min-width: 0;
    flex: 1;
  }

  html[lang="zh-CN"] .brand-text strong {
    font-size: 1.08rem;
    line-height: 1.04;
  }

  html[lang="zh-CN"] .brand-text small {
    display: block;
    font-size: 0.78rem;
    line-height: 1.16;
    white-space: nowrap;
  }

  html[lang="zh-CN"] .brand-meta-line {
    display: block;
  }

  html[lang="zh-CN"] .brand-role {
    display: inline;
    min-width: 0;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }

  html[lang="zh-CN"] .brand-title::before {
    content: " ";
  }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.82);
  box-shadow: 0 10px 24px rgba(18, 31, 27, 0.05);
}

.lang-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 46px;
  padding: 0 16px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 140ms ease,
    box-shadow 180ms ease;
}

.lang-link.is-active {
  background: var(--primary);
  color: #f7f2e8;
  box-shadow: 0 12px 26px rgba(23, 52, 45, 0.16);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 8px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 140ms ease,
    box-shadow 180ms ease;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  transition: transform 140ms ease, box-shadow 180ms ease, background 140ms ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 20px;
  flex-shrink: 0;
  background: var(--primary);
  color: #f7f2e8;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button-primary {
  background: var(--primary);
  color: #f8f3eb;
  box-shadow: 0 14px 28px rgba(23, 52, 45, 0.18);
}

.button-secondary {
  border-color: rgba(23, 52, 45, 0.15);
  background: rgba(255, 250, 243, 0.7);
  color: var(--primary);
}

.brand-phone-icon,
.site-nav a,
.lang-link,
.header-cta,
.button,
.summary-card a {
  -webkit-tap-highlight-color: transparent;
}

.site-nav a::before,
.lang-link::before,
.brand-phone-icon::before,
.header-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(23, 52, 45, 0.08);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: -2;
}

.site-nav a::after,
.lang-link::after,
.brand-phone-icon::after,
.header-cta::after,
.button::after {
  content: "";
  position: absolute;
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: -1;
}

.site-nav a.is-active {
  color: var(--primary);
  background: rgba(23, 52, 45, 0.08);
  box-shadow: inset 0 0 0 1px rgba(23, 52, 45, 0.08);
}

.site-nav a.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.lang-link.is-active::before {
  opacity: 0;
}

.brand-phone-icon,
.summary-card,
.side-panel,
.experience-group {
  transition:
    transform 180ms ease,
    box-shadow 360ms ease,
    border-color 360ms ease,
    background-color 360ms ease;
}

.brand-phone-icon {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .header-cta:hover,
  .quick-chip:hover,
  .scenario-card:hover,
  .guide-card:hover {
    transform: translateY(-2px);
  }

  .site-nav a:hover {
    color: var(--primary);
    background: rgba(23, 52, 45, 0.05);
  }

  .lang-link:hover:not(.is-active) {
    color: var(--primary);
    background: rgba(23, 52, 45, 0.05);
  }

  .brand-phone-icon:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(23, 52, 45, 0.16);
  }

  .summary-card:hover,
  .side-panel:hover,
  .experience-group:hover {
    transform: translateY(-3px);
  }

  .summary-card:hover,
  .side-panel:hover {
    box-shadow: 0 22px 44px rgba(20, 28, 25, 0.1);
  }

  .experience-group:hover {
    border-color: rgba(23, 52, 45, 0.16);
  }
}

.is-pressed {
  transform: translateY(1px) scale(0.985) !important;
}

.is-rippling::after {
  animation: clickRipple 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes clickRipple {
  0% {
    opacity: 0.24;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

.hero,
.section,
.trust-strip {
  margin-top: 34px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 46px;
  padding: 44px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 249, 241, 0.92), rgba(255, 244, 231, 0.74)),
    linear-gradient(135deg, rgba(23, 52, 45, 0.08), transparent 46%);
  border: 1px solid rgba(23, 52, 45, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.hero-lead {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.04rem;
  line-height: 1.95;
}

.domain-note {
  max-width: 56ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.85;
}

.hero-actions,
.package-actions,
.chat-actions,
.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.note-card,
.trust-strip article,
.about-card,
.service-card,
.case-card,
.package-card,
.guide-card,
.chat-panel,
.side-card,
.assessment-panel,
.scenario-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.note-card {
  padding: 20px;
  background: rgba(255, 252, 247, 0.72);
}

.note-card span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.note-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.82;
}

.note-card span,
.trust-strip strong,
.journey-grid strong,
.contact-list dd,
.package-meta,
.guide-kicker,
.case-tag {
  color: var(--primary);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 560px;
  padding: 8px 18px 56px 0;
}

.portrait-frame {
  position: relative;
  width: min(100%, 460px);
  padding: 16px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(215, 180, 130, 0.26)),
    rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(180, 129, 69, 0.22);
  box-shadow: 0 26px 70px rgba(22, 30, 26, 0.16);
}

.portrait-art {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  color: #f8f3eb;
  background: linear-gradient(145deg, #203a33 0%, #132a24 52%, #0d1916 100%);
}

.portrait-image,
.portrait-overlay {
  position: absolute;
  inset: 0;
}

.portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.portrait-overlay {
  background:
    linear-gradient(180deg, rgba(9, 16, 14, 0.05) 0%, rgba(9, 16, 14, 0.14) 38%, rgba(9, 16, 14, 0.34) 100%),
    radial-gradient(circle at 22% 18%, rgba(180, 129, 69, 0.24), transparent 22%);
}

.portrait-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.14);
}

.floating-card {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: min(360px, calc(100% - 28px));
  padding: 22px 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(18, 47, 41, 0.96), rgba(32, 73, 63, 0.92));
  color: #f8f3eb;
  box-shadow: 0 22px 54px rgba(22, 53, 45, 0.22);
}

.floating-card p {
  margin: 0 0 10px;
  color: rgba(248, 243, 235, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.floating-pill-row,
.assessment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.floating-pill,
.assessment-pill,
.package-badge,
.guide-kicker,
.scenario-card span,
.case-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.floating-pill {
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 250, 242, 0.12);
  color: rgba(255, 250, 242, 0.9);
}

.floating-card strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-strip p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.8;
}

.trust-strip article,
.about-card,
.service-card,
.case-card,
.chat-panel,
.side-card,
.assessment-panel,
.scenario-card {
  padding: 24px;
}

.section {
  padding-top: 44px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.section-heading p {
  margin: 0;
  max-width: 62ch;
  line-height: 1.82;
}

.section-about {
  padding-top: 56px;
}

.section-heading-about {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading-about .eyebrow {
  margin-bottom: 22px;
}

.section-heading-about h2 {
  max-width: 5.6em;
  font-size: clamp(3.5rem, 7vw, 5.6rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  text-wrap: pretty;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.about-card.emphasis,
.package-card-featured,
.assessment-panel {
  background:
    linear-gradient(135deg, rgba(23, 52, 45, 0.97), rgba(29, 67, 58, 0.9)),
    var(--primary);
  color: #f8f3eb;
}

.about-card.emphasis li,
.assessment-panel .assessment-lead,
.assessment-panel .assessment-note,
.package-card-featured .package-copy,
.package-card-featured .package-list li {
  color: rgba(248, 243, 235, 0.84);
}

.about-card h3,
.service-card h3,
.case-card h3,
.package-card h3,
.side-card h3 {
  margin: 0 0 16px;
  font-size: 1.3rem;
  line-height: 1.35;
}

.about-card {
  min-height: 100%;
  border-radius: 30px;
}

.about-card.emphasis {
  padding: 30px;
}

.about-card:not(.emphasis) {
  background: rgba(255, 252, 247, 0.92);
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.about-card ul,
.package-list,
.side-card ul {
  margin: 0;
  padding-left: 1.05rem;
}

.about-card li,
.package-list li,
.side-card li {
  font-size: 0.98rem;
  line-height: 1.86;
}

.about-card li + li,
.package-list li + li,
.side-card li + li {
  margin-top: 10px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-list div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list dd {
  margin: 4px 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-list dt {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-about .contact-list div {
  padding-bottom: 14px;
}

.service-grid,
.package-grid,
.guide-grid,
.case-grid {
  display: grid;
  gap: 18px;
}

.service-grid,
.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.case-card,
.guide-card {
  min-height: 220px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.guide-kicker,
.scenario-card span,
.package-badge {
  align-self: flex-start;
  background: rgba(23, 52, 45, 0.08);
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 238, 224, 0.88));
}

.package-card-featured .package-badge {
  background: rgba(255, 247, 236, 0.14);
  color: #f8f3eb;
}

.package-card-featured .button-primary {
  background: #f8f3eb;
  color: var(--primary);
  box-shadow: none;
}

.package-card-featured .button-secondary {
  border-color: rgba(248, 243, 235, 0.2);
  background: rgba(255, 250, 242, 0.08);
  color: #f8f3eb;
}

.package-meta {
  margin: -4px 0 0;
}

.package-copy,
.assessment-lead,
.assessment-note,
.scenario-card p {
  margin: 0;
}

.package-copy,
.service-card p,
.case-card p,
.guide-card p,
.assessment-lead,
.assessment-note,
.scenario-card p,
.side-card p {
  font-size: 0.98rem;
  line-height: 1.82;
}

.package-list li + li {
  margin-top: 10px;
}

.section-accent .assessment-grid {
  align-items: stretch;
}

.assessment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.assessment-pills {
  margin: 22px 0;
}

.assessment-pill {
  background: rgba(255, 250, 242, 0.1);
  border: 1px solid rgba(255, 250, 242, 0.12);
  color: #f8f3eb;
}

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

.scenario-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.scenario-card strong {
  font-size: 1.18rem;
  line-height: 1.45;
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.chat-panel {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(252, 243, 230, 0.92));
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.chat-header strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.contact-overview {
  padding: 30px;
}

.contact-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.summary-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 10px 24px rgba(18, 31, 27, 0.04);
}

.summary-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.summary-card a,
.summary-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.6;
}

.contact-guidance {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.76);
}

.contact-guidance h3 {
  margin: 0 0 14px;
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  font-size: 1.2rem;
  line-height: 1.32;
}

.contact-guidance ul {
  margin: 0;
  padding-left: 1.1rem;
}

.contact-guidance li {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.82;
}

.contact-guidance li + li {
  margin-top: 8px;
}

.status-pill {
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(23, 52, 45, 0.08);
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 700;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 330px;
  max-height: 520px;
  margin-top: 24px;
  overflow: auto;
}

.message {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.message.user {
  flex-direction: row-reverse;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(23, 52, 45, 0.11);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
}

.message.user .avatar {
  background: rgba(180, 129, 69, 0.16);
  color: var(--accent);
}

.bubble {
  max-width: min(88%, 560px);
  padding: 16px 18px;
  border-radius: 22px;
  background: #fffdfa;
  border: 1px solid rgba(23, 52, 45, 0.08);
  box-shadow: 0 10px 24px rgba(18, 31, 27, 0.06);
  line-height: 1.75;
  white-space: pre-line;
}

.message.user .bubble {
  background: var(--primary);
  color: #f8f3eb;
  border-color: transparent;
}

.quick-asks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quick-chip {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(23, 52, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.85);
  color: var(--primary);
  cursor: pointer;
}

.chat-form {
  margin-top: 18px;
}

.chat-form textarea,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 52, 45, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.96);
  color: var(--ink);
}

.chat-form textarea {
  min-height: 110px;
  padding: 16px 18px;
  resize: vertical;
  line-height: 1.6;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label > span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  padding: 0 14px;
}

.lead-form textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
  line-height: 1.6;
}

.chat-form textarea:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(180, 129, 69, 0.24);
  border-color: rgba(180, 129, 69, 0.42);
}

.lead-card {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(248, 238, 224, 0.94));
}

.lead-card.is-emphasized {
  border-color: rgba(180, 129, 69, 0.45);
  box-shadow:
    0 24px 70px rgba(18, 31, 27, 0.12),
    0 0 0 6px rgba(180, 129, 69, 0.12);
  animation: leadCardPulse 1.05s ease;
}

@keyframes leadCardPulse {
  0% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

.lead-recommendation {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(180, 129, 69, 0.2);
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.92), rgba(244, 233, 215, 0.84));
}

.lead-recommendation[hidden] {
  display: none;
}

.lead-recommendation strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
}

.lead-recommendation p {
  margin: 0;
  line-height: 1.75;
}

.lead-recommendation span {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(23, 52, 45, 0.08);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.checkbox-row span {
  font-weight: 500;
  color: var(--ink-soft);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--primary);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 24px 0 8px;
  color: var(--ink-soft);
}

.page-shell-profile {
  width: min(calc(100% - 56px), 1280px);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 48px;
  margin-top: 42px;
  padding: 20px 0 34px;
  border-bottom: 1px solid var(--line);
}

.profile-photo-wrap {
  position: relative;
}

.profile-photo-frame {
  padding: 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(239, 232, 220, 0.86));
  border: 1px solid rgba(23, 52, 45, 0.08);
  box-shadow: var(--shadow);
}

.profile-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 14%;
  border-radius: 22px;
}

.profile-intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
}

.profile-kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-intro h1,
.profile-section h2,
.experience-group h3 {
  font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
  color: var(--ink);
}

.profile-intro h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.profile-title {
  margin: 14px 0 0;
  color: var(--primary);
  font-size: 1.02rem;
  font-weight: 600;
}

.profile-summary {
  max-width: 70ch;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.92;
}

html[lang="zh-CN"] .profile-summary {
  text-align: justify;
  text-justify: inter-ideograph;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.profile-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(23, 52, 45, 0.12);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.68);
  color: var(--primary);
  font-size: 0.86rem;
}

.profile-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 24px;
  margin: 28px 0 0;
}

.profile-meta div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.profile-meta dt {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-meta dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 54px;
  margin-top: 40px;
}

.profile-main {
  min-width: 0;
}

.profile-section + .profile-section {
  margin-top: 56px;
}

.profile-section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.prose-block {
  margin-top: 24px;
}

.prose-block p,
.experience-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.9;
}

.prose-block p + p,
.experience-group + .experience-group {
  margin-top: 18px;
}

.experience-group {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.experience-group:first-of-type {
  margin-top: 26px;
}

.experience-group h3 {
  margin: 0 0 16px;
  font-size: 1.24rem;
  line-height: 1.3;
}

.experience-list,
.stack-list {
  margin: 0;
  padding-left: 1.15rem;
}

.experience-list li,
.stack-list li {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.82;
}

.experience-list li + li,
.stack-list li + li {
  margin-top: 10px;
}

.experience-note {
  margin-top: 16px;
}

.profile-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.side-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.82);
  box-shadow: 0 18px 44px rgba(20, 28, 25, 0.08);
}

.profile-section.is-targeted,
.side-panel.is-targeted,
.section.is-targeted,
.profile-hero.is-targeted {
  animation: sectionFocusGlow 720ms ease;
}

@keyframes sectionFocusGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(180, 129, 69, 0);
  }
  35% {
    box-shadow: 0 0 0 12px rgba(180, 129, 69, 0.12);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(180, 129, 69, 0);
  }
}

.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;
}

.js-enhanced .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-enhanced .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html[lang="en"] .profile-summary,
html[lang="en"] .prose-block p,
html[lang="en"] .experience-note,
html[lang="en"] .experience-list li,
html[lang="en"] .stack-list li,
html[lang="en"] .contact-guidance li,
html[lang="en"] .chat-header p,
html[lang="en"] .site-footer p {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
}

html[lang="en"] .profile-summary {
  width: 100%;
  max-width: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-nav a,
  .brand-phone-icon,
  .header-cta,
  .button,
  .summary-card,
  .side-panel,
  .experience-group,
  .js-enhanced .reveal {
    transition: none;
    animation: none;
  }

  .site-nav a::before,
  .site-nav a::after,
  .brand-phone-icon::before,
  .brand-phone-icon::after,
  .header-cta::before,
  .header-cta::after,
  .button::before,
  .button::after {
    display: none;
  }
}

@media (max-width: 1120px) {
  .page-shell {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .page-shell-profile {
    width: min(calc(100% - 32px), 1280px);
  }

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

  .hero-visual,
  .about-grid,
  .service-grid,
  .package-grid,
  .guide-grid,
  .case-grid,
  .trust-strip,
  .assessment-grid,
  .consult-grid {
    grid-template-columns: 1fr 1fr;
  }

  .profile-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-visual,
  .assessment-grid {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    position: sticky;
    top: 12px;
    gap: 10px 12px;
    padding: 12px 14px;
    border-radius: 24px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand {
    width: auto;
    display: flex;
    align-items: center;
    min-width: 0;
  }

  .brand-link {
    min-width: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 19px;
    flex-shrink: 0;
  }

  .brand-text {
    min-width: 0;
    flex: 1;
  }

  .brand-text strong {
    font-size: 0.96rem;
    line-height: 1.08;
  }

  .brand-text small {
    display: block;
    font-size: 0.74rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .brand-role {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-phone-icon {
    display: none;
  }

  .site-header > .header-cta,
  header .header-cta {
    display: none;
    width: 0;
    min-width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    margin: 0;
  }

  .site-nav {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px 14px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .site-nav a {
    font-size: 0.88rem;
    flex: 0 0 auto;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  html[lang="en"] .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px;
    overflow: visible;
    white-space: normal;
  }

  html[lang="en"] .site-nav a {
    min-width: 0;
    justify-content: center;
    text-align: center;
    flex: initial;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-left: 0;
  }

  .lang-switch {
    padding: 4px;
  }

  .lang-link {
    min-width: 50px;
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .header-actions .header-cta {
    display: inline-flex;
    width: auto;
    min-width: 0;
    height: auto;
    overflow: visible;
    margin: 0;
    padding: 0 12px;
    min-height: 32px;
    border: 0;
    font-size: 0.78rem;
    box-shadow: 0 8px 18px rgba(23, 52, 45, 0.14);
  }

  .hero,
  .trust-strip,
  .about-grid,
  .service-grid,
  .package-grid,
  .guide-grid,
  .case-grid,
  .assessment-grid,
  .scenario-grid,
  .consult-grid {
    grid-template-columns: 1fr;
  }

  .profile-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
    padding-bottom: 18px;
  }

  .profile-intro {
    order: 1;
    justify-content: flex-start;
  }

  .profile-photo-wrap {
    order: 2;
    width: min(100%, 264px);
    max-width: 264px;
    margin: 0 auto;
  }

  .profile-photo-frame {
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: transparent;
    box-shadow: none;
  }

  .profile-photo {
    border-radius: 20px;
  }

  .profile-kicker {
    display: none;
  }

  .profile-title {
    margin-top: 8px;
  }

  .profile-tags {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
    gap: 8px;
    margin-top: 12px;
  }

  .profile-tags span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.8rem;
    justify-self: start;
  }

  .profile-summary {
    order: 4;
    margin-top: 14px;
    max-width: none;
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.68;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .profile-meta {
    order: 5;
    margin-top: 18px;
  }

  .hero {
    padding: 30px 28px;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 0;
  }

  .portrait-frame {
    width: 100%;
  }

  .portrait-art {
    aspect-ratio: auto;
    min-height: 560px;
  }

  .section-heading h2 {
    max-width: none;
  }

  .section-heading-about {
    margin-bottom: 28px;
  }

  .section-heading-about h2 {
    max-width: none;
    font-size: 2.8rem;
    line-height: 1.14;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .site-footer,
  .chat-header {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header {
    display: block;
    padding: 8px 10px;
    position: sticky;
    top: 8px;
    z-index: 20;
  }

  .page-shell-profile {
    width: min(calc(100% - 20px), 1280px);
  }

  html[lang="zh-CN"] .brand {
    width: auto;
    display: flex;
    align-items: center;
    min-width: 0;
    padding-right: 122px;
  }

  html[lang="zh-CN"] .brand-link {
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 0;
  }

  html[lang="zh-CN"] .brand-mark {
    display: none !important;
  }

  html[lang="zh-CN"] .brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    flex: 1;
  }

  html[lang="zh-CN"] .brand-text strong {
    font-size: 0.98rem;
    line-height: 1.06;
    flex: initial;
  }

  html[lang="zh-CN"] .brand-text small {
    display: block;
    min-width: 0;
    font-size: 0.64rem;
    line-height: 1.12;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: initial;
  }

  html[lang="zh-CN"] .brand-meta-line {
    display: block;
  }

  html[lang="zh-CN"] .brand-role {
    display: inline;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  html[lang="zh-CN"] .brand-title::before {
    content: " ";
  }

  .brand-phone-icon {
    display: none;
  }

  .brand-phone-icon svg {
    display: none;
  }

  .site-header > .header-cta,
  header .header-cta {
    display: none;
    width: 0;
    min-width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    margin: 0;
  }

  .header-cta,
  .button,
  .quick-chip {
    justify-content: center;
  }

  .site-nav {
    margin-top: 10px;
    gap: 6px 12px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .site-nav a {
    font-size: 0.78rem;
    flex: 0 0 auto;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  html[lang="zh-CN"] .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    white-space: normal;
  }

  html[lang="zh-CN"] .site-nav a {
    min-width: 0;
    justify-content: center;
    text-align: center;
    flex: initial;
    font-size: 0.72rem;
  }

  html[lang="en"] .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    white-space: normal;
  }

  html[lang="en"] .site-nav a {
    min-width: 0;
    justify-content: center;
    text-align: center;
    flex: initial;
    font-size: 0.72rem;
  }

  .header-actions {
    position: absolute;
    top: 8px;
    right: 10px;
    width: auto;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin-left: 0;
    z-index: 1;
  }

  .lang-switch {
    padding: 4px;
  }

  html[lang="zh-CN"] .lang-link {
    min-width: 42px;
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .lang-link {
    min-width: 42px;
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  html[lang="zh-CN"] .header-actions .header-cta {
    padding: 0 8px;
    min-height: 28px;
    font-size: 0.68rem;
  }

  .header-actions .header-cta {
    display: inline-flex;
    width: auto;
    min-width: 0;
    height: auto;
    overflow: visible;
    margin: 0;
    padding: 0 9px;
    min-height: 28px;
    border: 0;
    font-size: 0.68rem;
    box-shadow: 0 8px 18px rgba(23, 52, 45, 0.14);
  }

  .hero h1,
  .section-heading h2 {
    font-size: 2rem;
  }

  .profile-hero {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    gap: 12px;
    padding-bottom: 14px;
  }

  .profile-intro {
    order: 2;
    justify-content: flex-start;
  }

  .profile-photo-wrap {
    order: 1;
    width: min(100%, 198px);
    max-width: 198px;
    margin: 2px auto 2px;
  }

  .profile-photo-frame {
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
  }

  .profile-photo {
    border-radius: 16px;
  }

  .profile-tags {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .profile-tags span {
    width: 100%;
    min-height: 32px;
    justify-content: center;
    padding: 0 8px;
    font-size: 0.74rem;
    text-align: center;
  }

  .profile-intro h1 {
    font-size: 1.72rem;
  }

  .profile-title {
    margin-top: 6px;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .profile-summary,
  .prose-block p,
  .experience-note,
  .experience-list li,
  .stack-list li {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .profile-summary {
    display: block;
    overflow: visible;
    -webkit-box-orient: initial;
    -webkit-line-clamp: unset;
  }

  .profile-meta {
    display: none;
  }

  .profile-section h2 {
    font-size: 1.72rem;
    line-height: 1.22;
  }

  .experience-group h3 {
    font-size: 1.2rem;
  }

  .side-panel {
    padding: 20px;
  }

  .contact-overview {
    padding: 22px;
  }

  .contact-summary-grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    padding: 18px;
  }

  .contact-guidance {
    padding: 18px 20px;
  }

  .hero {
    padding: 22px;
    border-radius: 30px;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.88;
  }

  .hero h1 {
    font-size: 1.72rem;
    line-height: 1.24;
  }

  .domain-note {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .site-nav {
    gap: 10px 14px;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .portrait-frame {
    padding: 12px;
    border-radius: 26px;
  }

  .portrait-art {
    min-height: 430px;
    border-radius: 20px;
  }

  .portrait-image {
    object-position: center 14%;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: 1.68rem;
    line-height: 1.24;
  }

  .section-about {
    padding-top: 42px;
  }

  .section-heading-about {
    margin-bottom: 24px;
  }

  .section-heading-about h2 {
    font-size: 2.2rem;
    line-height: 1.12;
    letter-spacing: -0.05em;
  }

  .about-card,
  .service-card,
  .case-card,
  .package-card,
  .guide-card,
  .chat-panel,
  .side-card,
  .assessment-panel,
  .scenario-card,
  .trust-strip article {
    padding: 20px;
  }

  .about-card h3,
  .service-card h3,
  .case-card h3,
  .package-card h3,
  .side-card h3 {
    font-size: 1.24rem;
    line-height: 1.4;
  }

  .about-card li,
  .package-list li,
  .side-card li,
  .service-card p,
  .case-card p,
  .guide-card p,
  .assessment-lead,
  .assessment-note,
  .scenario-card p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .floating-card {
    padding: 18px;
    border-radius: 22px;
  }

  .floating-card strong {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions .button,
  .package-actions .button,
  .chat-actions .button,
  .lead-actions .button {
    width: 100%;
  }
}
