:root {
  --brand: #165dff;
  --brand-dark: #082875;
  --navy: #061d5d;
  --orange: #ff4b12;
  --orange-light: #ff7a00;
  --soft-blue: #eef7ff;
  --line: #e3ebf6;
  --text: #182542;
  --muted: #607086;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 76px;
  color: var(--text);
  background: #ffffff;
  font-family: "Source Han Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 64px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 2px 16px rgba(6, 29, 93, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 10px;
}

.brand-shield {
  position: relative;
  width: 42px;
  height: 42px;
  background: var(--brand);
  border-radius: 11px 11px 16px 16px;
  clip-path: polygon(50% 0, 92% 12%, 92% 58%, 50% 100%, 8% 58%, 8% 12%);
}

.brand-shield::before {
  position: absolute;
  inset: 7px;
  content: "";
  background: #ffffff;
  clip-path: inherit;
}

.brand-shield::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 18px;
  content: "";
  border-right: 5px solid #20c878;
  border-bottom: 5px solid #20c878;
  transform: translate(-50%, -58%) rotate(45deg);
}

.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  color: #152848;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 34px;
  color: #0c1831;
  font-size: 15px;
  font-weight: 800;
}

.nav a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}

.nav a:hover,
.nav .active {
  color: var(--brand);
}

.nav .active::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 31px;
  height: 4px;
  content: "";
  transform: translateX(-50%);
  background: var(--brand);
  border-radius: 4px 4px 0 0;
}

.header-btn {
  display: inline-flex;
  height: 42px;
  min-width: 140px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  background: var(--brand);
  border-radius: 5px;
  box-shadow: 0 8px 18px rgba(22, 93, 255, 0.22);
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: #eaf6ff url("../public/images/hero-professional-bg.png") center bottom / cover no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 52% 38%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 34%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 570px 1fr 300px;
  column-gap: 24px;
  min-height: 360px;
  padding-top: 44px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  grid-column: 1;
}

.hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--brand);
}

.hero-copy p {
  margin: 20px 0 0;
  color: #08296d;
  font-size: 18px;
  font-weight: 900;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 25px;
  color: #14377d;
  font-size: 12px;
  font-weight: 900;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
}

.hero-tags span::before {
  display: inline-grid;
  width: 14px;
  height: 14px;
  margin-right: 7px;
  place-items: center;
  color: #ffffff;
  font-size: 9px;
  content: "?";
  background: var(--brand);
  border-radius: 50%;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 570px;
  margin-top: 43px;
  padding: 14px 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(210, 224, 244, 0.82);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(22, 93, 255, 0.12);
  backdrop-filter: blur(8px);
}

.stats-strip article {
  display: grid;
  grid-template-columns: 28px minmax(72px, 1fr);
  align-items: center;
  padding: 0 14px;
  border-right: 1px solid var(--line);
}

.stats-strip article:last-child {
  border-right: 0;
}

.stats-strip i {
  grid-row: span 2;
  color: var(--brand);
  font-size: 25px;
  font-style: normal;
}

.stats-strip strong {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.stats-strip span {
  margin-top: 4px;
  color: #1b2e66;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-person-card {
  position: absolute;
  z-index: 3;
  left: 606px;
  top: 38px;
  display: flex;
  width: 255px;
  height: 322px;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
}

.hero-person-card::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 238px;
  height: 312px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0) 72%);
  border-radius: 50%;
  filter: blur(8px);
  transform: translateX(-50%);
}

.hero-person {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: 322px;
  filter: drop-shadow(0 18px 28px rgba(22, 93, 255, 0.14));
}

.assessment-card {
  position: relative;
  z-index: 5;
  grid-column: 3;
  align-self: start;
  overflow: hidden;
  margin-top: 0;
  padding: 0 20px 13px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(210, 224, 244, 0.95);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(17, 62, 128, 0.16);
}

.assessment-card h2 {
  margin: 0 -20px;
  padding: 13px 20px 2px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(180deg, #0b5dff, #0346cb);
}

.assessment-card > p {
  margin: 0 -20px 12px;
  padding: 2px 20px 13px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(180deg, #0346cb, #0342bd);
}

.assessment-card form {
  display: grid;
  gap: 8px;
}

.assessment-card label {
  display: grid;
  gap: 5px;
  color: #1d2c56;
  font-size: 12px;
  font-weight: 900;
}

.assessment-card input,
.assessment-card select {
  width: 100%;
  height: 34px;
  padding: 0 12px;
  color: #1d2c56;
  background: #ffffff;
  border: 1px solid #d8e1ec;
  border-radius: 6px;
  outline: none;
}

.assessment-card input:focus,
.assessment-card select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.12);
}

.assessment-card .privacy-check {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 8px;
  align-items: start;
  color: #61718a;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.55;
}

.assessment-card .privacy-check input {
  width: 15px;
  height: 15px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--brand);
}

.assessment-card .privacy-check a {
  color: var(--brand);
  font-weight: 900;
}

.assessment-card button {
  height: 38px;
  margin-top: 4px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  background: linear-gradient(180deg, #ff7517, #ff3d08);
  border: 0;
  border-radius: 7px;
  box-shadow: 0 10px 18px rgba(255, 75, 18, 0.22);
}

.form-result {
  min-height: 12px;
  margin: 0;
  color: #0aa564;
  font-size: 11px;
  font-weight: 700;
}

.privacy-note {
  margin: -3px 0 0;
  color: #93a0b2;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.problem-section {
  padding: 13px 0 20px;
  background: #ffffff;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 22px;
  text-align: center;
}

.section-title span {
  width: 48px;
  height: 2px;
  background: #5b8df2;
}

.section-title h2,
.plain-title,
.block-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
}

.section-title p {
  margin: 4px 0 0;
  color: #1f4085;
  font-size: 14px;
  font-weight: 700;
}

.problem-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.problem-row article {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 105px;
  align-items: center;
  padding: 15px 17px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(17, 62, 128, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-row article:hover,
.case-row article:hover,
.team-grid > article:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(17, 62, 128, 0.14);
}

.problem-row i {
  grid-row: span 2;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 900;
}

.problem-row .phone,
.problem-row .question,
.problem-row .file {
  color: #ffffff;
  background: #497fe5;
  border-radius: 50%;
}

.problem-row .file {
  border-radius: 8px;
}

.problem-row .money {
  color: #e25342;
}

.problem-row .law {
  color: #333333;
}

.problem-row strong {
  color: var(--navy);
  font-size: 15px;
}

.problem-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.process-section {
  padding: 20px 0 27px;
  text-align: center;
  background: linear-gradient(180deg, #f7fbff, #eef6ff);
}

.process-row {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr 42px 1fr;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.process-row article {
  display: grid;
  justify-items: center;
}

.process-row i {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--brand);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  background: #edf5ff;
  border: 1px solid #b9d4ff;
  border-radius: 50%;
}

.process-row strong {
  margin-top: 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.process-row p {
  margin: 6px 0 0;
  color: #43546e;
  font-size: 12px;
  line-height: 1.55;
}

.process-row b {
  margin-top: 22px;
  color: var(--brand);
  font-size: 32px;
}

.team-section {
  padding: 23px 0 25px;
  background: #ffffff;
}

.plain-title {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: 300px repeat(4, 1fr);
  gap: 15px;
  margin-top: 22px;
}

.advantage-card {
  min-height: 210px;
  padding: 21px 18px;
  color: #ffffff;
  background: linear-gradient(145deg, #0a5cda, #08226d);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.advantage-card h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 18px;
}

.advantage-card p {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.advantage-card p::before {
  display: inline-grid;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  place-items: center;
  color: #0a5cda;
  font-size: 10px;
  content: "✓";
  background: #ffffff;
  border-radius: 50%;
}

.team-grid > article {
  overflow: hidden;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(17, 62, 128, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-grid img {
  display: block;
  width: 100%;
  height: 136px;
  object-fit: cover;
  object-position: center top;
  padding: 0;
  background: #f4f7fc;
}

.team-grid strong {
  display: block;
  margin-top: 11px;
  color: var(--navy);
  font-size: 15px;
}

.team-grid span,
.team-grid p {
  display: block;
  margin: 5px 0 0;
  color: #3c4960;
  font-size: 11px;
}

.team-grid p {
  margin: 7px 6px 13px;
}

.team-grid .advantage-card p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  font-weight: 800;
}

.team-grid .advantage-card p::before {
  color: #0a5cda;
  background: #ffffff;
}

.case-feedback-section {
  padding: 0 0 18px;
}

.case-feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.block-head h2 {
  font-size: 24px;
}

.block-head a {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.case-row,
.feedback-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.case-row article,
.feedback-row article {
  min-height: 165px;
  padding: 15px 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(17, 62, 128, 0.08);
}

.case-row article {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-row h3 {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 14px;
  line-height: 1.45;
}

.case-row p {
  margin: 0 0 11px;
  color: #1e2c47;
  font-size: 12px;
  line-height: 1.65;
}

.case-row strong {
  display: block;
  color: #0aa564;
  font-size: 12px;
}

.case-row span {
  display: block;
  margin-top: 7px;
  color: #1e2c47;
  font-size: 12px;
}

.case-row em {
  display: block;
  margin-top: 7px;
  color: #1e2c47;
  font-size: 13px;
  font-style: normal;
}

.case-row b {
  color: #ff4111;
  font-size: 25px;
}

.feedback-shell {
  overflow: hidden;
}

.feedback-card {
  position: relative;
}

.feedback-card::before {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 21px;
  height: 21px;
  content: "";
  background: #22c45e;
  border-radius: 50%;
}

.wechat-line {
  margin-left: 30px;
  color: #f7a300;
  font-size: 15px;
  letter-spacing: 1px;
}

.feedback-row p {
  margin: 18px 0 0;
  color: #1e2c47;
  font-size: 12px;
  line-height: 1.75;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}

.dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  background: #cdd7e5;
  border: 0;
  border-radius: 50%;
}

.dots .active {
  background: var(--brand);
}

.faq-section {
  padding: 0 0 22px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px 26px;
}

.faq-grid button {
  display: block;
  min-height: 36px;
  padding: 10px 15px;
  color: #1e2c47;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  background: #f3f6fb;
  border: 0;
  border-radius: 5px;
}

.faq-grid button > span {
  float: right;
  color: #0d397f;
  font-size: 20px;
  line-height: 14px;
}

.faq-grid button.open {
  color: var(--brand);
  background: #eef5ff;
  box-shadow: inset 0 0 0 1px rgba(22, 93, 255, 0.12);
}

.faq-grid small {
  display: block;
  clear: both;
  margin-top: 8px;
  color: #52647d;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.consult-card {
  display: grid;
  grid-template-columns: 1fr 124px;
  align-items: center;
  min-height: 114px;
  padding: 14px 0 0 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #0d5be7, #07206d);
  border-radius: 8px;
  overflow: hidden;
}

.consult-card h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 18px;
}

.consult-card p {
  margin: 0 0 11px;
  color: #ffffff;
  font-size: 13px;
}

.consult-card button {
  display: inline-flex;
  height: 34px;
  min-width: 92px;
  align-items: center;
  justify-content: center;
  color: #0b3d95;
  font-size: 13px;
  font-weight: 900;
  background: #ffffff;
  border: 0;
  border-radius: 18px;
}

.consult-card img {
  align-self: end;
  width: 124px;
}

.float-bar {
  position: fixed;
  right: 18px;
  top: 58%;
  z-index: 70;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.float-bar button,
.float-bar a {
  display: grid;
  width: 62px;
  min-height: 63px;
  place-items: center;
  padding: 7px 4px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  background: var(--brand);
  border: 0;
  border-radius: 5px;
  box-shadow: var(--shadow);
}

.float-bar i {
  font-style: normal;
}

.float-bar span {
  display: block;
  font-size: 11px;
}

.bottom-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 75;
  min-height: 76px;
  color: #ffffff;
  background: linear-gradient(90deg, #05236f, #073a9e);
}

.bottom-inner {
  display: grid;
  grid-template-columns: 305px 1fr 220px;
  align-items: center;
  gap: 32px;
  min-height: 76px;
}

.bottom-cta strong,
.bottom-cta span {
  display: block;
}

.bottom-cta strong {
  color: #ffffff;
  font-size: 20px;
}

.bottom-cta span {
  margin-top: 4px;
  color: #ffffff;
  font-size: 17px;
}

.bottom-cta ul {
  display: flex;
  justify-content: center;
  gap: 54px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bottom-cta li {
  color: #dbe8ff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.bottom-cta li::before {
  display: block;
  margin: 0 auto 5px;
  color: #9fc0ff;
  font-size: 21px;
  content: "◆";
  text-align: center;
}

.bottom-cta a {
  display: grid;
  min-height: 56px;
  place-items: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  background: linear-gradient(180deg, #ff7517, #ff3d08);
  border-radius: 5px;
}

.bottom-cta small {
  display: block;
  margin-top: -8px;
  font-size: 11px;
}

.site-footer {
  padding: 26px 0 104px;
  background: #071b46;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 98px;
  z-index: 120;
  display: none;
  max-width: min(560px, calc(100% - 32px));
  padding: 12px 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  background: rgba(7, 29, 96, 0.94);
  border-radius: 999px;
  transform: translateX(-50%);
}

.toast.show {
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 17, 52, 0.42);
}

.modal.open {
  display: grid;
}

.modal-panel {
  position: relative;
  width: min(420px, 100%);
  padding: 28px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 32px;
  height: 32px;
  color: #6c7890;
  font-size: 24px;
  background: transparent;
  border: 0;
}

.modal-panel h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 22px;
}

.modal-panel p {
  margin: 0;
  color: #52647d;
  font-size: 14px;
  line-height: 1.8;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.modal-actions a,
.modal-actions button {
  flex: 1;
  height: 42px;
  color: #ffffff;
  font-weight: 900;
  background: var(--brand);
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal-actions button {
  color: #31405a;
  background: #edf2f8;
}

.lead-admin-section {
  display: none;
  min-height: 100vh;
  padding: 96px 0 48px;
  background:
    radial-gradient(circle at 18% 15%, rgba(22, 93, 255, 0.14), transparent 34%),
    linear-gradient(180deg, #f5f7fb 0%, #eef3fb 100%);
}

.lead-admin-section:target {
  display: block;
}

body:has(.lead-admin-section:target) {
  padding-bottom: 0;
}

body:has(.lead-admin-section:target) .float-bar,
body:has(.lead-admin-section:target) .bottom-cta,
body.is-lead-admin .float-bar,
body.is-lead-admin .bottom-cta {
  display: none;
}

body.is-lead-admin {
  padding-bottom: 0;
}

.lead-admin-panel {
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.lead-admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.lead-admin-head span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.lead-admin-head h1 {
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: 30px;
}

.lead-admin-head p {
  margin: 0;
  color: #60718a;
  font-size: 14px;
}

.lead-admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.lead-admin-actions button,
.lead-admin-actions a {
  height: 38px;
  padding: 0 15px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: var(--brand);
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lead-admin-actions button:nth-child(2) {
  background: linear-gradient(180deg, #ff8b23, #ff4b12);
}

.lead-admin-actions .danger {
  background: #ff4b12;
}

.lead-admin-actions a {
  color: #31405a;
  background: #edf2f8;
}

.lead-admin-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.lead-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.lead-summary article {
  padding: 17px;
  background: #f6f8fc;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.lead-summary span {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.lead-summary strong {
  color: var(--navy);
  font-size: 24px;
}

.lead-warning-card {
  background: linear-gradient(180deg, rgba(255, 122, 0, 0.12), rgba(255, 75, 18, 0.08)) !important;
  border-color: rgba(255, 122, 0, 0.28) !important;
}

.lead-warning-card strong {
  color: #ff4b12;
}

.lead-alert-panel {
  display: grid;
  grid-template-columns: 1.2fr 280px auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
  padding: 18px;
  background: linear-gradient(135deg, #f7fbff 0%, #fff7ef 100%);
  border: 1px solid rgba(22, 93, 255, 0.12);
  border-radius: 14px;
}

.lead-alert-copy span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.lead-alert-copy h2 {
  margin: 5px 0 8px;
  color: var(--navy);
  font-size: 20px;
}

.lead-alert-copy p {
  margin: 0;
  color: #60718a;
  font-size: 13px;
  line-height: 1.7;
}

.lead-alert-panel label {
  color: #34445d;
  font-size: 13px;
  font-weight: 900;
}

.lead-alert-panel input {
  width: 100%;
  height: 40px;
  margin-top: 8px;
  padding: 0 12px;
  color: #243650;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lead-alert-actions {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 9px;
}

.lead-alert-actions button {
  height: 40px;
  padding: 0 13px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  background: var(--brand);
  border: 0;
  border-radius: 8px;
}

.lead-alert-actions button:nth-child(2) {
  background: #0aa564;
}

.lead-alert-actions button:nth-child(3) {
  background: linear-gradient(180deg, #ff8b23, #ff4b12);
}

.lead-alert-status {
  grid-column: 1 / -1;
  margin: -5px 0 0;
  color: #6a7890;
  font-size: 12px;
  font-weight: 800;
}

.lead-filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 16px;
  padding: 14px;
  background: #f7faff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.lead-filter-panel span {
  margin-right: 4px;
  color: #34445d;
  font-size: 13px;
  font-weight: 900;
}

.lead-filter-panel button {
  height: 32px;
  padding: 0 12px;
  color: #53647a;
  font-size: 12px;
  font-weight: 900;
  background: #ffffff;
  border: 1px solid #dce6f3;
  border-radius: 999px;
}

.lead-filter-panel button.active {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
}

.lead-table-wrap {
  position: relative;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.lead-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: #ffffff;
}

.lead-table th,
.lead-table td {
  padding: 12px 10px;
  color: #263650;
  font-size: 13px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.lead-table th {
  color: #53647a;
  font-size: 12px;
  font-weight: 900;
  background: #f5f7fa;
}

.lead-table tbody tr:hover {
  background: #f8fbff;
}

.lead-table tbody tr.status-new,
.lead-table tbody tr.status-follow {
  background: #fffaf5;
}

.lead-info-stack {
  display: grid;
  gap: 5px;
  min-width: 105px;
}

.lead-info-stack strong {
  color: #082875;
  font-size: 13px;
  font-weight: 900;
}

.lead-info-stack span {
  color: #43546e;
  font-size: 12px;
  line-height: 1.35;
}

.lead-status {
  display: inline-flex;
  min-width: 58px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
}

.lead-status.new {
  background: #ff4b12;
}

.lead-status.contacted {
  background: #3f7ee8;
}

.lead-status.follow {
  background: #ff7a00;
}

.lead-status.wechat {
  background: #0aa564;
}

.lead-status.deal {
  background: #102f86;
}

.lead-status.invalid {
  color: #60718a;
  background: #e8eef6;
}

.lead-status-select,
.lead-note-input,
.lead-next-input {
  width: 100%;
  margin-top: 8px;
  color: #263650;
  font-size: 12px;
  background: #ffffff;
  border: 1px solid #dce6f3;
  border-radius: 7px;
  outline: none;
}

.lead-status-select,
.lead-next-input {
  height: 34px;
  padding: 0 9px;
}

.lead-note-input {
  min-width: 210px;
  min-height: 58px;
  padding: 8px 9px;
  resize: vertical;
}

.lead-status-select:focus,
.lead-note-input:focus,
.lead-next-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(22, 93, 255, 0.1);
}

.lead-table-action {
  width: 58px;
  min-height: 38px;
  padding: 0 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: var(--brand);
  border: 0;
  border-radius: 7px;
  line-height: 1.15;
}

.lead-table-action:disabled {
  color: #8a98aa;
  cursor: not-allowed;
  background: #edf2f8;
}

.lead-empty {
  margin: 0;
  padding: 30px;
  color: #74839a;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  background: #ffffff;
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .nav {
    gap: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr 300px;
  }

  .hero-person-card {
    display: none;
  }

  .stats-strip {
    width: 100%;
  }

  .problem-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-card {
    grid-column: span 2;
  }

  .case-feedback-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 0;
  }

  .nav,
  .header-btn,
  .float-bar {
    display: none;
  }

  .site-header,
  .header-inner {
    height: auto;
    min-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text small {
    white-space: normal;
  }

  .hero-grid,
  .problem-row,
  .process-row,
  .case-row,
  .feedback-row,
  .faq-grid,
  .bottom-inner,
  .team-grid,
  .consult-card {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-bottom: 24px;
  }

  .hero-grid {
    min-height: auto;
    gap: 22px;
    padding-top: 32px;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-tags {
    gap: 12px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 18px;
  }

  .stats-strip article:nth-child(3),
  .stats-strip article:nth-child(4) {
    border-bottom: 0;
  }

  .process-row {
    gap: 18px;
  }

  .process-row b {
    display: none;
  }

  .advantage-card {
    grid-column: auto;
  }

  .consult-card {
    padding: 20px;
  }

  .consult-card img {
    display: none;
  }

  .bottom-cta {
    position: static;
  }

  .bottom-inner {
    padding: 14px 0;
    text-align: center;
  }

  .bottom-cta ul {
    flex-wrap: wrap;
    gap: 18px;
  }

  .lead-admin-head,
  .lead-summary,
  .lead-alert-panel {
    grid-template-columns: 1fr;
  }

  .lead-admin-head {
    display: grid;
  }

  .lead-admin-actions {
    justify-content: flex-start;
  }

  .lead-alert-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .hero-copy h1 {
    font-size: 31px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip article {
    border-bottom: 1px solid var(--line);
  }

  .stats-strip article:last-child {
    border-bottom: 0;
  }

  .section-title h2,
  .plain-title {
    font-size: 24px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 86px;
    background: #f5f7fa;
  }

  .site-header {
    height: 60px;
    background: rgba(255, 255, 255, 0.97);
  }

  .header-inner {
    height: 60px;
    min-height: 60px;
    gap: 12px;
  }

  .brand {
    flex: 1;
  }

  .brand-shield {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .brand-text small {
    max-width: 150px;
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
  }

  .header-btn {
    display: inline-flex;
    height: 38px;
    min-width: 104px;
    flex: 0 0 auto;
    border-radius: 12px;
    font-size: 13px;
    padding: 0 12px;
  }

  .hero-section {
    background-position: center top;
    padding-bottom: 28px;
  }

  .hero-grid {
    gap: 18px;
    padding-top: 26px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.18;
  }

  .hero-copy p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-tags {
    gap: 9px;
    margin-top: 16px;
  }

  .hero-tags span {
    border-radius: 999px;
    font-size: 13px;
    padding: 8px 10px;
  }

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

  .assessment-card h2 {
    font-size: 24px;
  }

  .assessment-card > p {
    font-size: 14px;
  }

  .assessment-card input,
  .assessment-card select {
    height: 48px;
    border-radius: 12px;
    font-size: 15px;
  }

  .assessment-card button {
    height: 50px;
    border-radius: 14px;
    font-size: 16px;
  }

  .assessment-card .privacy-check {
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.55;
    padding: 10px 12px;
  }

  .stats-strip {
    margin-top: 18px;
    border-radius: 18px;
  }

  .problem-section,
  .process-section,
  .team-section,
  .case-feedback-section,
  .faq-section {
    padding: 40px 0;
  }

  .problem-row article,
  .process-row article,
  .case-row article,
  .feedback-card,
  .team-grid article,
  .advantage-card,
  .consult-card {
    border-radius: 16px;
  }

  .bottom-cta {
    display: none;
  }

  .float-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 120;
    display: grid;
    width: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border: 1px solid rgba(22, 93, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(6, 29, 93, 0.18);
    backdrop-filter: blur(16px);
    padding: 8px;
  }

  .float-bar button,
  .float-bar a {
    width: 100%;
    min-height: 44px;
    border-radius: 13px;
    box-shadow: none;
    padding: 0 6px;
  }

  .float-bar button:nth-child(2) {
    display: none;
  }

  .float-bar i {
    display: none;
  }

  .float-bar span {
    font-size: 12px;
    font-weight: 900;
    writing-mode: initial;
  }

  .lead-table-wrap {
    overflow-x: auto;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .header-btn {
    min-width: 92px;
    font-size: 12px;
  }

  .hero-section {
    border-bottom: 1px solid #e8eef7;
  }

  .hero-grid {
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: 29px;
  }

  .section-title {
    gap: 10px;
    margin-bottom: 22px;
  }

  .section-title span {
    min-width: 18px;
  }

  .section-title h2,
  .plain-title {
    font-size: 23px;
    line-height: 1.35;
  }

  .problem-row,
  .case-row,
  .feedback-row,
  .faq-grid,
  .team-grid {
    gap: 14px;
  }

  .problem-row article,
  .process-row article,
  .case-row article,
  .feedback-card,
  .team-grid article {
    padding: 20px;
  }

  .lead-admin-panel {
    border-radius: 16px;
    padding: 18px;
  }

  .lead-admin-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .lead-admin-actions button,
  .lead-admin-actions a {
    width: 100%;
  }

  .float-bar {
    left: 10px;
    right: 10px;
    bottom: 8px;
  }

  .float-bar button,
  .float-bar a {
    min-height: 42px;
  }
}

@media (max-width: 380px) {
  .brand-text small {
    display: none;
  }

  .header-btn {
    min-width: 84px;
    padding: 0 9px;
  }

  .hero-copy h1 {
    font-size: 26px;
  }

  .assessment-card {
    padding: 18px;
  }
}

@media (max-width: 820px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .hero-copy,
  .assessment-card {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
  }

  .assessment-card {
    margin-top: 0;
    padding: 0 18px 18px;
  }

  .assessment-card h2 {
    margin-inline: -18px;
    padding: 16px 18px 4px;
  }

  .assessment-card > p {
    margin-inline: -18px;
    padding: 2px 18px 16px;
  }

  .stats-strip {
    width: 100%;
  }

  .float-bar {
    top: auto;
    right: 12px;
    transform: none;
  }
}

@media (max-width: 520px) {
  .hero-copy,
  .assessment-card,
  .stats-strip {
    min-width: 0;
  }

  .float-bar {
    right: 10px;
    transform: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 70px;
  }

  .hero-section {
    background: linear-gradient(180deg, #eef7ff 0%, #ffffff 72%);
  }

  .hero-grid {
    gap: 12px;
    padding-top: 18px;
  }

  .hero-copy h1 {
    font-size: 27px;
    line-height: 1.16;
  }

  .hero-copy p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .hero-tags span {
    min-height: 32px;
    border: 1px solid rgba(22, 93, 255, 0.14);
    background: rgba(255, 255, 255, 0.82);
    color: #123776;
    font-size: 12px;
    justify-content: center;
    padding: 6px 8px;
  }

  .hero-tags span::before {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    font-size: 8px;
  }

  .stats-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 12px;
    padding: 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .stats-strip article {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 68px;
    place-items: center;
    border: 1px solid rgba(22, 93, 255, 0.1);
    border-radius: 14px;
    background: #ffffff;
    padding: 8px 4px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(6, 29, 93, 0.06);
  }

  .stats-strip article:nth-child(3),
  .stats-strip article:nth-child(4),
  .stats-strip article:last-child {
    border-bottom: 1px solid rgba(22, 93, 255, 0.1);
  }

  .stats-strip i {
    display: none;
  }

  .stats-strip strong {
    font-size: 18px;
  }

  .stats-strip span {
    margin: 4px 0 0;
    font-size: 11px;
    white-space: normal;
  }

  .assessment-card {
    margin-top: 8px;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(17, 62, 128, 0.12);
  }

  .assessment-card h2 {
    padding-top: 14px;
    font-size: 22px;
  }

  .assessment-card > p {
    padding-bottom: 12px;
    font-size: 12px;
  }

  .assessment-card form {
    gap: 8px;
  }

  .assessment-card label {
    font-size: 12px;
  }

  .assessment-card input,
  .assessment-card select {
    height: 44px;
    font-size: 14px;
  }

  .assessment-card button {
    height: 46px;
    margin-top: 2px;
  }

  .privacy-note {
    display: none;
  }

  .problem-section,
  .process-section,
  .team-section,
  .case-feedback-section,
  .faq-section {
    padding: 26px 0;
  }

  .section-title,
  .block-head {
    margin-bottom: 14px;
  }

  .section-title h2,
  .plain-title,
  .block-head h2 {
    font-size: 21px;
  }

  .problem-row {
    gap: 10px;
  }

  .problem-row article {
    display: grid;
    grid-template-columns: 38px 1fr;
    min-height: auto;
    gap: 4px 10px;
    padding: 14px;
    text-align: left;
  }

  .problem-row i {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .problem-row strong {
    font-size: 15px;
  }

  .problem-row p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .problem-row br {
    display: none;
  }

  .process-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
  }

  .process-row article {
    min-height: 96px;
    padding: 10px 5px;
    border-radius: 14px;
    text-align: center;
  }

  .process-row i {
    width: 30px;
    height: 30px;
    margin: 0 auto 7px;
    font-size: 12px;
  }

  .process-row strong {
    font-size: 12px;
  }

  .process-row p {
    display: none;
  }

  .team-grid {
    gap: 10px;
  }

  .advantage-card {
    min-height: 0;
    padding: 18px;
  }

  .advantage-card h3 {
    font-size: 20px;
  }

  .advantage-card p {
    display: inline-flex;
    align-items: center;
    margin: 8px 6px 0 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 12px;
    line-height: 1.35;
    padding: 8px 10px;
  }

  .advantage-card p:nth-of-type(n + 5) {
    display: none;
  }

  .advantage-card p::before {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    font-size: 9px;
  }

  .team-grid > article:nth-of-type(n + 4) {
    display: none;
  }

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

  .team-grid .advantage-card {
    display: none;
    grid-column: 1 / -1;
  }

  .team-grid > article {
    min-width: 0;
    padding: 10px 6px;
    border-radius: 14px;
    text-align: center;
  }

  .team-grid img {
    width: 62px;
    height: 62px;
    margin: 0 auto;
    background: #eef3f9;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 32%;
  }

  .team-grid strong {
    margin-top: 8px;
    font-size: 14px;
  }

  .team-grid span,
  .team-grid p {
    font-size: 11px;
    line-height: 1.35;
  }

  .team-grid p {
    display: none;
  }

  .case-feedback-grid {
    gap: 22px;
  }

  .case-row,
  .feedback-row {
    gap: 12px;
  }

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

  .case-row article {
    min-width: 0;
    padding: 14px;
  }

  .case-row article:nth-child(n + 3),
  .feedback-card:nth-child(n + 4) {
    display: none;
  }

  .case-row h3 {
    font-size: 15px;
    line-height: 1.35;
  }

  .case-row p,
  .case-row span,
  .feedback-row p {
    font-size: 13px;
  }

  .case-row p {
    line-height: 1.6;
  }

  .case-row em {
    margin-top: 10px;
    font-size: 12px;
  }

  .case-row b {
    font-size: 24px;
  }

  .feedback-card {
    min-height: auto;
    padding: 16px;
  }

  .faq-grid button:nth-child(n + 5) {
    display: none;
  }

  .float-bar {
    grid-template-columns: 1fr 1fr;
    padding: 7px;
  }

  .float-bar button,
  .float-bar a {
    min-height: 40px;
    border-radius: 12px;
  }

  .float-bar a {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero-copy h1 {
    font-size: 25px;
  }

  .process-row {
    gap: 5px;
  }

  .process-row article {
    min-height: 86px;
    padding-inline: 3px;
  }

  .process-row strong {
    font-size: 11px;
  }

  .advantage-card p {
    width: calc(50% - 6px);
    margin-right: 4px;
    padding: 7px 8px;
    font-size: 11px;
  }

  .case-row {
    gap: 8px;
  }

  .case-row article {
    padding: 12px 10px;
  }

  .case-row h3 {
    font-size: 14px;
  }

  .case-row p,
  .case-row span {
    font-size: 12px;
  }

  .case-row b {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 22px 0 88px;
    font-size: 12px;
  }

  .site-footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}
