:root {
  --primary: #5b59df;
  --primary-dark: #4542c8;
  --deep: #25234f;
  --text: #2c2a3d;
  --muted: #737181;
  --line: #eceaf2;
  --surface: #f7f7fb;
  --container: 1180px;
  --shadow: 0 24px 60px rgb(52 47 103 / 12%);
  --font-display: clamp(36px, 3.1vw, 40px);
  --font-section-title: clamp(28px, 2.4vw, 30px);
  --font-card-title: 18px;
  --font-body: 16px;
  --font-body-small: 14px;
  --font-kicker: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

.home-layout {
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  border-bottom: 1px solid rgb(236 234 242 / 75%);
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(18px);
}

.admin-bar .site-header {
  top: 32px;
}

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

.site-brand img {
  width: 150px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-nav a {
  position: relative;
  color: #5d5a6d;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 25%;
  bottom: -15px;
  left: 25%;
  height: 3px;
  border-radius: 3px;
  background: var(--primary);
  content: "";
  opacity: 0;
  transform: scaleX(.4);
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--primary);
}

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

.site-nav .nav-cta {
  padding: 10px 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--deep);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--primary);
}

/* Editorial centre */
.latest-articles-section {
  background: linear-gradient(180deg, #fff 0%, #f8f7fc 100%);
}

.article-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
}

.article-section-heading > div > span,
.article-archive-hero span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .18em;
}

.article-section-heading h2 {
  margin: 8px 0 7px;
}

.article-section-heading p {
  margin: 0;
}

.article-section-heading > a {
  flex: 0 0 auto;
  padding: 10px 0;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.article-section-heading > a span,
.article-card__link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 180ms ease;
}

.article-section-heading > a:hover span,
.article-card__link:hover span {
  transform: translateX(4px);
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.article-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 38px rgb(49 44 94 / 7%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.article-card:hover {
  border-color: #dcd8f4;
  box-shadow: 0 24px 54px rgb(49 44 94 / 13%);
  transform: translateY(-5px);
}

.article-card__media {
  display: grid;
  height: 210px;
  overflow: hidden;
  place-items: center;
  color: #fff;
  background: radial-gradient(circle at 70% 20%, rgb(255 255 255 / 24%), transparent 28%), linear-gradient(135deg, #353264, #6d66df 70%, #9389f2);
  text-decoration: none;
}

.article-card__media > span {
  font-size: 40px;
  opacity: .82;
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.article-card:hover .article-card__media img {
  transform: scale(1.04);
}

.article-card__body {
  padding: 24px 25px 26px;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: #8b8898;
  font-size: 13px;
  font-weight: 600;
}

.article-meta span + span::before {
  margin-right: 9px;
  color: #cbc8d7;
  content: "•";
}

.article-card h2 {
  margin: 12px 0 10px;
  font-size: 20px;
  line-height: 1.42;
}

.article-card h2 a {
  color: var(--deep);
  text-decoration: none;
}

.article-card h2 a:hover {
  color: var(--primary);
}

.article-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 50px;
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-card__link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.article-empty {
  margin-top: 32px;
  padding: 62px 24px;
  background: #fff;
  border: 1px dashed #dcd9ea;
  border-radius: 20px;
  text-align: center;
}

.article-empty > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 15px;
  place-items: center;
  color: var(--primary);
  background: #efedff;
  border-radius: 16px;
  font-size: 24px;
}

.article-empty h2,
.article-empty h3 {
  margin: 0 0 7px;
  color: var(--deep);
}

.article-empty p {
  margin: 0;
  color: var(--muted);
}

.article-archive-hero {
  padding: 92px 0 88px;
  text-align: center;
  background: radial-gradient(circle at 70% 15%, rgb(126 115 232 / 15%), transparent 26%), linear-gradient(135deg, #f6f4ff, #fffaf7);
}

.article-archive-hero h1 {
  margin: 10px 0 12px;
  color: var(--deep);
  font-size: clamp(34px, 3.8vw, 42px);
  line-height: 1.18;
}

.article-archive-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.article-archive {
  min-height: 520px;
  background: #f8f7fb;
}

.article-archive .article-card-grid {
  margin-top: 0;
}

.article-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}

.article-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  color: #636071;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
}

.article-pagination .current,
.article-pagination a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.single-article__header {
  padding: 68px 0 58px;
  background: linear-gradient(135deg, #f6f4ff, #fffaf8);
}

.single-article__header-inner {
  max-width: 880px;
}

.single-article__back {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.single-article__header h1 {
  max-width: 820px;
  margin: 14px 0 13px;
  color: var(--deep);
  font-size: clamp(34px, 3.8vw, 44px);
  line-height: 1.28;
  letter-spacing: 0;
}

.single-article__header p {
  max-width: 730px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.single-article__cover {
  max-width: 1080px;
  margin-top: 48px;
}

.single-article__cover img {
  width: 100%;
  max-height: 560px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.single-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 300px);
  gap: 70px;
  justify-content: center;
  padding-top: 64px;
  padding-bottom: 96px;
}

.single-article__content {
  min-width: 0;
  color: #3d3a4a;
  font-size: 17px;
  line-height: 2;
}

.single-article__content h2,
.single-article__content h3 {
  margin: 2em 0 .7em;
  color: var(--deep);
  line-height: 1.45;
}

.single-article__content img {
  border-radius: 14px;
}

.single-article__content a {
  color: var(--primary);
}

.single-article__content blockquote {
  margin: 32px 0;
  padding: 18px 24px;
  color: #555169;
  background: #f6f4ff;
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
}

.single-article__aside {
  position: sticky;
  top: 126px;
  height: max-content;
  padding: 26px;
  color: #fff;
  background: linear-gradient(145deg, #292750, #5953cb);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgb(51 45 117 / 20%);
}

.single-article__aside > span {
  color: #b9b4ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

.single-article__aside h2 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.45;
}

.single-article__aside p {
  color: rgb(255 255 255 / 72%);
  font-size: 14px;
}

.single-article__aside a {
  display: inline-flex;
  margin-top: 8px;
  padding: 10px 14px;
  color: var(--deep);
  background: #fff;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background: linear-gradient(135deg, #f5f4ff 0%, #fbf9ff 50%, #fff8f2 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  min-height: 680px;
  padding-top: 36px;
}

.hero-copy {
  padding-bottom: 45px;
}

.hero-orb,
.about-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-one {
  top: 70px;
  right: 13%;
  width: 370px;
  height: 370px;
  background: rgb(105 98 225 / 12%);
}

.hero-orb-two {
  bottom: 30px;
  left: 6%;
  width: 230px;
  height: 230px;
  background: rgb(255 180 139 / 15%);
}

.eyebrow,
.section-kicker,
.section-heading > span,
.about-hero-copy > span,
.story-section header > span,
.principles-heading > span,
.contact-copy > span {
  color: var(--primary);
  font-size: var(--font-kicker);
  font-weight: 700;
  letter-spacing: .12em;
}

.eyebrow {
  display: flex;
  align-items: center;
  font-size: 22px;
  letter-spacing: .08em;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  margin-right: 10px;
  background: var(--primary);
}

.hero h1 {
  margin: 18px 0 20px;
  color: var(--deep);
  font-size: var(--font-display);
  line-height: 1.32;
  letter-spacing: 0;
}

.hero h1 em,
.about-hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.hero-desc {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 32px 0 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
}

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 30px rgb(86 84 221 / 24%);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-primary i {
  background: rgb(255 255 255 / 16%);
}

.button-ghost {
  color: #4e4b5f;
  background: transparent;
}

.button-ghost i {
  color: var(--primary);
  background: #eae9ff;
}

.button-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.button-outline-light {
  margin-top: 24px;
  border: 1px solid #7572c4;
  color: #e7e6ff;
  background: transparent;
}

.button-light {
  color: var(--primary);
  background: #fff;
}

.trust-row {
  display: flex;
  gap: 30px;
}

.trust-row div {
  padding-left: 13px;
  border-left: 2px solid #d9d7ec;
}

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

.trust-row strong {
  color: #3b394e;
  font-size: 14px;
}

.trust-row span {
  margin-top: 4px;
  color: #9996a6;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  align-self: end;
  height: 604px;
}

.phone {
  position: absolute;
  bottom: -85px;
  filter: drop-shadow(0 25px 28px rgb(46 42 94 / 18%));
}

.phone img {
  width: 245px;
}

.phone-back {
  left: 44px;
}

.phone-front {
  z-index: 2;
  left: 210px;
  bottom: -135px;
}

.floating-pill {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 13px 17px;
  border: 1px solid rgb(255 255 255 / 85%);
  border-radius: 15px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 16px 40px rgb(61 56 112 / 14%);
  backdrop-filter: blur(12px);
}

.pill-top {
  top: 105px;
  right: -8px;
  font-size: 14px;
  font-weight: 600;
}

.pill-top span {
  margin-right: 8px;
  color: #ff747f;
  font-size: 21px;
}

.pill-bottom {
  bottom: 55px;
  left: 4px;
}

.avatar-stack {
  display: flex;
  margin-right: 11px;
}

.avatar-stack img {
  width: 30px;
  height: 30px;
  margin-left: -7px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.pill-bottom strong,
.pill-bottom small {
  display: block;
}

.pill-bottom strong {
  font-size: 13px;
}

.pill-bottom small {
  margin-top: 2px;
  color: #9996a5;
  font-size: 12px;
}

.section {
  padding-block: 104px;
}

.services-section {
  scroll-margin-top: 78px;
}

.section-heading {
  margin-bottom: 46px;
  text-align: center;
}

.section-heading h2,
.story-section h2,
.contact-copy h2 {
  margin: 10px 0;
  color: var(--deep);
  font-size: var(--font-section-title);
  line-height: 1.4;
}

.section-heading p {
  margin: 0;
  color: #858392;
  font-size: 16px;
}

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

.service-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 23px;
  border: 1px solid #eeedf4;
  border-radius: 19px;
  background: #fff;
  transition: 220ms ease;
}

.service-card:hover {
  border-color: #d8d5f8;
  box-shadow: 0 18px 42px rgb(62 57 105 / 10%);
  transform: translateY(-5px);
}

.service-icon {
  display: grid;
  flex: none;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 17px;
}

.service-icon img {
  width: 60px;
  height: 60px;
}

.tone-rose { background: #fff0f1; }
.tone-blue { background: #eef5ff; }
.tone-purple { background: #f4efff; }
.tone-green { background: #ecf9f1; }
.tone-lavender { background: #f5f0ff; }
.tone-mint { background: #eef9f3; }

.service-card h3 {
  margin: 0 0 5px;
  font-size: var(--font-card-title);
}

.service-card p {
  margin: 0;
  color: #888694;
  font-size: 15px;
}

.process-section {
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 25%, rgb(117 113 222 / 18%), transparent 34%),
    #25244d;
}

.process-inner {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 105px;
  max-width: 1080px;
}

.process-intro h2 {
  margin: 12px 0 14px;
  font-size: 32px;
  line-height: 1.4;
}

.process-intro p {
  max-width: 310px;
  margin: 0;
  color: #b9b8cf;
  font-size: 16px;
}

.process-list {
  position: relative;
}

.process-list::before {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 27px;
  width: 1px;
  background: rgb(255 255 255 / 14%);
  content: "";
}

.process-list article {
  position: relative;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 24px;
  padding: 19px 0;
}

.process-list article > span {
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid #5d5a93;
  border-radius: 50%;
  color: #d3d1fb;
  background: #383668;
  font-size: 13px;
  font-weight: 700;
}

.process-list h3 {
  margin: 2px 0 7px;
  font-size: 19px;
}

.process-list p {
  margin: 0;
  color: #aaa9c1;
  font-size: 15px;
}

.expert-section {
  padding: 108px 0;
  background: var(--surface);
}

.expert-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 88px;
  max-width: 1120px;
}

.expert-inner > * {
  min-width: 0;
}

.expert-gallery {
  position: relative;
  height: 470px;
}

.expert-main {
  width: 390px;
  height: 410px;
  border-radius: 26px;
  box-shadow: 0 28px 55px rgb(44 42 82 / 16%);
  object-fit: cover;
}

.expert-mini {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 7px;
  padding: 9px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 30px rgb(44 42 82 / 14%);
}

.expert-mini img {
  width: 72px;
  height: 72px;
  border-radius: 11px;
  object-fit: cover;
}

.verified-badge {
  position: absolute;
  top: 30px;
  right: -8px;
  padding: 11px 15px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgb(44 42 82 / 14%);
  font-size: 13px;
  font-weight: 600;
}

.verified-badge span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
}

.expert-copy h2 {
  margin: 12px 0 18px;
  color: var(--deep);
  font-size: var(--font-section-title);
  line-height: 1.45;
}

.expert-copy > p {
  color: #777584;
  font-size: 16px;
}

.expert-copy ul {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.expert-copy li {
  margin: 12px 0;
  color: #565464;
  font-size: 16px;
}

.expert-copy li span {
  margin-right: 8px;
  color: var(--primary);
  font-weight: 800;
}

.review-section .container {
  max-width: 1120px;
}

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

.review-card {
  padding: 27px;
  border: 1px solid #efedf5;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 35px rgb(64 59 105 / 6%);
}

.quote {
  height: 40px;
  color: #d7d5f7;
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;
}

.review-card > p {
  min-height: 110px;
  color: #666574;
  font-size: 16px;
  line-height: 1.85;
}

.review-user {
  display: flex;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid #eeeef2;
}

.review-user img {
  width: 42px;
  height: 42px;
  margin-right: 11px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user strong,
.review-user div span {
  display: block;
}

.review-user strong {
  font-size: 14px;
}

.review-user div span {
  margin-top: 2px;
  color: #aaa8b2;
  font-size: 12px;
}

.stars {
  margin-left: auto;
  color: #ffb45b;
  font-size: 12px;
  letter-spacing: 1px;
}

.assurance-section {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 21px;
  max-width: 1080px;
  margin-bottom: 92px;
  padding: 29px 33px;
  border: 1px solid #e4e2ef;
  border-radius: 18px;
  background: #fafafe;
}

.assurance-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: #efeeff;
  font-size: 24px;
}

.assurance-section span {
  color: var(--primary);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .15em;
}

.assurance-section h2 {
  margin: 5px 0;
  color: var(--deep);
  font-size: 20px;
}

.assurance-section p {
  margin: 0;
  color: #7d7b89;
  font-size: 14px;
}

.cta-section {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  max-width: 1080px;
  margin-bottom: 95px;
  padding: 64px 48px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(120deg, #5653d7, #7772e8);
}

.cta-section::after {
  position: absolute;
  top: -130px;
  right: -70px;
  width: 330px;
  height: 330px;
  border: 60px solid rgb(255 255 255 / 7%);
  border-radius: 50%;
  content: "";
}

.cta-section::before {
  position: absolute;
  bottom: -150px;
  left: -90px;
  width: 300px;
  height: 300px;
  border: 56px solid rgb(255 255 255 / 5%);
  border-radius: 50%;
  content: "";
}

.cta-section > * {
  position: relative;
  z-index: 2;
}

.cta-copy > span {
  color: #d9d8ff;
  font-size: 17px;
  letter-spacing: .16em;
}

.cta-copy {
  max-width: 720px;
  text-align: center;
}

.cta-copy h2 {
  margin: 8px 0;
  font-size: 30px;
}

.cta-copy p {
  margin: 0 0 22px;
  color: #e1e0ff;
  font-size: 16px;
}

.wechat-float {
  position: fixed;
  z-index: 65;
  top: 50%;
  right: 12px;
  width: 116px;
  padding: 10px 10px 12px;
  border: 1px solid #e8e6f3;
  border-radius: 15px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 14px 34px rgb(42 38 86 / 14%);
  text-align: center;
  text-decoration: none;
  transform: translateY(-50%);
}

.wechat-float img {
  width: 94px;
  height: 94px;
  margin: auto auto 8px;
  border-radius: 8px;
}

.wechat-float strong,
.wechat-float span {
  display: block;
}

.wechat-float strong { font-size: 13px; }
.wechat-float span { margin-top: 2px; color: #9694a3; font-size: 12px; }
.wechat-mobile-button { display: none; }

.site-modal[hidden] {
  display: none;
}

.site-modal {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgb(25 23 49 / 62%);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  width: min(570px, 100%);
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 75px rgb(20 18 49 / 32%);
  text-align: center;
}

.modal-card-small {
  width: min(340px, 100%);
}

.modal-card-small > img {
  width: 220px;
  height: 220px;
  margin: 20px auto 0;
  border-radius: 12px;
}

.modal-close {
  position: absolute;
  top: 11px;
  right: 13px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #8d8a99;
  background: transparent;
  font-size: 27px;
  cursor: pointer;
}

.modal-close:hover {
  color: #4f4c61;
  background: #f2f1f8;
}

.modal-kicker {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
}

.modal-card h2 {
  margin: 7px 0 3px;
  color: var(--deep);
  font-size: 26px;
}

.modal-card > p {
  margin: 0;
  color: #888694;
  font-size: 14px;
}

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

.download-grid > a {
  padding: 17px;
  border: 1px solid #eceaf4;
  border-radius: 16px;
  background: #fafafe;
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.download-grid > a:hover {
  border-color: #d4d0f4;
  transform: translateY(-2px);
}

.download-grid img {
  width: 168px;
  height: 168px;
  margin: 0 auto 12px;
  border-radius: 10px;
}

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

.download-grid strong { font-size: 15px; }
.download-grid span { margin-top: 3px; color: #9694a2; font-size: 13px; }

.page-extra {
  padding-top: 0;
}

/* About */
.about-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  min-height: 525px;
  margin-top: 28px;
  padding: 42px 68px;
  border-radius: 30px;
  background: linear-gradient(128deg, #f3f2ff, #fbf8ff 55%, #fff8f2);
}

.about-hero-copy,
.about-hero-card {
  position: relative;
  z-index: 2;
}

.about-hero-copy h1 {
  margin: 16px 0;
  color: var(--deep);
  font-size: clamp(34px, 3.5vw, 42px);
  line-height: 1.42;
  letter-spacing: 0;
}

.about-hero-copy p {
  max-width: 590px;
  margin: 0;
  color: #777585;
  font-size: 16px;
  line-height: 1.95;
}

.about-orb-one {
  top: -120px;
  right: -110px;
  width: 360px;
  height: 360px;
  background: rgb(104 100 224 / 10%);
}

.about-orb-two {
  bottom: -120px;
  left: 45%;
  width: 200px;
  height: 200px;
  background: rgb(255 171 128 / 13%);
}

.about-hero-card {
  display: flex;
  width: 310px;
  height: 300px;
  padding: 48px 34px;
  justify-self: end;
  flex-direction: column;
  justify-content: center;
  border-radius: 34% 66% 58% 42% / 45% 37% 63% 55%;
  color: #fff;
  background: linear-gradient(145deg, #615fe0, #7d79ea);
  box-shadow: 0 25px 50px rgb(72 67 173 / 25%);
}

.about-hero-card > span {
  color: #d9d8ff;
  font-size: 13px;
  letter-spacing: .18em;
}

.about-hero-card p {
  margin: 11px 0 20px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.85;
}

.about-hero-card div {
  display: flex;
  gap: 9px;
}

.about-hero-card i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff6bd;
  box-shadow: 0 0 10px #fff1a1;
}

.about-hero-card i:nth-child(even) { opacity: .4; }

.story-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 95px;
  max-width: 1070px;
  padding-block: 105px;
}

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

.story-content {
  padding-left: 47px;
  border-left: 1px solid #e5e3ef;
}

.story-content p {
  margin: 0 0 15px;
  color: #777583;
  font-size: 16px;
  line-height: 1.9;
}

.story-content .lead {
  color: #3d3b4e;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.75;
}

.values-section {
  padding: 98px 0;
  background: var(--surface);
}

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

.value-grid article {
  position: relative;
  padding: 27px;
  border: 1px solid #f0eff5;
  border-radius: 18px;
  background: #fff;
  transition: 220ms ease;
}

.value-grid article:hover {
  box-shadow: 0 18px 40px rgb(55 50 100 / 9%);
  transform: translateY(-5px);
}

.value-number {
  position: absolute;
  top: 18px;
  right: 19px;
  color: #d8d6e4;
  font-size: 13px;
}

.value-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: #efeeff;
  font-size: 22px;
}

.value-grid h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.value-grid p {
  margin: 0;
  color: #858390;
  font-size: 14px;
}

.principles-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 85px;
  max-width: 1080px;
  padding-block: 105px;
}

.principles-heading h2 {
  margin: 10px 0;
  color: var(--deep);
  font-size: 30px;
  line-height: 1.5;
}

.principles-heading p {
  margin: 0;
  color: #7e7c8a;
  font-size: 16px;
}

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

.principles-list article {
  min-height: 220px;
  padding: 24px 21px;
  border-radius: 17px;
  color: #fff;
  background: #25244d;
}

.principles-list article:nth-child(2) { background: #343264; }
.principles-list article:nth-child(3) { background: #5653b6; }
.principles-list article > span { color: #c8c6ee; font-size: 12px; letter-spacing: .15em; }
.principles-list h3 { margin: 48px 0 9px; font-size: 18px; }
.principles-list p { margin: 0; color: #c2c1d2; font-size: 14px; }

.contact-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 90px;
  max-width: 1080px;
  padding-bottom: 105px;
}

.contact-copy > p {
  margin: 16px 0 26px;
  color: #7c7a88;
  font-size: 16px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list a {
  display: flex;
  align-items: center;
  padding: 19px 21px;
  border: 1px solid #eceaf2;
  border-radius: 16px;
  text-decoration: none;
  transition: 220ms ease;
}

.contact-list a:hover {
  border-color: #cfccf5;
  box-shadow: 0 12px 28px rgb(65 60 107 / 7%);
  transform: translateX(5px);
}

.contact-list a > b {
  display: grid;
  width: 46px;
  height: 46px;
  margin-right: 15px;
  place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: #efeeff;
  font-size: 19px;
  font-weight: 500;
}

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

.contact-list strong { font-size: 16px; }
.contact-list span { margin: 2px 0; color: #9997a2; font-size: 13px; }
.contact-list em { color: var(--primary); font-size: 13px; font-style: normal; }
.contact-list a > i { margin-left: auto; color: #aaa8b5; font-size: 20px; font-style: normal; }

.site-footer {
  padding: 42px 0 25px;
  border-top: 1px solid #efedf2;
  background: #fff;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand img {
  width: 130px;
}

.footer-brand p {
  margin: 8px 0 0;
  color: #8d8b98;
  font-size: 13px;
}

.footer-nav {
  display: flex;
  gap: 27px;
}

.footer-nav a {
  color: #5b5968;
  font-size: 14px;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--primary);
}

.legal {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #efedf2;
  color: #aaa8b1;
  font-size: 13px;
}

.legal span {
  display: flex;
  align-items: center;
}

.legal img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.legal a {
  text-decoration: none;
}

@media (max-width: 900px) {
  .wechat-float {
    display: none;
  }

  .wechat-mobile-button {
    position: fixed;
    z-index: 65;
    right: 16px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px 10px 10px;
    border: 1px solid #e7e5f1;
    border-radius: 999px;
    color: var(--deep);
    background: #fff;
    box-shadow: 0 10px 28px rgb(50 46 100 / 20%);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
  }

  .service-mark {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
  }

  .service-mark::before {
    position: absolute;
    top: 6px;
    left: 7px;
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-bottom: 0;
    border-radius: 9px 9px 0 0;
    content: "";
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy,
  .expert-copy {
    text-align: center;
  }

  .hero-desc {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    width: 520px;
    max-width: 100%;
    height: 500px;
    margin-inline: auto;
  }

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

  .review-card:last-child {
    grid-column: 1 / -1;
  }

  .expert-inner,
  .process-inner,
  .principles-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .expert-gallery {
    width: 500px;
    max-width: 100%;
    margin-inline: auto;
  }

  .expert-copy ul {
    display: inline-block;
    text-align: left;
  }

  .process-inner {
    max-width: 620px;
  }

  .process-intro,
  .principles-heading,
  .contact-copy {
    text-align: center;
  }

  .process-intro p,
  .contact-copy > p {
    margin-inline: auto;
  }

  .about-hero {
    grid-template-columns: 1fr;
    padding: 60px 44px;
    text-align: center;
  }

  .about-hero-copy p {
    margin-inline: auto;
  }

  .about-hero-card {
    margin-top: 42px;
    justify-self: center;
  }

  .story-section {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .story-content {
    padding: 32px 0 0;
    border-top: 1px solid #e5e3ef;
    border-left: 0;
    text-align: left;
  }

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

  .legal {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .site-brand img {
    width: 122px;
  }

  .menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    border: 0;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: #f3f2fb;
  }

  .menu-toggle > span:not(.screen-reader-text) {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--deep);
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 17px;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 11px 12px;
    border-radius: 9px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.is-active {
    background: #f1f0ff;
  }

  .site-nav .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    display: block;
    min-height: 0;
    padding-top: 52px;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .eyebrow {
    justify-content: center;
    font-size: 19px;
  }

  .hero h1 {
    margin: 16px 0;
    font-size: 30px;
    letter-spacing: 0;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-actions {
    margin: 26px 0 30px;
    flex-direction: column;
    gap: 8px;
  }

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

  .trust-row div {
    padding: 0 5px;
    border: 0;
  }

  .trust-row div + div {
    border-left: 1px solid #d9d7ec;
  }

  .trust-row strong { font-size: 12px; }
  .trust-row span { font-size: 12px; line-height: 1.5; }

  .hero-visual {
    height: 405px;
    margin-top: 16px;
  }

  .phone {
    left: 50%;
    bottom: -58px;
  }

  .phone img {
    width: 180px;
  }

  .phone-back {
    transform: translateX(-82%);
  }

  .phone-front {
    bottom: -100px;
    transform: translateX(-20%);
  }

  .floating-pill {
    transform: scale(.76);
  }

  .pill-top {
    top: 65px;
    right: -34px;
  }

  .pill-bottom {
    bottom: 30px;
    left: -26px;
  }

  .section {
    padding-block: 75px;
  }

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

  .section-heading h2,
  .story-section h2,
  .contact-copy h2 {
    font-size: 27px;
  }

  .section-kicker,
  .section-heading > span,
  .about-hero-copy > span,
  .story-section header > span,
  .principles-heading > span,
  .contact-copy > span {
    font-size: 17px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .service-grid,
  .review-grid,
  .value-grid,
  .principles-list {
    grid-template-columns: 1fr;
  }

  .review-card:last-child {
    grid-column: auto;
  }

  .service-card {
    padding: 18px;
  }

  .process-section,
  .expert-section,
  .values-section {
    padding-block: 72px;
  }

  .process-intro h2,
  .principles-heading h2 {
    font-size: 27px;
  }

  .process-list article {
    gap: 16px;
  }

  .expert-gallery {
    width: 100%;
    height: 385px;
  }

  .expert-main {
    width: min(88%, 390px);
    height: 345px;
  }

  .expert-mini {
    right: 0;
  }

  .verified-badge {
    right: 0;
  }

  .expert-mini img {
    width: 52px;
    height: 52px;
  }

  .expert-copy {
    text-align: left;
  }

  .expert-copy ul {
    display: block;
  }

  .assurance-section {
    grid-template-columns: 1fr;
    margin-bottom: 66px;
    padding: 24px 20px;
    text-align: center;
  }

  .assurance-icon {
    margin-inline: auto;
  }

  .cta-section {
    width: auto;
    margin: 0 16px 68px;
    padding: 40px 23px;
    display: block;
    text-align: center;
  }

  .cta-copy h2 {
    font-size: 27px;
  }

  .download-grid {
    gap: 9px;
  }

  .download-grid > a {
    padding: 11px 7px;
  }

  .download-grid img {
    width: 125px;
    height: 125px;
  }

  .about-hero {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 52px 22px;
    border-radius: 0;
  }

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

  .about-hero-card {
    width: 260px;
    height: 250px;
    padding: 38px 29px;
  }

  .about-hero-card p {
    font-size: 16px;
  }

  .story-section,
  .principles-section {
    padding-block: 72px;
  }

  .contact-section {
    padding-bottom: 72px;
  }

  .principles-list article {
    min-height: 0;
  }

  .principles-list h3 {
    margin-top: 27px;
  }

  .contact-list a {
    padding: 16px 14px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

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

  .legal span {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .article-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .single-article__layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .single-article__aside {
    position: static;
  }
}

@media (max-width: 600px) {
  .article-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

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

  .article-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .article-card__media {
    height: 190px;
  }

  .article-archive-hero {
    padding: 64px 0 60px;
  }

  .single-article__header {
    padding: 46px 0 42px;
  }

  .single-article__header h1 {
    font-size: 32px;
  }

  .single-article__layout {
    padding-top: 44px;
    padding-bottom: 68px;
  }

  .single-article__content {
    font-size: 16px;
  }
}
