:root {
  --ink: #202522;
  --warm: #faf8f3;
  --text: #2d302d;
  --muted: #6f6d66;
  --line: #ede5d8;
  --gold: #f5aa22;
  --gold-deep: #a96f12;
  --gold-soft: #fff0d4;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(42, 35, 24, 0.08);
  --radius: 8px;
  --header-height: 75px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: "Noto Sans TC", "Hiragino Sans", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  color: var(--text);
  background: var(--warm);
  line-height: 1.82;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-break: strict;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
}

h1,
h2,
h3,
.page-title,
.lead {
  text-wrap: balance;
}

.keep {
  display: inline-block;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 26px);
}

.featured-article:target,
.news-card:target,
.article-more-card:target,
.faq-item:target,
.qa-section:target {
  border-color: rgba(169, 111, 18, 0.4);
  box-shadow: 0 18px 48px rgba(42, 35, 24, 0.12);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(231, 225, 214, 0.78);
  background: rgba(247, 245, 239, 0.88);
  box-shadow: 0 10px 28px rgba(42, 35, 24, 0.06);
  backdrop-filter: blur(22px);
}

.nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
}

.brand-lockup {
  gap: 12px;
  color: #344842;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169, 111, 18, 0.2);
  border-radius: 50%;
  background: #fff0d4;
  box-shadow: 0 8px 20px rgba(42, 35, 24, 0.07);
}

.brand-symbol img {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-left,
.brand-right {
  display: grid;
  line-height: 1.1;
}

.brand-cn {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.35em;
}

.brand-en {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5em;
}

.brand-divider {
  width: 1px;
  height: 48px;
  background: rgba(52, 72, 66, 0.56);
}

.brand-right {
  gap: 9px;
  color: rgba(52, 72, 66, 0.76);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 2px solid rgba(201, 118, 8, 0.72);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: radial-gradient(circle at 68% 72%, var(--gold) 0 13%, transparent 14%), var(--gold);
  box-shadow: inset 0 0 0 7px rgba(201, 118, 8, 0.18);
}

.brand small {
  display: block;
  margin-top: -5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: rgba(45, 48, 45, 0.7);
}

.nav-links a {
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 38px;
  padding: 9px 20px;
  border: 1px solid rgba(169, 111, 18, 0.22);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 240, 212, 0.62);
  line-height: 1;
  white-space: nowrap;
}

.nav-action::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .menu-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  padding: 116px 24px;
}

.section.compact {
  padding: 72px 24px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.page-title {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0.015em;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.01em;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
}

.lead {
  max-width: 720px;
  color: rgba(45, 48, 45, 0.68);
  font-size: 18px;
  line-height: 1.9;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(42, 35, 24, 0.12);
}

.btn.secondary {
  border-color: rgba(201, 118, 8, 0.28);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.btn.gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(169, 111, 18, 0.16);
}

.hero {
  min-height: calc(100vh - 78px);
  padding: 76px 24px 34px;
  display: grid;
  align-items: center;
}

.hero-inner {
  position: relative;
  max-width: 1240px;
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 240, 200, 0.7));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.98) brightness(1.04) sepia(0.035);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.96) 0%, rgba(255, 250, 240, 0.84) 42%, rgba(255, 240, 200, 0.2) 78%),
    linear-gradient(180deg, rgba(36, 67, 58, 0.05), rgba(245, 170, 34, 0.08));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 82px 0 82px 56px;
}

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

.scroll-note {
  position: absolute;
  left: 56px;
  bottom: 28px;
  z-index: 1;
  color: rgba(43, 43, 43, 0.52);
  font-size: 13px;
}

.hero-brand-card {
  position: absolute;
  right: 44px;
  bottom: 44px;
  z-index: 1;
  width: min(360px, 34vw);
  padding: 28px;
  border: 1px solid rgba(201, 118, 8, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-brand-card img {
  max-height: 170px;
  object-fit: contain;
}

.hero-brand-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.shin-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 24px 76px;
  background:
    radial-gradient(circle at 82% 16%, rgba(245, 170, 34, 0.12), transparent 30%),
    linear-gradient(180deg, #faf8f2 0%, var(--warm) 100%);
}

.startup-hero {
  padding-top: 82px;
  background:
    linear-gradient(135deg, #faf8f2 0%, #f2eadc 54%, #f8f6f0 100%);
}

.shin-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 42px solid rgba(245, 170, 34, 0.08);
  border-radius: 50%;
}

.shin-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 58px;
  align-items: center;
}

.shin-hero-copy h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.shin-hero-panel {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(201, 118, 8, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.shin-hero-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(245, 170, 34, 0.24);
  border-radius: 8px;
  pointer-events: none;
}

.shin-hero-panel img {
  position: relative;
  z-index: 1;
  max-height: 430px;
  object-fit: contain;
}

.dashboard-mock {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(169, 111, 18, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.dashboard-mock::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(245, 170, 34, 0.14);
  border-radius: 10px;
  pointer-events: none;
}

.dash-top,
.dash-status,
.dash-list,
.dash-note {
  position: relative;
  z-index: 1;
}

.dash-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0 24px;
}

.dash-top img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

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

.dash-top strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.dash-top span {
  color: var(--muted);
  font-size: 13px;
}

.dash-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dash-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 18px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.dash-status div {
  padding: 16px;
  border-radius: 8px;
  background: #f6efe1;
}

.dash-status span,
.dash-status strong {
  display: block;
}

.dash-status span {
  color: var(--muted);
  font-size: 12px;
}

.dash-status strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.dash-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.dash-list div {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.dash-list i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.dash-list span {
  color: var(--ink);
  font-weight: 500;
}

.dash-list b {
  color: var(--gold-deep);
  font-size: 12px;
}

.dash-note {
  margin-top: 18px;
  padding: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.dash-note strong,
.dash-note span {
  display: block;
}

.dash-note span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.founder-hero {
  min-height: calc(100vh - 85px);
  padding: 86px 24px 72px;
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 0.98) 0%, rgba(250, 248, 243, 0.9) 35%, rgba(250, 248, 243, 0.56) 58%, rgba(250, 248, 243, 0.08) 100%),
    linear-gradient(180deg, rgba(248, 247, 244, 0.62) 0%, rgba(248, 247, 244, 0.16) 58%, rgba(36, 67, 58, 0.12) 100%),
    url("../images/yuqun-hero-lineart-office.png") center right / cover no-repeat;
}

.founder-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(250, 248, 243, 0.52) 0%, rgba(250, 248, 243, 0.14) 52%, transparent 82%);
}

.founder-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  width: auto;
  height: 70px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(250, 248, 243, 0), var(--warm) 88%);
  pointer-events: none;
}

.founder-hero .shin-hero-grid {
  min-height: 600px;
  grid-template-columns: minmax(0, 650px);
  justify-content: start;
}

.founder-hero .shin-hero-copy {
  padding: 42px 0;
}

.founder-hero .lead {
  color: rgba(32, 37, 34, 0.72);
}

.hero-office {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(169, 111, 18, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 54px rgba(42, 35, 24, 0.1);
  backdrop-filter: blur(14px);
}

.office-photo-frame {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  border: 1px solid rgba(231, 225, 214, 0.9);
  border-radius: 12px;
  background: var(--ink);
}

.office-photo-frame img {
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.98) brightness(1.05) sepia(0.035);
}

.office-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(36, 67, 58, 0.58) 0%, rgba(36, 67, 58, 0.12) 42%, rgba(248, 247, 244, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(36, 67, 58, 0.18));
}

.office-photo-frame::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 9px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mix-blend-mode: screen;
  pointer-events: none;
}

.office-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 112px;
  z-index: 2;
  max-width: 420px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  background: rgba(32, 37, 34, 0.72);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.office-caption span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.office-caption strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}

.office-caption p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.75;
}

.office-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}

.office-proof-grid div {
  padding: 16px;
  background: rgba(255, 253, 248, 0.86);
}

.office-proof-grid span,
.office-proof-grid small {
  display: block;
}

.office-proof-grid span {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}

.office-proof-grid small {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-assistant {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(169, 111, 18, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(42, 35, 24, 0.08);
}

.assistant-top,
.widget-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.assistant-top img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.assistant-top strong,
.assistant-top span,
.widget-head strong,
.widget-head span {
  display: block;
}

.assistant-top strong,
.widget-head strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
}

.assistant-top span,
.widget-head span {
  color: var(--muted);
  font-size: 13px;
}

.assistant-overview {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  margin: 22px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf8;
}

.assistant-illustration {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.assistant-overview span,
.assistant-overview strong,
.assistant-overview p {
  display: block;
}

.assistant-overview span {
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.assistant-overview strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 500;
}

.assistant-overview p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.assistant-progress {
  display: grid;
  gap: 10px;
}

.assistant-progress div {
  display: grid;
  grid-template-columns: 42px 128px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.assistant-progress span,
.assistant-progress strong,
.assistant-progress small {
  display: block;
}

.assistant-progress span {
  padding-top: 2px;
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.assistant-progress strong {
  color: var(--ink);
  font-size: 16px;
}

.assistant-progress small {
  color: var(--muted);
  line-height: 1.5;
}

.assistant-note {
  margin-top: 18px;
  padding: 20px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
}

.assistant-note strong {
  display: block;
}

.assistant-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.mark-badge {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(31, 24, 12, 0.14);
}

.hero-panel-note {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  padding: 22px;
  border-radius: var(--radius);
  background: #171717;
  color: var(--white);
}

.hero-panel-note strong,
.hero-panel-note span {
  display: block;
}

.hero-panel-note span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 14px;
  color: rgba(32, 37, 34, 0.74);
  font-size: 14px;
  font-weight: 400;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-deep);
}

.trust-list .trust-label {
  padding-left: 0;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.trust-list .trust-label::before {
  display: none;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(31, 24, 12, 0.07);
}

.highlight-strip div {
  padding: 32px;
  border-right: 1px solid var(--line);
}

.highlight-strip div:last-child {
  border-right: 0;
}

.highlight-strip strong {
  display: block;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.highlight-strip span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.guide-section,
.problem-section,
.resources-showcase {
  background: #fffdf8;
}

.first-after-hero {
  padding-top: 72px;
}

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

.founder-path {
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 20px;
  min-height: 0;
  padding: 26px;
  border: 1px solid rgba(169, 111, 18, 0.13);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.founder-path:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.path-geo {
  position: relative;
  grid-row: 1 / span 3;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(169, 111, 18, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(245, 170, 34, 0.12), rgba(36, 67, 58, 0.06)),
    #fff8e8;
  overflow: hidden;
}

.path-geo::before,
.path-geo::after,
.path-geo i,
.path-geo b {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.path-geo::before {
  left: 12px;
  top: 12px;
  width: 26px;
  height: 26px;
  border: 2px solid #24433a;
}

.path-geo::after {
  right: 10px;
  bottom: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
}

.path-geo i {
  left: 18px;
  bottom: 17px;
  width: 22px;
  height: 2px;
  background: #24433a;
}

.path-geo b {
  display: none;
}

.path-geo-company::before {
  border-radius: 5px;
}

.path-geo-invoice::before {
  width: 24px;
  height: 32px;
  border-radius: 4px;
  transform: rotate(-3deg);
}

.path-geo-invoice i {
  left: 20px;
  top: 25px;
  width: 18px;
  background: var(--gold);
  box-shadow: 0 8px 0 var(--gold);
}

.path-geo-bookkeeping::before {
  border-radius: 50%;
}

.path-geo-bookkeeping i {
  left: 28px;
  top: 15px;
  width: 2px;
  height: 28px;
  background: #24433a;
}

.path-geo-brand::before {
  border-radius: 50%;
}

.path-geo-brand::after {
  right: 12px;
  bottom: 12px;
  border-radius: 3px;
  transform: rotate(45deg);
}

.path-geo-brand i {
  left: 20px;
  top: 20px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(36, 67, 58, 0.34);
  border-radius: 50%;
  background: transparent;
}

.founder-path span,
.service-kicker,
.tool-library-card span {
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-path strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 500;
}

.founder-path p {
  margin: 12px 0 0;
  color: var(--muted);
}

.tool-hero-section {
  background: linear-gradient(180deg, var(--warm), #fffdf8);
}

.tool-hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.invoice-widget {
  padding: 28px;
  border: 1px solid rgba(169, 111, 18, 0.18);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.widget-head img {
  width: 92px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
}

.widget-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.widget-grid label {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf8;
  color: var(--ink);
  font-weight: 500;
}

.widget-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.widget-result,
.tool-note {
  margin-top: 18px;
  padding: 20px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
}

.widget-result p,
.tool-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  column-gap: 18px;
  align-content: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
}

.problem-card img {
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 62px;
  height: 62px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff8e8;
}

.problem-card span,
.problem-card h3,
.problem-card p {
  grid-column: 2;
}

.problem-card span {
  display: inline-grid;
  width: fit-content;
  height: auto;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 0;
  background: transparent;
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.problem-card h3 {
  margin-bottom: 10px;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
}

.service-suite {
  display: grid;
  gap: 22px;
}

.service-suite-card,
.service-suite-mini {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
}

.service-suite-main {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 0;
  overflow: hidden;
}

.service-suite-media {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(245, 170, 34, 0.14), rgba(36, 67, 58, 0.08)),
    #fffdf8;
  border-right: 1px solid var(--line);
}

.service-suite-media img {
  width: min(100%, 210px);
  max-height: 190px;
  object-fit: contain;
}

.service-suite-content {
  display: grid;
  align-content: center;
  padding: 42px;
}

.service-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-suite-content p,
.service-suite-mini p {
  color: var(--muted);
}

.service-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.service-points div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

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

.service-points strong {
  color: var(--ink);
  font-weight: 500;
}

.service-points span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--gold-deep);
  font-weight: 500;
  text-decoration: none;
}

.service-link::after {
  content: "→";
  margin-left: 8px;
}

.service-suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-suite-mini {
  display: grid;
  align-content: start;
  padding: 30px;
}

.service-suite-mini img {
  width: 100%;
  height: 150px;
  margin-bottom: 24px;
  border-radius: 8px;
  object-fit: contain;
  background: #fffdf8;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 24px;
  list-style: none;
}

.service-tags li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.coverage-section {
  background: #fffdf8;
}

.coverage-board {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 42px;
  align-items: center;
}

.coverage-copy h2 {
  color: var(--ink);
}

.coverage-copy p {
  color: var(--muted);
}

.coverage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.coverage-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(42, 35, 24, 0.08);
}

.coverage-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0 42px;
  border-bottom: 3px solid #24433a;
}

.coverage-tabs span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border-radius: 8px 8px 0 0;
  background: #24433a;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}

.coverage-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 28px;
  padding: 26px 42px;
  border-bottom: 1px solid var(--line);
}

.coverage-row:last-child {
  border-bottom: 0;
}

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

.coverage-row strong {
  color: var(--gold-deep);
  font-size: 22px;
  font-weight: 500;
}

.coverage-row span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.coverage-row p {
  margin: 0;
  color: var(--muted);
}

.coverage-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 34px rgba(24, 42, 35, 0.08);
}

.coverage-strip div {
  padding: 30px;
  background: #24433a;
}

.coverage-strip strong,
.coverage-strip span {
  display: block;
}

.coverage-strip strong {
  color: var(--gold);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.coverage-strip span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.founder-consult-section {
  background: #fffdf8;
}

.founder-consult-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

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

.consult-question {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 26px rgba(42, 35, 24, 0.04);
}

.consult-question span {
  grid-row: span 2;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.consult-question strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.consult-question p {
  margin: 0;
  color: var(--muted);
}

.prep-section {
  background: linear-gradient(180deg, #fffdf8, var(--warm));
}

.prep-check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.prep-check-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
}

.prep-check-card img {
  width: 108px;
  height: 86px;
  margin-bottom: 20px;
  object-fit: contain;
}

.prep-check-card span {
  display: block;
  color: var(--ink);
  font-size: 21px;
  font-weight: 500;
}

.prep-check-card .list {
  margin-top: 18px;
}

.heritage-home {
  background: linear-gradient(180deg, #fffdf8, var(--warm));
}

.heritage-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 36px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 170, 34, 0.16), transparent 40%),
    #24433a;
  box-shadow: 0 18px 48px rgba(24, 42, 35, 0.16);
}

.heritage-band h2 {
  color: var(--white);
}

.heritage-band .eyebrow {
  color: var(--gold);
}

.heritage-band p {
  color: rgba(255, 255, 255, 0.78);
}

.heritage-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-self: end;
  max-width: 430px;
  gap: 8px;
}

.heritage-points div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.heritage-points strong,
.heritage-points span {
  display: block;
}

.heritage-points strong {
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

.heritage-points span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.proof-section {
  background: #fffdf8;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(169, 111, 18, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 232, 0.72)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(42, 35, 24, 0.08);
}

.proof-media {
  position: relative;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
}

.proof-media::before {
  display: none;
}

.proof-media::after {
  display: none;
}

.office-gallery {
  display: grid;
  gap: 14px;
}

.office-gallery-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 10px;
  background: var(--ink);
  box-shadow: 0 22px 58px rgba(42, 35, 24, 0.16);
}

.office-gallery-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(36, 67, 58, 0.2), rgba(36, 67, 58, 0.02) 58%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.04), rgba(32, 37, 34, 0.14));
  pointer-events: none;
}

.office-gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  filter: saturate(0.86) contrast(0.98) brightness(1.06) sepia(0.035);
  transition: opacity 0.5s ease, transform 1.6s ease;
}

.office-gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.office-gallery-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  width: auto;
  max-width: min(210px, calc(100% - 32px));
  padding: 9px 13px 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-left: 3px solid rgba(245, 170, 34, 0.82);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.54);
  box-shadow: 0 10px 22px rgba(42, 35, 24, 0.08);
  backdrop-filter: blur(10px);
}

.office-gallery-caption span,
.office-gallery-caption strong {
  display: block;
}

.office-gallery-caption span {
  display: none;
}

.office-gallery-caption strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.office-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.office-gallery-thumbs button {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.office-gallery-thumbs button.is-active {
  border-color: rgba(169, 111, 18, 0.42);
  background: var(--gold-soft);
  color: var(--ink);
}

.office-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.98) brightness(1.05) sepia(0.03);
}

.office-gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 2px 2px 0;
}

.office-gallery-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  padding: 9px 14px 9px 9px;
  border: 1px solid rgba(169, 111, 18, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
}

.proof-badge img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.proof-badge span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.proof-list {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.proof-list div {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

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

.proof-list strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.proof-list span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.price-preview {
  background: linear-gradient(180deg, #fffdf8, var(--warm));
}

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

.category-grid a {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(169, 111, 18, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-grid a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--ink);
  font-weight: 500;
}

.category-grid strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
}

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

.media-story-section {
  background: #fffdf8;
}

.media-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.media-story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
}

.media-story-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-story-card div {
  padding: 26px;
}

.media-story-card span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-weight: 500;
}

.media-story-card p {
  color: var(--muted);
}

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

.workflow-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
}

.workflow-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--gold);
  font-weight: 500;
}

.workflow-card p {
  color: var(--muted);
}

.compare-section {
  background: #fffdf8;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
}

.compare-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row > * {
  margin: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.compare-row > *:last-child {
  border-right: 0;
}

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

.compare-row p {
  color: var(--muted);
}

.compare-head {
  background: #171717;
}

.compare-head span {
  color: rgba(255, 255, 255, 0.72);
}

.compare-head strong {
  color: var(--white);
}

.center-head {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.center-head .lead {
  margin-left: auto;
  margin-right: auto;
}

.service-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-tile {
  min-height: 320px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-tile p,
.detail-column p,
.content-card p,
.tool-card p,
.price-card p {
  color: var(--muted);
}

.service-tile > span {
  display: inline-grid;
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  place-items: center;
  border: 2px solid rgba(201, 118, 8, 0.25);
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 24px;
  font-weight: 500;
}

.service-tile a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold-deep);
  font-weight: 500;
}

.service-detail-home {
  background: #fffdf8;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.detail-column {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
}

.detail-column p {
  color: var(--muted);
}

.lifecycle-section {
  background: linear-gradient(180deg, var(--warm), #fffdf8);
}

.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lifecycle-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
}

.lifecycle-card > span {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-feature {
  background: #fffdf8;
}

.image-feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.value-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.value-grid strong {
  display: block;
  color: var(--ink);
}

.value-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.golden-band {
  background: linear-gradient(135deg, #171717 0%, #2b2110 54%, var(--gold) 180%);
  color: rgba(255, 255, 255, 0.74);
}

.golden-band h2,
.golden-band h3 {
  color: var(--white);
}

.golden-band .eyebrow {
  color: var(--gold);
}

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

.reason {
  display: grid;
  grid-template-columns: 74px 1fr;
  column-gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.reason strong {
  grid-row: span 2;
  color: var(--gold);
  font-size: 38px;
  line-height: 1;
}

.reason p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.prep-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.prep-board div {
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.prep-board strong,
.prep-board span {
  display: block;
}

.prep-board strong {
  color: var(--gold);
  font-size: 20px;
}

.prep-board span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.article-stack {
  display: grid;
  gap: 14px;
}

.article-row {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-row span {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 500;
}

.article-row strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.article-row p {
  margin: 10px 0 0;
  color: var(--muted);
}

.article-home-section {
  background:
    linear-gradient(135deg, rgba(184, 138, 99, 0.12), transparent 34%),
    #f3f0ea;
}

.article-home-board {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 34px;
  align-items: start;
  padding: 46px;
  border: 1px solid rgba(184, 138, 99, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(42, 35, 24, 0.08);
}

.article-home-label {
  position: sticky;
  top: 110px;
}

.article-home-label h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.article-home-label p {
  color: var(--muted);
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.news-card:hover h3 {
  color: var(--gold-deep);
}

.news-thumb {
  display: grid;
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 67, 58, 0.12), transparent 58%),
    #f7ead7;
}

.news-thumb img {
  width: min(74%, 210px);
  height: 74%;
  object-fit: contain;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-bottom: 22px;
}

.news-card span,
.article-tag {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 500;
}

.news-card time,
.featured-article time {
  display: block;
  margin-top: 8px;
  color: rgba(43, 43, 43, 0.44);
  font-size: 13px;
}

.news-card h3 {
  margin-top: 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
}

.news-card p {
  margin-top: 10px;
  color: var(--muted);
}

.news-source {
  margin-top: auto;
  padding-top: 16px;
  color: var(--gold-deep);
  font-weight: 500;
}

.article-page-hero {
  background:
    linear-gradient(135deg, rgba(36, 67, 58, 0.08), transparent 40%),
    var(--warm);
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.blog-filter-row a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  font-size: 14px;
}

.article-feature-section {
  background: #fffdf8;
}

.article-feature-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

.article-feature-grid-single {
  grid-template-columns: 1fr;
}

.featured-article,
.source-note,
.article-more-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
}

.featured-article {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 30px;
}

.featured-media {
  display: grid;
  min-height: 260px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 170, 34, 0.16), transparent 62%),
    #f8f2e7;
}

.featured-media img {
  width: 82%;
  max-height: 230px;
  object-fit: contain;
}

.featured-article h2 {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
}

.featured-article p,
.source-note p,
.article-more-card p {
  color: var(--muted);
}

.article-digest {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.article-digest div,
.article-mini-digest {
  padding: 16px 18px;
  border: 1px solid rgba(237, 229, 216, 0.9);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.article-digest strong,
.article-digest span,
.article-mini-digest strong,
.article-mini-digest span {
  display: block;
}

.article-digest strong,
.article-mini-digest strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.article-digest span,
.article-mini-digest span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.article-mini-digest {
  margin-top: 12px;
}

.source-line {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.source-note {
  padding: 30px;
}

.source-note h2 {
  margin-top: 8px;
}

.client-online-guide {
  margin-top: 30px;
}

.client-guide-sheet {
  overflow: hidden;
  border: 1px solid rgba(169, 111, 18, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(42, 35, 24, 0.08);
}

.client-guide-cover {
  padding: 34px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 247, 234, 0.94), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 92% 12%, rgba(245, 170, 34, 0.18), transparent 28%);
}

.client-guide-cover h2 {
  margin: 4px 0 10px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.22;
  letter-spacing: 0;
}

.client-guide-cover p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.client-guide-summary {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
  padding: 28px 34px;
  border-bottom: 1px solid rgba(237, 229, 216, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 247, 234, 0.72)),
    rgba(255, 255, 255, 0.82);
}

.client-summary-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-summary-copy h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3;
}

.client-summary-copy p:last-child {
  margin: 0;
  color: var(--muted);
}

.client-summary-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.client-summary-cards div {
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(169, 111, 18, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.04);
}

.client-summary-cards img {
  width: 74px;
  height: 64px;
  margin-bottom: 14px;
  object-fit: contain;
}

.client-summary-cards strong,
.client-summary-cards span {
  display: block;
}

.client-summary-cards strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}

.client-summary-cards span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.client-guide-section {
  padding: 28px 34px;
  border-bottom: 1px solid rgba(237, 229, 216, 0.82);
}

.client-guide-section:last-of-type {
  border-bottom: 0;
}

.client-guide-section h3 {
  margin: 0 0 10px;
  color: var(--green, #24433A);
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.35;
  letter-spacing: 0;
}

.client-guide-section p {
  margin: 0 0 12px;
  color: var(--muted);
}

.client-guide-section ul {
  margin: 0;
  padding-left: 1.25em;
  color: var(--text);
}

.client-guide-section li {
  margin: 7px 0;
}

.client-highlight {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid rgba(245, 170, 34, 0.28);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 247, 234, 0.82);
}

.client-highlight strong,
.client-highlight span {
  display: block;
}

.client-highlight strong {
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 700;
}

.client-highlight span {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}

.client-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid rgba(169, 111, 18, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.client-guide-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.65;
}

.client-guide-table th,
.client-guide-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(237, 229, 216, 0.9);
  vertical-align: top;
  text-align: left;
}

.client-guide-table th {
  color: var(--ink);
  background: rgba(255, 240, 212, 0.72);
  font-weight: 600;
  white-space: nowrap;
}

.client-guide-table tr:last-child td {
  border-bottom: 0;
}

.client-guide-table td:first-child {
  width: 18%;
  color: var(--gold-deep);
  font-weight: 600;
  white-space: nowrap;
}

.client-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.client-check-grid div {
  padding: 16px;
  border: 1px solid rgba(169, 111, 18, 0.16);
  border-radius: var(--radius);
  background: rgba(250, 248, 243, 0.76);
}

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

.client-check-grid strong {
  margin-bottom: 5px;
  color: var(--ink);
}

.client-check-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.client-entrance-figure {
  margin: 20px 0 0;
  padding: 16px;
  border: 1px solid rgba(169, 111, 18, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.client-entrance-figure img {
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(169, 111, 18, 0.12);
}

.client-entrance-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.client-guide-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  padding-left: 0 !important;
  list-style: none;
}

.client-guide-links a {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(169, 111, 18, 0.16);
  border-radius: var(--radius);
  background: rgba(250, 248, 243, 0.76);
  color: var(--ink);
  font-size: 14px;
}

.client-guide-footer {
  display: grid;
  gap: 4px;
  padding: 24px 34px;
  background: rgba(36, 67, 58, 0.96);
  color: #fff8ec;
}

.client-guide-footer span {
  color: rgba(255, 248, 236, 0.76);
  font-size: 14px;
}

.news-list-section {
  background: var(--warm);
}

.news-card-grid-large .news-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.04);
}

.article-more-section {
  background: #fffdf8;
}

.article-topic-section {
  background:
    linear-gradient(180deg, #fffdf8, rgba(255, 247, 234, 0.56));
}

.topic-library-grid .article-more-card {
  min-height: 250px;
}

.seo-entry-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.8), rgba(250, 248, 243, 0.98)),
    var(--warm);
}

.article-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.article-more-card {
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-more-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-more-card span {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 500;
}

.article-more-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.official-learning-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.72), rgba(250, 248, 243, 0.96)),
    var(--warm);
}

.external-resource-card {
  border-color: rgba(245, 170, 34, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 240, 212, 0.78), rgba(255, 255, 255, 0.84));
}

.external-resource-card small {
  display: inline-block;
  margin-top: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(36, 67, 58, 0.08);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.faq-home {
  background: #fffdf8;
}

.mini-faq {
  display: grid;
  gap: 8px;
}

.mini-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.mini-faq summary {
  padding: 16px 18px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  cursor: pointer;
}

.mini-faq p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.contact-home {
  background: #e5c17c;
}

.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}

.contact-home h2,
.contact-home .eyebrow {
  color: var(--ink);
}

.contact-home .lead {
  color: rgba(23, 23, 23, 0.74);
}

.contact-home-card {
  padding: 32px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(42, 35, 24, 0.08);
}

.contact-home-card strong,
.contact-home-card span {
  display: block;
}

.contact-home-card strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
}

.contact-home-card span {
  margin: 10px 0 24px;
  color: var(--muted);
}

.home-contact-info {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  color: rgba(23, 23, 23, 0.74);
  font-weight: 500;
}

.home-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(42, 35, 24, 0.08);
}

.home-form strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
}

.home-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.home-form input,
.home-form select,
.home-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--text);
  font: inherit;
}

.home-form textarea {
  min-height: 100px;
  resize: vertical;
}

.home-form p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  color: var(--ink);
  font-weight: 500;
  text-decoration-color: rgba(32, 37, 34, 0.28);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--gold-deep);
}

.line-contact-card,
.line-qr-panel {
  border: 1px solid rgba(32, 37, 34, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(42, 35, 24, 0.1);
}

.line-contact-card {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.line-contact-card img {
  width: min(100%, 260px);
  margin: 0 auto;
  border-radius: 8px;
  background: var(--white);
}

.line-contact-card strong,
.line-qr-panel strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}

.line-contact-card span,
.line-qr-panel span {
  display: block;
  margin: 10px 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.line-join-btn {
  width: 100%;
  justify-content: center;
}

.contact-action-row {
  display: grid;
  gap: 10px;
}

.phone-join-btn {
  width: 100%;
  justify-content: center;
  border-color: rgba(32, 37, 34, 0.2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat {
  padding: 42px;
  background: rgba(255, 255, 255, 0.54);
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.quick-link {
  min-height: 148px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.62);
}

.quick-link strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.quick-link span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.stat span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
  align-items: start;
}

.section-head {
  max-width: 520px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 138, 99, 0.35);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(201, 118, 8, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--white);
}

.info-band {
  background: #171717;
  color: rgba(255, 255, 255, 0.78);
}

.info-band h2,
.info-band h3 {
  color: var(--white);
}

.info-band .eyebrow,
.info-band .meta {
  color: var(--gold);
}

.info-band .lead,
.info-band p {
  color: rgba(255, 255, 255, 0.72);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 8px 13px;
  border: 1px solid rgba(201, 118, 8, 0.22);
  border-radius: 999px;
  background: rgba(245, 170, 34, 0.12);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

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

.price-card {
  padding: 30px;
  border: 1px solid rgba(201, 118, 8, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.price-card strong {
  display: block;
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.fee-note {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(201, 118, 8, 0.22);
  border-radius: 8px;
  background: rgba(255, 240, 200, 0.42);
}

.fee-note strong {
  color: var(--ink);
}

.fee-note span {
  color: var(--muted);
}

.notice-box {
  padding: 26px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 240, 200, 0.46);
}

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

.tools-home {
  background: linear-gradient(180deg, var(--warm), #fffdf8);
}

.tool-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tool-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.tool-card p {
  color: var(--muted);
}

.tool-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--gold-deep);
  font-weight: 500;
}

.resource-section {
  background: #fffdf8;
}

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

.resource-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.resource-item strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.resource-item span {
  margin-top: 8px;
  color: var(--muted);
}

.page-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.page-index a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-weight: 500;
}

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

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

.content-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.content-card p {
  color: var(--muted);
}

.wide-card {
  grid-column: 1 / -1;
}

.form-like {
  display: grid;
  gap: 14px;
}

.form-like label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 500;
}

.form-like input,
.form-like select,
.form-like textarea {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  font: inherit;
}

.form-like textarea {
  min-height: 120px;
}

.tool-page-hero {
  background:
    radial-gradient(circle at 86% 10%, rgba(245, 170, 34, 0.12), transparent 26%),
    linear-gradient(180deg, #fffdf8, var(--warm));
}

.invoice-helper-section {
  background: #fffdf8;
}

.tool-detail-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: center;
}

.invoice-example-board {
  display: grid;
  gap: 26px;
  margin-bottom: 54px;
}

.invoice-example-copy {
  max-width: 780px;
}

.invoice-example-copy h2 {
  margin-top: 8px;
}

.invoice-example-copy p:not(.eyebrow) {
  color: var(--muted);
}

.invoice-helper-layout {
  align-items: start;
  padding-top: 10px;
}

.tool-detail-intro img {
  max-width: 430px;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
}

.invoice-demo-card {
  position: relative;
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  padding: 12px;
  border: 1px solid rgba(169, 111, 18, 0.18);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(42, 35, 24, 0.09);
}

.invoice-example-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.invoice-paper {
  padding: 22px;
  border: 1px solid rgba(36, 67, 58, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(36, 67, 58, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 67, 58, 0.03) 1px, transparent 1px),
    #fffdf8;
  background-size: 28px 28px;
}

.invoice-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(36, 67, 58, 0.75);
}

.invoice-demo-head span,
.invoice-demo-row span,
.invoice-demo-total span {
  color: var(--muted);
  font-size: 13px;
}

.invoice-demo-head strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.invoice-demo-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(36, 67, 58, 0.12);
}

.invoice-demo-row b {
  color: var(--ink);
  font-weight: 500;
}

.split-row {
  grid-template-columns: 72px 1fr 72px 1fr;
}

.invoice-demo-table {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.9fr 1fr;
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid rgba(36, 67, 58, 0.16);
  border-radius: 8px;
}

.invoice-demo-table > * {
  min-height: 40px;
  padding: 9px 10px;
  border-right: 1px solid rgba(36, 67, 58, 0.12);
  border-bottom: 1px solid rgba(36, 67, 58, 0.12);
  color: var(--muted);
  font-size: 13px;
}

.invoice-demo-table > :nth-child(4n) {
  border-right: 0;
}

.invoice-demo-table > :nth-last-child(-n + 4) {
  border-bottom: 0;
}

.invoice-demo-table div {
  background: rgba(36, 67, 58, 0.08);
  color: var(--ink);
  font-weight: 500;
}

.invoice-demo-table strong {
  color: var(--ink);
  font-weight: 500;
}

.invoice-demo-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--ink);
}

.invoice-demo-total span {
  color: rgba(255, 255, 255, 0.72);
}

.invoice-demo-total strong {
  color: var(--gold);
  font-size: 22px;
  font-weight: 500;
}

.invoice-demo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.invoice-demo-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(36, 67, 58, 0.08);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.tool-check-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(169, 111, 18, 0.18);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.check-group {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf8;
}

.check-group h3 {
  margin-bottom: 18px;
}

.check-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  color: var(--text);
}

.check-group input {
  width: 18px;
  height: 18px;
  margin-top: 7px;
  accent-color: var(--gold-deep);
}

.tool-utility-section {
  background: linear-gradient(180deg, #fffdf8, var(--warm));
}

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

.utility-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(42, 35, 24, 0.06);
}

.utility-tag {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 500;
}

.utility-card h3 {
  margin: 0;
}

.utility-card p {
  margin: 0;
  color: var(--muted);
}

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

.utility-form label,
.utility-check,
.utility-check-list label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.utility-form input,
.utility-form select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--text);
  font: inherit;
}

.utility-check {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
}

.utility-check input,
.utility-check-list input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-deep);
}

.utility-check-list {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf8;
}

.utility-check-list label {
  display: flex;
  align-items: flex-start;
  font-weight: 400;
}

.utility-result {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(36, 67, 58, 0.14);
  border-radius: 10px;
  background: #fffdf8;
}

.utility-result div {
  padding: 14px;
  border-right: 1px solid rgba(36, 67, 58, 0.1);
}

.utility-result div:last-child {
  border-right: 0;
}

.utility-result span,
.utility-result strong {
  display: block;
}

.utility-result span {
  color: var(--muted);
  font-size: 12px;
}

.utility-result strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}

.utility-note {
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(36, 67, 58, 0.07);
  color: var(--ink);
  font-size: 14px;
}

.tool-library {
  background: #fffdf8;
}

.tool-library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tool-library-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
}

.tool-library-card img {
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  border-radius: 10px;
  object-fit: cover;
}

.tool-library-card h3 {
  margin-top: 8px;
}

.tool-library-card p {
  color: var(--muted);
}

.card p,
.feature p,
.article-card p,
.faq-answer {
  color: rgba(43, 43, 43, 0.68);
}

.feature-list {
  display: grid;
  gap: 24px;
}

.feature {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.feature:last-child {
  border-bottom: 0;
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-item {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.process-item::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 500;
}

.process-item h3 {
  color: var(--white);
}

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

.article-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.meta {
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
}

.cta-band {
  background: var(--ink);
  color: var(--white);
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.72);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 24px 82px;
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.page-hero.office-line-hero,
.page-hero.meeting-line-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  background: #fffdf8;
}

.page-hero.office-line-hero::before,
.page-hero.meeting-line-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.88;
  pointer-events: none;
}

.page-hero.office-line-hero::before {
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 0.96) 0%, rgba(250, 248, 243, 0.82) 42%, rgba(250, 248, 243, 0.34) 100%),
    url("../images/yuqun-office-lineart-wide.png") center right / cover no-repeat;
}

.page-hero.meeting-line-hero::before {
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 0.96) 0%, rgba(250, 248, 243, 0.78) 48%, rgba(250, 248, 243, 0.28) 100%),
    url("../images/yuqun-meeting-lineart-wide.png") center right / cover no-repeat;
}

.rich-text {
  max-width: 860px;
}

.credential-section {
  background: #fffdf8;
}

.credential-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 18px;
}

.credential-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
}

.credential-intro {
  background:
    linear-gradient(135deg, rgba(245, 170, 34, 0.18), transparent 46%),
    #24433a;
}

.credential-intro h2 {
  color: var(--white);
}

.credential-intro .eyebrow {
  color: var(--gold);
}

.credential-intro p {
  color: rgba(255, 255, 255, 0.78);
}

.credential-card > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 500;
}

.credential-card h3 {
  margin-bottom: 14px;
}

.credential-card p {
  color: var(--muted);
}

.timeline {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 0;
}

.timeline-item {
  position: relative;
  padding: 0 0 34px 34px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
}

.list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.list li {
  padding-left: 22px;
  position: relative;
  color: rgba(43, 43, 43, 0.72);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.service-detail {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 32px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 0;
}

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

.insight-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.qa-section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.qa-section-head {
  max-width: 800px;
  margin-bottom: 32px;
}

.qa-section-head h2 {
  margin-top: 8px;
}

.qa-section-head p:not(.eyebrow) {
  color: var(--muted);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
}

.faq-question span {
  flex: 1;
}

.faq-question::after {
  content: "+";
  color: var(--gold);
  font-size: 28px;
  font-weight: 400;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-answer p {
  max-width: 780px;
  padding: 0 0 28px;
}

.faq-answer p + p {
  margin-top: -14px;
}

.faq-answer .list {
  max-width: 780px;
  padding-bottom: 28px;
}

.faq-answer .list li {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.contact-panel {
  padding: 36px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.contact-logo {
  max-height: 170px;
  object-fit: contain;
  margin-bottom: 24px;
}

.contact-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item strong {
  display: block;
  color: var(--ink);
}

.line-qr-panel {
  display: grid;
  gap: 18px;
  padding: 20px;
  margin-top: 24px;
}

.line-qr-panel img {
  width: min(100%, 230px);
  margin: 0 auto;
  border-radius: 8px;
  background: var(--white);
}

.contact-direct {
  display: grid;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(36, 67, 58, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.72);
}

.contact-direct > p {
  color: var(--muted);
}

.direct-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.direct-action-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.direct-action-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.direct-action-card span,
.direct-action-card strong,
.direct-action-card p {
  display: block;
}

.direct-action-card span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-action-card strong {
  margin-top: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.direct-action-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.line-page-hero {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(255, 240, 212, 0.62)),
    var(--warm);
}

.line-page-grid,
.line-help-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 42px;
  align-items: center;
}

.line-help-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.line-rescue-card {
  padding: 26px;
  border: 1px solid rgba(169, 111, 18, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.line-rescue-card img {
  width: min(100%, 280px);
  margin: 0 auto 20px;
  border-radius: 8px;
}

.line-rescue-card span,
.line-rescue-card strong,
.line-rescue-card p {
  display: block;
  text-align: center;
}

.line-rescue-card span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.line-rescue-card strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
}

.line-rescue-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-prep,
.contact-note-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
}

.contact-prep strong,
.contact-note-box strong,
.contact-note-box span {
  display: block;
}

.contact-prep strong,
.contact-note-box strong {
  color: var(--ink);
  font-weight: 500;
}

.contact-prep p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.contact-note-box span {
  margin-top: 8px;
  color: var(--muted);
}

.map-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.05);
  color: var(--muted);
}

.map-copy {
  padding: 34px;
}

.map-copy h2 {
  margin-top: 8px;
}

.map-copy .btn {
  margin-top: 22px;
}

.map-box iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.home-entrance-section {
  background: #fffdf8;
}

.entrance-guide {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(169, 111, 18, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(42, 35, 24, 0.08);
}

.entrance-guide-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.entrance-guide-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 3.2vw, 38px);
  line-height: 1.25;
}

.entrance-guide-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.entrance-guide-meta {
  display: grid;
  gap: 5px;
  margin-top: 12px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.entrance-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.entrance-guide-actions .btn {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.entrance-guide img {
  border-radius: var(--radius);
  border: 1px solid rgba(169, 111, 18, 0.14);
  box-shadow: 0 12px 30px rgba(42, 35, 24, 0.06);
}

.form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 54px 24px;
  border-top: 1px solid var(--line);
  background: #f1efea;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(43, 43, 43, 0.62);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.line-floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  color: var(--white);
  background: #24433a;
  box-shadow: 0 16px 34px rgba(24, 42, 35, 0.24);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.line-floating span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.line-floating span svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.line-floating strong {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.line-floating:hover {
  transform: translateY(-2px);
  background: #1f3932;
  box-shadow: 0 20px 40px rgba(24, 42, 35, 0.3);
}

.phone-floating {
  bottom: 84px;
  color: var(--ink);
  background: var(--gold);
}

.phone-floating span {
  color: var(--white);
  background: #24433a;
}

.phone-floating:hover {
  background: #e99b12;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 71px;
    left: 100%;
    right: auto;
    width: 100%;
    height: calc(100vh - 71px);
    padding: 34px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    background: rgba(255, 250, 240, 0.98);
    transition: left 0.24s ease;
  }

  .nav-open .nav-links {
    left: 0;
  }

  .nav-links a {
    padding: 13px 0;
    font-size: 20px;
  }

  .nav-action {
    width: 100%;
    min-height: 52px;
    margin-top: 8px;
    padding: 14px 20px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-inner {
    min-height: 680px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(248, 247, 244, 0.96) 0%, rgba(248, 247, 244, 0.76) 54%, rgba(248, 247, 244, 0.28) 100%);
  }

  .hero-copy {
    align-self: start;
    padding: 52px 18px 0;
  }

  .scroll-note {
    left: 18px;
  }

  .stats,
  .quick-links,
  .highlight-strip,
  .heritage-band,
  .heritage-points,
  .category-grid,
  .founder-path-grid,
  .media-story-grid,
  .workflow-grid,
  .tool-hero-grid,
  .widget-grid,
  .problem-grid,
  .service-suite-main,
  .service-suite-grid,
  .service-points,
  .founder-consult-grid,
  .consult-question,
  .prep-check-grid,
  .coverage-board,
  .coverage-row,
  .coverage-strip,
  .proof-grid,
  .proof-media,
  .service-tile-grid,
  .detail-columns,
  .image-feature-grid,
  .value-grid,
  .credential-grid,
  .lifecycle-grid,
  .page-index,
  .content-grid,
  .service-grid,
  .process,
  .article-grid,
  .price-grid,
  .tool-grid,
  .tool-card-grid,
  .tool-detail-layout,
  .utility-grid,
  .tool-library-grid,
  .prep-board,
  .contact-home-grid,
  .article-home-board,
  .news-card-grid,
  .article-feature-grid,
  .featured-article,
  .article-more-grid,
  .map-box,
  .direct-action-grid,
  .line-page-grid,
  .line-help-grid,
  .split,
  .contact-grid,
  .shin-hero-grid {
    grid-template-columns: 1fr;
  }

  .heritage-points {
    justify-self: stretch;
    max-width: none;
  }

  .article-home-label {
    position: static;
  }

  .proof-media {
    max-width: 680px;
    min-height: auto;
    padding: 0;
  }

  .proof-photo-main {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .proof-photo-accent {
    right: 30px;
    bottom: 16px;
    width: min(190px, 34%);
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .proof-photo figcaption strong {
    font-size: 17px;
  }

  .dash-status {
    grid-template-columns: 1fr;
  }

  .assistant-progress {
    grid-template-columns: 1fr;
  }

  .assistant-overview {
    grid-template-columns: 120px 1fr;
  }

  .assistant-progress div {
    grid-template-columns: 42px 120px 1fr;
  }

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

  .compare-row > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .compare-row > *:last-child {
    border-bottom: 0;
  }

  .shin-hero {
    padding-top: 58px;
  }

  .founder-hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(247, 245, 239, 0.98) 0%, rgba(247, 245, 239, 0.9) 58%, rgba(247, 245, 239, 0.42) 100%),
      linear-gradient(180deg, rgba(248, 247, 244, 0.72), rgba(36, 67, 58, 0.1)),
      url("../images/yuqun-hero-lineart-office.png") center right / cover no-repeat;
  }

  .shin-hero-grid {
    min-height: auto;
  }

  .founder-hero .shin-hero-grid {
    min-height: auto;
  }

  .shin-hero-copy h1 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .shin-hero-panel {
    padding: 28px;
    border-radius: 8px;
  }

  .shin-hero-panel img {
    max-height: 280px;
  }

  .highlight-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .highlight-strip div:last-child {
    border-bottom: 0;
  }

  .category-grid a,
  .founder-path,
  .service-tile {
    min-height: auto;
  }

  .hero-brand-card {
    right: 18px;
    bottom: 24px;
    width: min(300px, calc(100% - 36px));
    padding: 20px;
  }

  .hero-brand-card img {
    max-height: 120px;
  }

  .process-item {
    min-height: 220px;
  }

  .service-suite-media {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-suite-media img {
    max-height: 220px;
  }

  .coverage-tabs {
    padding: 0 24px;
  }

  .coverage-row {
    gap: 12px;
    padding: 24px;
  }

  .office-photo-frame,
  .office-photo-frame img {
    min-height: 360px;
  }

  .office-caption {
    bottom: 98px;
  }

  .invoice-demo-card {
    max-width: 100%;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-detail,
  .insight-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .problem-card {
    grid-template-columns: 58px 1fr;
    column-gap: 14px;
  }

  .consult-question span {
    grid-row: auto;
  }

  .problem-card img {
    width: 52px;
    height: 52px;
  }

  .coverage-tabs {
    gap: 10px;
    padding: 0 18px;
  }

  .coverage-tabs span {
    min-height: 48px;
    font-size: 16px;
  }

  .nav {
    padding: 14px 18px;
  }

  .brand small {
    display: none;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand-symbol img {
    width: 26px;
    height: 26px;
  }

  .brand-cn {
    font-size: 12px;
    letter-spacing: 0.28em;
  }

  .brand-en,
  .brand-right {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .brand-divider {
    height: 38px;
  }

  .section {
    padding: 74px 18px;
  }

  .section.compact,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-hero.office-line-hero,
  .page-hero.meeting-line-hero {
    min-height: 360px;
  }

  .page-hero.office-line-hero::before,
  .page-hero.meeting-line-hero::before {
    opacity: 0.52;
    background-position: center;
  }

  .first-after-hero {
    padding-top: 58px;
  }

  h1,
  .page-title {
    font-size: 40px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-inner {
    min-height: 640px;
  }

  .btn {
    width: 100%;
  }

  .stat,
  .card,
  .category-grid a,
  .founder-path,
  .hero-office,
  .hero-assistant,
  .invoice-widget,
  .problem-card,
  .service-suite-content,
  .service-suite-mini,
  .media-story-card div,
  .workflow-card,
  .service-tile,
  .detail-column,
  .lifecycle-card,
  .price-card,
  .tool-card,
  .tool-check-panel,
  .tool-library-card,
  .resource-item,
  .heritage-band,
  .coverage-panel,
  .coverage-strip div,
  .credential-card,
  .contact-home-card,
  .line-contact-card,
  .home-form,
  .process-item,
  .insight-row,
  .contact-panel {
    padding: 24px;
  }

  .fee-note {
    grid-template-columns: 1fr;
  }

  .assistant-top,
  .widget-head {
    align-items: flex-start;
  }

  .widget-head img {
    width: 78px;
    height: 64px;
  }

  .assistant-overview {
    grid-template-columns: 1fr;
  }

  .assistant-illustration {
    max-width: 160px;
  }

  .assistant-progress div {
    grid-template-columns: 42px 1fr;
  }

  .assistant-progress small {
    grid-column: 2;
  }

  .proof-media {
    min-height: auto;
    padding: 0;
  }

  .office-gallery-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 13px 15px;
  }

  .office-gallery-caption strong {
    font-size: 16px;
  }

  .office-gallery-thumbs {
    gap: 8px;
  }

  .office-gallery-thumbs button {
    padding: 6px;
    font-size: 12px;
  }

  .office-gallery-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .office-gallery-meta p {
    text-align: left;
  }

  .proof-badge {
    padding: 8px 12px 8px 8px;
  }

  .proof-badge img {
    width: 26px;
    height: 26px;
  }

  .invoice-demo-card {
    padding: 14px;
  }

  .invoice-paper {
    padding: 16px;
  }

  .invoice-demo-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .invoice-demo-row,
  .split-row {
    grid-template-columns: 78px 1fr;
  }

  .invoice-demo-table > * {
    min-height: 36px;
    padding: 8px 6px;
    font-size: 12px;
  }

  .invoice-demo-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .invoice-demo-total strong {
    font-size: 18px;
  }

  .utility-card {
    padding: 22px;
  }

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

  .utility-result div {
    border-right: 0;
    border-bottom: 1px solid rgba(36, 67, 58, 0.1);
  }

  .utility-result div:last-child {
    border-bottom: 0;
  }

  .office-photo-frame,
  .office-photo-frame img {
    min-height: 300px;
  }

  .office-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: -6px;
  }

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

  .page-index {
    gap: 10px;
  }

  .shin-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .founder-hero {
    background:
      linear-gradient(180deg, rgba(247, 245, 239, 0.98) 0%, rgba(247, 245, 239, 0.9) 54%, rgba(247, 245, 239, 0.68) 100%),
      url("../images/yuqun-hero-lineart-office.png") center / cover no-repeat;
  }

  .founder-hero .shin-hero-copy {
    padding: 20px 0 34px;
  }

  .shin-hero-panel img {
    max-height: 220px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .path-geo {
    width: 52px;
    height: 52px;
  }

  .line-floating {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 8px 14px 8px 10px;
  }

  .line-floating span {
    width: 30px;
    height: 30px;
  }

  .phone-floating {
    bottom: 72px;
  }
}

.client-hero {
  background:
    linear-gradient(135deg, rgba(250, 248, 243, 0.98) 0%, rgba(255, 247, 234, 0.92) 58%, rgba(245, 170, 34, 0.16) 100%),
    radial-gradient(circle at 86% 28%, rgba(245, 170, 34, 0.2), transparent 30%);
}

.client-resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: start;
}

.client-gate-card,
.client-download-panel,
.client-resource-teaser {
  border: 1px solid rgba(169, 111, 18, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(42, 35, 24, 0.08);
}

.client-gate-card,
.client-download-panel {
  padding: 34px;
}

.client-gate-card h2,
.client-download-panel h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(25px, 3.2vw, 38px);
  line-height: 1.25;
  letter-spacing: 0;
}

.client-gate-card p,
.client-download-panel p {
  margin: 0;
  color: var(--muted);
}

.client-password-form {
  margin-top: 24px;
}

.client-password-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(45, 48, 45, 0.72);
}

.client-password-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.client-password-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(169, 111, 18, 0.22);
  border-radius: 999px;
  background: rgba(250, 248, 243, 0.72);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.client-password-row input:focus {
  border-color: rgba(245, 170, 34, 0.78);
  box-shadow: 0 0 0 4px rgba(245, 170, 34, 0.14);
}

.client-error {
  margin-top: 12px !important;
  color: #9b3b1b !important;
  font-size: 14px;
}

.client-support-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.client-download-head {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.client-doc-icon {
  width: 78px;
  height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 9px;
  border-radius: 20px;
  border: 1px solid rgba(245, 170, 34, 0.25);
  background: linear-gradient(145deg, rgba(255, 240, 212, 0.94), rgba(245, 170, 34, 0.2));
  box-shadow: 0 14px 30px rgba(31, 24, 12, 0.08);
}

.client-doc-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.client-doc-icon b,
.client-doc-icon small {
  display: block;
  line-height: 1;
}

.client-doc-icon b {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.client-doc-icon small {
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-file-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.client-note-box {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 247, 234, 0.86);
}

.client-note-box strong,
.client-note-box span {
  display: block;
}

.client-note-box strong {
  margin-bottom: 5px;
  color: var(--ink);
}

.client-note-box span {
  color: var(--muted);
}

.client-official-links {
  margin-top: 26px;
}

.client-official-links h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--ink);
}

.client-official-links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-official-links a {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(169, 111, 18, 0.16);
  border-radius: var(--radius);
  background: rgba(250, 248, 243, 0.74);
  color: var(--ink);
  font-size: 14px;
}

.client-resource-teaser {
  margin-top: 18px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 247, 234, 0.92), rgba(255, 255, 255, 0.78));
}

.client-resource-teaser span,
.client-resource-teaser strong,
.client-resource-teaser p {
  display: block;
}

.client-resource-teaser span {
  margin-bottom: 5px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-resource-teaser strong {
  color: var(--ink);
  font-size: 18px;
}

.client-resource-teaser p {
  margin: 6px 0 8px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .client-resource-layout {
    grid-template-columns: 1fr;
  }

  .client-download-panel {
    order: 2;
  }

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

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

  .client-check-grid {
    grid-template-columns: 1fr;
  }

  .entrance-guide-copy {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .client-gate-card,
  .client-download-panel {
    padding: 24px;
  }

  .client-password-row {
    grid-template-columns: 1fr;
  }

  .client-download-head {
    grid-template-columns: 1fr;
  }

  .client-official-links ul {
    grid-template-columns: 1fr;
  }

  .client-guide-cover,
  .client-guide-summary,
  .client-guide-section,
  .client-guide-footer {
    padding: 24px;
  }

  .client-highlight {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .client-guide-links {
    grid-template-columns: 1fr;
  }

  .client-guide-table {
    min-width: 680px;
  }

  .client-entrance-figure {
    padding: 10px;
  }

  .entrance-guide {
    padding: 16px;
  }
}
