.growth-content {
  --growth-navy: #001d3d;
  --growth-blue: #0052d9;
  --growth-blue-dark: #001d3d;
  --growth-cyan: #0052d9;
  --growth-text: #2f3744;
  --growth-muted: #596170;
  --growth-line: #e2e7ef;
  --growth-mist: #f5f7fa;
  --growth-white: #ffffff;
  overflow: hidden;
  background: var(--growth-white);
  color: var(--growth-text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.growth-content *,
.growth-content *::before,
.growth-content *::after {
  box-sizing: border-box;
}

.growth-container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.growth-section {
  padding: 88px 0;
}

.growth-content h2,
.growth-content h3,
.growth-content p,
.growth-content figure {
  margin-top: 0;
}

.growth-content h2,
.growth-content h3 {
  color: var(--growth-navy);
  font-weight: 700;
  letter-spacing: 0;
}

.growth-content h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.35;
}

.growth-content h3 {
  font-size: 21px;
  line-height: 1.45;
}

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

.growth-content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.growth-strategy {
  background: var(--growth-white);
}

.growth-strategy__layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 5vw, 72px);
  align-items: center;
}

.growth-strategy__copy {
  position: relative;
  padding-left: 28px;
}

.growth-strategy__copy::before {
  position: absolute;
  top: 8px;
  bottom: 4px;
  left: 0;
  width: 3px;
  background: var(--growth-cyan);
  content: "";
}

.growth-principles {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.growth-principle {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid var(--growth-line);
  border-left: 3px solid var(--growth-blue);
  background: #f5f7fa;
  transition: border-color .28s ease, background-color .28s ease, transform .28s ease;
}

.growth-principle:hover {
  border-color: #edf3ff;
  background: var(--growth-white);
  transform: translateX(6px);
}

.growth-principle > .material-symbols-outlined {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--growth-blue);
  background: #edf3ff;
  font-size: 28px;
}

.growth-principle h3 {
  margin: 0 0 5px;
}

.growth-principle p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

.growth-strategy__media {
  position: relative;
  height: clamp(380px, 36vw, 480px);
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--growth-mist);
  box-shadow: 0 24px 54px rgba(12, 35, 64, .13);
}

.growth-strategy__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.growth-strategy__media img {
  transition: transform .75s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}

.growth-strategy__media:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.035);
}

.growth-matrix {
  border-top: 1px solid #f5f7fa;
  background: var(--growth-mist);
}

.growth-section-heading {
  max-width: 730px;
  margin: 0 auto 44px;
  text-align: center;
}

.growth-section-heading p {
  margin-bottom: 0;
}

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

.growth-matrix__card {
  position: relative;
  min-height: 300px;
  padding: 28px 26px;
  overflow: hidden;
  border: 1px solid var(--growth-line);
  border-radius: 6px;
  background: var(--growth-white);
  transition: color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.growth-matrix__card::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--growth-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.growth-matrix__card:hover {
  border-color: var(--growth-blue);
  box-shadow: 0 18px 40px rgba(12, 35, 64, .12);
  transform: translateY(-7px);
}

.growth-matrix__card:hover::after {
  transform: scaleX(1);
}

.growth-matrix__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--growth-blue);
  background: #edf3ff;
  font-size: 28px;
  transition: color .3s ease, background-color .3s ease;
}

.growth-matrix__card:hover .growth-matrix__icon {
  color: var(--growth-white);
  background: var(--growth-blue);
}

.growth-matrix__card h3 {
  margin: 0 0 14px;
}

.growth-matrix__card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--growth-muted);
  font-size: 15px;
  list-style: none;
}

.growth-matrix__card li {
  position: relative;
  padding-left: 16px;
}

.growth-matrix__card li::before {
  position: absolute;
  top: .78em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--growth-cyan);
  content: "";
}

.growth-gallery {
  padding: 88px 0 104px !important;
  background: var(--growth-mist);
}

.growth-gallery__header {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 42px !important;
}

.growth-gallery__header h2 {
  margin-bottom: 6px;
}

.growth-gallery__header p {
  margin-bottom: 0;
}

.growth-filter {
  display: flex;
  max-width: 100%;
  gap: 4px;
  overflow-x: auto;
  padding: 4px;
  border: 1px solid var(--growth-line);
  border-radius: 6px;
  background: var(--growth-white);
  scrollbar-width: thin;
}

.growth-filter button {
  min-height: 38px;
  padding: 8px 16px;
  border: 0;
  border-radius: 4px;
  color: var(--growth-muted);
  background: var(--growth-white);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, background-color .25s ease;
}

.growth-filter button:hover,
.growth-filter button[aria-selected="true"] {
  border-color: var(--growth-blue);
  color: var(--growth-white);
  background: var(--growth-blue);
}

.growth-filter button:focus-visible,
.growth-cta__actions a:focus-visible {
  outline: 3px solid rgba(30, 90, 150, .42);
  outline-offset: 3px;
}

.growth-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 236px !important;
  gap: 18px !important;
}

.growth-gallery__item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  color: var(--growth-white);
  background: var(--growth-navy);
}

.growth-gallery__item > a {
  display: block;
  position: relative;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.growth-gallery__item > a:focus-visible {
  outline: 3px solid rgba(0, 82, 217, .55);
  outline-offset: -3px;
}

.growth-gallery__item > a > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.growth-gallery__item > a > figcaption {
  margin: 0;
}

.growth-gallery__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.growth-gallery__item--tall {
  grid-column: span 1;
  grid-row: span 1;
}

.growth-gallery__item[hidden] {
  display: none;
}

.growth-gallery__more[hidden] {
  display: none;
}

.growth-gallery__more {
  display: grid;
  min-height: 236px;
  place-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px dashed #b8c8da;
  border-radius: 8px;
  color: var(--growth-blue);
  background: var(--growth-white);
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition: border-color .3s ease, background-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.growth-gallery__more:hover,
.growth-gallery__more:focus-visible {
  border-color: var(--growth-blue);
  background: #edf3ff;
  box-shadow: 0 14px 30px rgba(12, 35, 64, .1);
  transform: translateY(-4px);
}

.growth-gallery__more .material-symbols-outlined {
  font-size: 30px;
}

.growth-gallery__more strong {
  color: var(--growth-navy);
  font-size: 18px;
}

.growth-gallery__more small {
  color: var(--growth-muted);
  font-size: 13px;
}

.growth-gallery__grid.is-filtered .growth-gallery__item {
  grid-column: span 1;
  grid-row: span 1;
}

.growth-gallery__grid.is-single-result .growth-gallery__item {
  grid-column: auto;
}

.growth-gallery__item::after {
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(to top, rgba(12, 35, 64, .92), rgba(12, 35, 64, 0));
  pointer-events: none;
  content: "";
}

.growth-gallery__item img {
  transition: transform .55s ease, filter .35s ease;
}

.growth-gallery__item:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}

.growth-gallery__item figcaption {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
  color: var(--growth-white);
}

.growth-gallery__item figcaption span {
  display: block;
  margin: 0;
  color: #edf3ff;
  font-size: 14px;
  font-weight: 700;
}

.growth-gallery__item figcaption h3 {
  margin: 7px 0 0;
  color: var(--growth-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.growth-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid #d7e3f1;
  border-bottom: 1px solid #d7e3f1;
  background: #eaf1f8;
  text-align: center;
}

.growth-cta__inner {
  position: relative;
  z-index: 1;
}

.growth-cta h2 {
  margin-bottom: 14px;
  color: var(--growth-navy);
}

.growth-cta p {
  max-width: 690px;
  margin: 0 auto 34px;
  color: var(--growth-muted);
}

.growth-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.growth-cta__actions a {
  display: inline-flex;
  min-width: 154px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid var(--growth-blue);
  border-radius: 3px;
  color: var(--growth-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease, background-color .25s ease, transform .25s ease;
}

.growth-cta__actions a:hover {
  border-color: var(--growth-blue);
  color: var(--growth-white);
  background: var(--growth-blue);
  transform: translateY(-2px);
}

.growth-cta__actions .is-primary {
  border-color: var(--growth-blue);
  color: var(--growth-white);
  background: var(--growth-blue);
}

.growth-cta__actions .is-primary:hover {
  border-color: #edf3ff;
  background: #edf3ff;
}

.growth-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}

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

.growth-matrix__card:nth-child(2),
.growth-gallery__item:nth-child(2) { transition-delay: 80ms; }
.growth-matrix__card:nth-child(3),
.growth-gallery__item:nth-child(3) { transition-delay: 140ms; }
.growth-matrix__card:nth-child(4),
.growth-gallery__item:nth-child(4) { transition-delay: 200ms; }
.growth-gallery__item:nth-child(5) { transition-delay: 260ms; }
.growth-gallery__item:nth-child(7) { transition-delay: 320ms; }
.growth-gallery__item:nth-child(8) { transition-delay: 380ms; }
.growth-gallery__item:nth-child(9) { transition-delay: 440ms; }

@media (max-width: 1024px) {
  .growth-section { padding: 72px 0; }
  .growth-strategy__layout { grid-template-columns: 1fr 1fr; gap: 42px; }
  .growth-matrix__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .growth-gallery__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 240px; }
  .growth-gallery__item--wide { grid-column: span 2; grid-row: span 2; }
  .growth-gallery__grid.is-filtered .growth-gallery__item { grid-column: span 1; grid-row: span 1; }
  .growth-gallery__grid.is-single-result .growth-gallery__item { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .growth-container { width: calc(100% - 40px); }
  .growth-section { padding: 56px 0; }
  .growth-content h2 { font-size: 30px; }
  .growth-content h3 { font-size: 20px; }
  .growth-strategy__layout { grid-template-columns: 1fr; gap: 34px; }
  .growth-strategy__copy { padding-left: 20px; }
  .growth-strategy__media { height: 300px; }
  .growth-section-heading { margin-bottom: 34px; text-align: left; }
  .growth-matrix__grid { grid-template-columns: 1fr; }
  .growth-matrix__card { min-height: auto; padding: 24px; }
  .growth-gallery { padding: 64px 0 68px !important; }
  .growth-gallery__header { align-items: stretch; flex-direction: column; margin-bottom: 32px; }
  .growth-filter { margin-right: -20px; padding-right: 20px; }
  .growth-gallery__grid,
  .growth-gallery__grid.is-filtered { grid-template-columns: 1fr; grid-auto-rows: auto !important; gap: 14px !important; }
  .growth-gallery__item,
  .growth-gallery__item--wide,
  .growth-gallery__item--tall,
  .growth-gallery__item:last-child,
  .growth-gallery__grid.is-filtered .growth-gallery__item,
  .growth-gallery__grid.is-single-result .growth-gallery__item {
    grid-column: 1;
    grid-row: span 1;
    min-height: 0;
    height: 300px;
  }
  .growth-gallery__item--wide { min-height: 0; height: 420px; }
  .growth-gallery__grid.is-filtered .growth-gallery__item--wide { min-height: 0; height: 300px; }
  .growth-gallery__more { min-height: 300px; }
  .growth-cta { padding: 64px 0; }
}

@media (max-width: 480px) {
  .growth-strategy__media { height: 260px; }
  .growth-principle { grid-template-columns: 44px minmax(0, 1fr); gap: 14px; padding: 20px 18px; }
  .growth-principle > .material-symbols-outlined { width: 44px; height: 44px; font-size: 25px; }
  .growth-gallery__grid,
  .growth-gallery__grid.is-filtered { grid-auto-rows: auto; }
  .growth-gallery__item figcaption { right: 20px; bottom: 18px; left: 20px; }
  .growth-gallery__item figcaption h3 { font-size: 22px; }
  .growth-cta__actions { flex-direction: column; }
  .growth-cta__actions a { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .growth-content *,
  .growth-content *::before,
  .growth-content *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .growth-reveal {
    opacity: 1;
    transform: none;
  }
}
