/* modern3 — FIP：数据可信 · 传播可测（品牌蓝 #00A0E9，中性墨灰） */
:root {
  --m3-space-1: 8px;
  --m3-space-2: 16px;
  --m3-space-3: 24px;
  --m3-space-4: 32px;
  --m3-space-5: 40px;
  --m3-space-6: 48px;
  --m3-space-7: 64px;
  --m3-radius: 12px;
  --m3-radius-lg: 16px;
  --m3-font: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --m3-blue: #00a0e9;
  --m3-blue-deep: #0077b3;
  --m3-ink: #1a1a1a;
  --m3-gray-900: #2c2c2c;
  --m3-gray-700: #4d4d4d;
  --m3-gray-500: #808080;
  --m3-page: #f4f7fb;
  --m3-page-2: #eef2f8;
  --m3-surface: #ffffff;
  --m3-text: #1a1a1a;
  --m3-muted: #5c656d;
  --m3-border: rgba(77, 77, 77, 0.12);
  --m3-border-blue: rgba(0, 160, 233, 0.22);
  --m3-shadow: 0 8px 32px rgba(26, 26, 26, 0.06);
  --m3-shadow-hover: 0 14px 40px rgba(0, 160, 233, 0.12);
  --m3-max: 1120px;
  --m3-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --m3-stack-gap: var(--m3-space-6);
  --m3-stack-gap-tight: var(--m3-space-5);
  --m3-line: rgba(77, 77, 77, 0.08);
}

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

html {
  scroll-behavior: smooth;
  /* Reserve scrollbar space so short pages (e.g. ClientSystem) don't shift the sticky nav. */
  scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}

body.m3-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--m3-font);
  color: var(--m3-text);
  background-color: var(--m3-page-2);
  background-image: radial-gradient(960px 400px at 10% -5%, rgba(0, 160, 233, 0.1), transparent 52%),
    radial-gradient(720px 360px at 96% 0%, rgba(0, 160, 233, 0.06), transparent 48%),
    linear-gradient(180deg, var(--m3-page) 0%, var(--m3-page-2) 55%, #e8edf5 100%);
  background-attachment: fixed;
  font-size: 15px;
  line-height: 1.6;
}

.m3-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--m3-blue);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 var(--m3-radius) 0;
}

.m3-skip:focus {
  left: 0;
  outline: 2px solid var(--m3-blue-deep);
  outline-offset: 2px;
}

a {
  color: var(--m3-blue-deep);
  text-decoration: none;
}

a:hover {
  color: var(--m3-blue);
}

.m3-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.m3-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.m3-content {
  flex: 1;
  width: 100%;
  max-width: var(--m3-max);
  margin: 0 auto;
  padding: var(--m3-space-4) var(--m3-space-3) var(--m3-space-7);
}

@media (min-width: 768px) {
  .m3-content {
    padding: var(--m3-space-5) var(--m3-space-4) var(--m3-space-7);
  }
}

/* —— 页面组织：首页栈 vs 内页壳 —— */
.m3-stack {
  display: flex;
  flex-direction: column;
  gap: var(--m3-stack-gap);
}

.m3-stack--tight {
  gap: var(--m3-stack-gap-tight);
}

.m3-page {
  display: flex;
  flex-direction: column;
  gap: var(--m3-stack-gap-tight);
  min-width: 0;
}

.m3-page__body {
  display: flex;
  flex-direction: column;
  gap: var(--m3-space-4);
  min-width: 0;
}

.m3-section {
  min-width: 0;
}

.m3-login-panel {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.m3-flow-follow {
  margin-top: var(--m3-space-3);
}

/* —— Top nav only —— */
.m3-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--m3-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.m3-nav__inner {
  max-width: var(--m3-max);
  margin: 0 auto;
  padding: var(--m3-space-2) var(--m3-space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--m3-space-2);
}

.m3-nav__brand {
  display: flex;
  align-items: center;
  gap: var(--m3-space-2);
}

.m3-nav__logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 900px) {
  .m3-nav__logo {
    height: 44px;
  }
}

.m3-nav__links {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 900px) {
  .m3-nav__links {
    display: flex;
  }
}

.m3-nav__links a {
  padding: 10px 14px;
  border-radius: var(--m3-radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--m3-gray-700);
  transition: color 0.2s var(--m3-ease), background 0.2s var(--m3-ease), transform 0.2s var(--m3-ease);
}

.m3-nav__links a:hover {
  color: var(--m3-blue);
  background: rgba(0, 160, 233, 0.08);
  transform: translateY(-1px);
}

.m3-nav__links a.is-active,
.m3-nav__links a[aria-current="page"] {
  color: var(--m3-blue);
  background: rgba(0, 160, 233, 0.12);
  box-shadow: inset 0 0 0 1px var(--m3-border-blue);
}

.m3-nav__links a.m3-nav__login {
  margin-left: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 400;
  color: var(--m3-muted);
}

.m3-nav__links a.m3-nav__login:hover {
  color: var(--m3-blue);
  background: transparent;
  transform: none;
}

.m3-nav__drawer a.m3-nav__login {
  margin-top: 8px;
  color: var(--m3-muted);
  font-weight: 400;
}

.m3-nav__toggle {
  border: 1px solid var(--m3-border-blue);
  background: var(--m3-surface);
  color: var(--m3-ink);
  border-radius: var(--m3-radius);
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
}

@media (min-width: 900px) {
  .m3-nav__toggle {
    display: none;
  }
}

.m3-nav__drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: var(--m3-space-2) var(--m3-space-3) var(--m3-space-3);
  border-bottom: 1px solid var(--m3-border);
  background: var(--m3-surface);
}

.m3-nav__drawer.is-open:not([hidden]) {
  display: flex;
}

.m3-nav__drawer[hidden] {
  display: none !important;
}

.m3-nav__drawer a {
  padding: var(--m3-space-2);
  border-radius: var(--m3-radius);
  color: var(--m3-gray-700);
  font-weight: 500;
}

.m3-nav__drawer a:hover {
  background: rgba(0, 160, 233, 0.08);
  color: var(--m3-blue);
}

/* —— Glass / surface cards (light) —— */
.m3-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--m3-border);
  border-radius: var(--m3-radius-lg);
  backdrop-filter: blur(12px);
  padding: var(--m3-space-3);
  box-shadow: var(--m3-shadow);
  transition: transform 0.25s var(--m3-ease), box-shadow 0.25s var(--m3-ease), border-color 0.25s var(--m3-ease);
}

.m3-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--m3-shadow-hover);
  border-color: var(--m3-border-blue);
}

.m3-card__title {
  margin: 0 0 var(--m3-space-2);
  font-size: 18px;
  font-weight: 600;
  color: var(--m3-gray-900);
}

.m3-card p {
  margin: 0 0 var(--m3-space-2);
  color: var(--m3-muted);
  font-size: 14px;
}

.m3-card p:last-child {
  margin-bottom: 0;
}

.m3-card--with-icon {
  padding-top: var(--m3-space-3);
}

.m3-card__visual {
  width: 52px;
  height: 52px;
  border-radius: var(--m3-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--m3-space-2);
  flex-shrink: 0;
}

.m3-card__icon-svg {
  width: 26px;
  height: 26px;
  color: var(--m3-gray-700);
}

/* —— Hero —— */
.m3-hero {
  position: relative;
  display: grid;
  gap: var(--m3-space-4);
  align-items: center;
  padding: var(--m3-space-4) 0 var(--m3-space-5);
}

.m3-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--m3-blue), rgba(0, 160, 233, 0.2));
}

@media (min-width: 900px) {
  .m3-hero {
    grid-template-columns: 1fr 1fr;
    padding: var(--m3-space-6) 0;
    gap: var(--m3-space-6);
  }
}

.m3-hero__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--m3-blue);
  margin-bottom: var(--m3-space-2);
  letter-spacing: 0.06em;
}

.m3-hero h1 {
  margin: 0 0 var(--m3-space-2);
  font-size: clamp(26px, 4.5vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--m3-ink);
}

.m3-hero .m3-lead {
  margin: 0 0 var(--m3-space-3);
  color: var(--m3-muted);
  font-size: 16px;
  max-width: 36rem;
}

.m3-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--m3-space-2);
}

.m3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--m3-radius);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--m3-ease), box-shadow 0.2s var(--m3-ease);
}

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

.m3-btn--primary {
  background: linear-gradient(120deg, var(--m3-blue), var(--m3-blue-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 160, 233, 0.25);
}

.m3-btn--ghost {
  background: var(--m3-surface);
  border-color: var(--m3-border-blue);
  color: var(--m3-gray-700);
}

.m3-btn--block {
  width: 100%;
  margin-top: var(--m3-space-2);
}

.m3-hero__panel {
  border-radius: var(--m3-radius-lg);
  padding: var(--m3-space-4);
  background: linear-gradient(160deg, #ffffff 0%, rgba(0, 160, 233, 0.06) 100%);
  border: 1px solid var(--m3-border-blue);
  box-shadow: var(--m3-shadow);
  text-align: center;
}

.m3-hero__panel img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

.m3-hero__slogan {
  margin: var(--m3-space-2) 0 0;
  font-size: 15px;
  color: var(--m3-gray-700);
  font-weight: 600;
}

/* —— Core services —— */
.m3-services {
  margin-top: var(--m3-space-5);
  padding: var(--m3-space-5) var(--m3-space-3);
  border-radius: var(--m3-radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fafcfe 100%);
  border: 1px solid var(--m3-border);
  box-shadow: var(--m3-shadow);
}

.m3-stack .m3-services {
  margin-top: 0;
}

@media (min-width: 768px) {
  .m3-services {
    padding: var(--m3-space-6) var(--m3-space-4);
  }
}

.m3-services__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--m3-space-5);
}

.m3-services__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--m3-blue);
  background: rgba(0, 160, 233, 0.1);
  border: 1px solid var(--m3-border-blue);
  margin-bottom: var(--m3-space-2);
}

.m3-services__title {
  margin: 0 0 var(--m3-space-2);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--m3-ink);
  letter-spacing: -0.02em;
}

.m3-services__lead {
  margin: 0;
  font-size: 15px;
  color: var(--m3-gray-500);
  line-height: 1.65;
}

.m3-svc-grid {
  display: grid;
  gap: var(--m3-space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .m3-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .m3-svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.m3-svc-card {
  background: var(--m3-surface);
  border: 1px solid var(--m3-border);
  border-radius: var(--m3-radius-lg);
  padding: var(--m3-space-3);
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.04);
  transition: transform 0.22s var(--m3-ease), box-shadow 0.22s var(--m3-ease);
}

.m3-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--m3-shadow-hover);
  border-color: var(--m3-border-blue);
}

.m3-svc-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--m3-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--m3-space-2);
}

.m3-svc-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--m3-gray-700);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.m3-icon-bg--blue {
  background: rgba(0, 160, 233, 0.14);
}
.m3-icon-bg--green {
  background: rgba(52, 199, 89, 0.16);
}
.m3-icon-bg--red {
  background: rgba(255, 59, 48, 0.14);
}
.m3-icon-bg--purple {
  background: rgba(175, 82, 222, 0.14);
}
.m3-icon-bg--orange {
  background: rgba(255, 149, 0, 0.16);
}
.m3-icon-bg--navy {
  background: rgba(44, 62, 80, 0.1);
}

.m3-svc-card h3 {
  margin: 0 0 var(--m3-space-1);
  font-size: 17px;
  font-weight: 700;
  color: var(--m3-ink);
}

.m3-svc-card p {
  margin: 0;
  font-size: 14px;
  color: var(--m3-gray-500);
  line-height: 1.65;
}

/* —— 内页页眉（与 m3_page_header 宏对应） —— */
.m3-page-head {
  margin-bottom: 0;
  padding-bottom: var(--m3-space-4);
  border-bottom: 1px solid var(--m3-line);
}

.m3-eyebrow {
  margin: 0 0 var(--m3-space-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--m3-blue);
}

.m3-page-head h1 {
  margin: 0 0 var(--m3-space-2);
  font-size: clamp(24px, 3.5vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--m3-ink);
}

.m3-page-head__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 15px;
  line-height: 1.65;
  color: var(--m3-muted);
}

.m3-grid-2 {
  display: grid;
  gap: var(--m3-space-3);
}

@media (min-width: 768px) {
  .m3-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.m3-grid-3 {
  display: grid;
  gap: var(--m3-space-3);
}

@media (min-width: 900px) {
  .m3-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* —— Footer：两层紧凑条，避免三行大留白 —— */
.m3-footer {
  margin-top: auto;
  padding: 20px var(--m3-space-3) 18px;
  border-top: 1px solid var(--m3-border);
  background: #f8fafc;
  color: var(--m3-gray-500);
  font-size: 13px;
}

.m3-footer__inner {
  max-width: var(--m3-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.m3-footer__main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 28px;
}

.m3-footer__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  min-width: 0;
}

.m3-footer__name {
  font-weight: 600;
  color: var(--m3-gray-900);
  font-size: 13px;
  line-height: 1.4;
}

.m3-footer__tagline {
  font-size: 12px;
  color: var(--m3-gray-500);
  line-height: 1.4;
}

.m3-footer__tagline::before {
  content: "·";
  margin-right: 10px;
  color: var(--m3-gray-400);
}

.m3-footer__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  row-gap: 4px;
}

.m3-footer__actions > a,
.m3-footer__nav a {
  color: var(--m3-gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
}

.m3-footer__actions > a:hover,
.m3-footer__nav a:hover {
  color: var(--m3-blue);
}

.m3-footer__actions > a::after,
.m3-footer__nav a:not(:last-child)::after {
  content: "·";
  display: inline-block;
  margin: 0 8px;
  color: var(--m3-gray-400);
  font-weight: 400;
  pointer-events: none;
}

.m3-footer__nav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}

.m3-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  row-gap: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 12px;
  line-height: 1.4;
  color: var(--m3-gray-500);
}

.m3-footer__copy,
.m3-footer__meta a {
  color: var(--m3-gray-500);
  text-decoration: none;
}

.m3-footer__meta a:hover {
  color: var(--m3-blue);
}

.m3-footer__copy::after,
.m3-footer__meta a:not(:last-child)::after {
  content: "·";
  display: inline-block;
  margin: 0 8px;
  color: var(--m3-gray-400);
  pointer-events: none;
}

@media (max-width: 720px) {
  .m3-footer__tagline::before {
    display: none;
  }

  .m3-footer__brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .m3-footer__actions > a:last-of-type::after {
    display: none;
  }

  .m3-footer__nav {
    flex-basis: 100%;
    margin-top: 2px;
  }
}

/* —— Forms —— */
.m3-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--m3-gray-700);
  margin-bottom: 6px;
}

.m3-form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: var(--m3-space-2);
  border-radius: var(--m3-radius);
  border: 1px solid var(--m3-border);
  background: var(--m3-surface);
  color: var(--m3-text);
  font-family: inherit;
}

.m3-form select,
.m3-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: var(--m3-space-2);
  border-radius: var(--m3-radius);
  border: 1px solid var(--m3-border);
  background: var(--m3-surface);
  color: var(--m3-text);
  font-family: inherit;
  resize: vertical;
}

.m3-form input:focus,
.m3-form select:focus,
.m3-form textarea:focus {
  outline: none;
  border-color: var(--m3-blue);
  box-shadow: 0 0 0 3px rgba(0, 160, 233, 0.15);
}

.m3-inquiry-form {
  position: relative;
  max-width: 40rem;
}

@media (max-width: 720px) {
  .m3-inquiry-form__grid {
    grid-template-columns: 1fr;
  }
}

.m3-inquiry-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--m3-space-2);
  margin-top: var(--m3-space-1);
}

.m3-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.m3-sol-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--m3-muted);
  line-height: 1.7;
}

.m3-sol-list li + li {
  margin-top: 0.4rem;
}

.m3-sol-list--compact {
  padding-left: 1.1rem;
}

.m3-sol-list a {
  color: var(--m3-blue);
  text-decoration: none;
}

.m3-sol-list a:hover {
  text-decoration: underline;
}

.m3-offer-card .m3-btn {
  margin-top: var(--m3-space-2);
}

/* —— Clients gallery —— */
.m3-gallery-wrap {
  margin: var(--m3-space-4) 0;
}

.m3-client-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: var(--m3-space-2);
}

.m3-client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 140px;
  padding: 14px 12px;
  border-radius: var(--m3-radius);
  background: var(--m3-surface);
  border: 1px solid var(--m3-border);
  cursor: pointer;
  transition: border-color 0.2s var(--m3-ease), box-shadow 0.2s var(--m3-ease), transform 0.2s var(--m3-ease);
}

.m3-client-logo:hover,
.m3-client-logo:focus-visible {
  border-color: var(--m3-border-blue);
  box-shadow: 0 0 0 1px rgba(0, 160, 233, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.m3-client-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
}

/* —— Lightbox overlay (keep readable; logo-consistent blue accent) —— */
.siteAspectsContainer {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.siteAspectsContainer #imageZoomComp {
  pointer-events: auto;
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

#imageZoomComp .s_UUImageZoomSkinmediaZoomdialogBox {
  background: #ffffff;
  border: 1px solid var(--m3-border-blue);
  border-radius: var(--m3-radius-lg);
  color: var(--m3-ink);
  box-shadow: 0 24px 60px rgba(26, 26, 26, 0.15);
  width: 600px !important;
  max-width: calc(100vw - 32px);
  height: auto !important;
  min-height: 254px;
  margin: 0 auto !important;
  padding: 28px 24px 36px;
  box-sizing: border-box;
}

#imageZoomComp .s_UUImageZoomSkinmediaZoomblockingLayer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  box-sizing: border-box;
}

#imageZoomComp .s_UUImageZoomSkinimageItempanel {
  position: relative !important;
  width: 100% !important;
  color: var(--m3-ink);
}

#imageZoomComp .s_UUImageZoomSkinimageItemimage {
  width: 100% !important;
  text-align: center;
  margin: 0 0 8px;
}

#imageZoomComp .s_UUImageZoomSkinimageItemimage img,
#imageZoomComp #imageZoomCompdataItemImageimage {
  max-height: 120px !important;
  max-width: 420px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

#imageZoomComp .s_UUImageZoomSkinimageItemtitle {
  color: var(--m3-ink);
}

#imageZoomComp .s_UUImageZoomSkinimageItemdescription {
  color: var(--m3-muted);
  width: auto !important;
  max-width: 100%;
}

/* —— Services page: sections, offer cards, flow —— */
.m3-services-block {
  margin-top: var(--m3-space-5);
  padding: var(--m3-space-4) var(--m3-space-3);
  border-radius: var(--m3-radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fafcfe 100%);
  border: 1px solid var(--m3-border);
  box-shadow: var(--m3-shadow);
}

.m3-page__body > .m3-services-block:first-child {
  margin-top: 0;
}

.m3-services-block--tight {
  margin-top: var(--m3-space-3);
}

.m3-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--m3-space-4);
}

.m3-section-head__badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--m3-blue);
  background: rgba(0, 160, 233, 0.1);
  border: 1px solid var(--m3-border-blue);
  margin-bottom: var(--m3-space-2);
}

.m3-section-head__title {
  margin: 0 0 var(--m3-space-2);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--m3-ink);
  letter-spacing: -0.02em;
}

.m3-section-head__lead {
  margin: 0;
  font-size: 14px;
  color: var(--m3-gray-500);
  line-height: 1.65;
}

.m3-section-head__lead strong {
  color: var(--m3-gray-900);
  font-weight: 600;
}

.m3-offer-grid {
  display: grid;
  gap: var(--m3-space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .m3-offer-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .m3-offer-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .m3-offer-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.m3-offer-card {
  background: var(--m3-surface);
  border: 1px solid var(--m3-border);
  border-radius: var(--m3-radius-lg);
  padding: var(--m3-space-3);
  box-shadow: 0 4px 18px rgba(26, 26, 26, 0.04);
  transition: transform 0.22s var(--m3-ease), box-shadow 0.22s var(--m3-ease), border-color 0.22s var(--m3-ease);
}

.m3-offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--m3-shadow-hover);
  border-color: var(--m3-border-blue);
}

.m3-offer-card--compact {
  padding: var(--m3-space-2) var(--m3-space-3);
}

.m3-offer-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--m3-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--m3-space-2);
}

.m3-offer-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--m3-gray-700);
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.m3-offer-card__icon svg path[fill="none"],
.m3-offer-card__icon svg circle {
  fill: none;
}

.m3-offer-card h3 {
  margin: 0 0 var(--m3-space-1);
  font-size: 17px;
  font-weight: 700;
  color: var(--m3-ink);
}

.m3-offer-card p {
  margin: 0;
  font-size: 14px;
  color: var(--m3-gray-500);
  line-height: 1.65;
}

.m3-services-footnote {
  margin-top: var(--m3-space-3);
  font-size: 14px;
  color: var(--m3-muted);
  text-align: center;
}

/* Flow timeline */
.m3-flow-card {
  background: var(--m3-surface);
  border: 1px solid var(--m3-border);
  border-radius: var(--m3-radius-lg);
  padding: var(--m3-space-3) var(--m3-space-3);
  box-shadow: var(--m3-shadow);
}

.m3-flow-card__head {
  display: flex;
  align-items: flex-start;
  gap: var(--m3-space-2);
  margin-bottom: var(--m3-space-3);
  padding-bottom: var(--m3-space-2);
  border-bottom: 1px solid var(--m3-border);
}

.m3-flow-card__head > div:last-child {
  min-width: 0;
  flex: 1;
}

.m3-flow-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--m3-radius);
  background: rgba(0, 160, 233, 0.12);
  color: var(--m3-blue);
  flex-shrink: 0;
}

.m3-flow-card__head h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--m3-ink);
}

.m3-flow-card__sub {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--m3-muted);
}

.m3-flow-card__sub strong {
  color: var(--m3-gray-900);
  font-weight: 600;
}

.m3-flow-note {
  margin: 0 auto var(--m3-space-4);
  max-width: 38rem;
  padding: var(--m3-space-2) var(--m3-space-3);
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
  color: var(--m3-muted);
  background: rgba(0, 160, 233, 0.06);
  border: 1px solid rgba(0, 160, 233, 0.18);
  border-radius: var(--m3-radius);
}

.m3-flow-note strong {
  color: var(--m3-gray-900);
  font-weight: 600;
}

.m3-flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--m3-space-2);
  justify-content: flex-start;
}

.m3-flow-steps--cols {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .m3-flow-steps--cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--m3-space-2) var(--m3-space-3);
    align-items: stretch;
  }

  .m3-flow-steps--cols li {
    min-height: 44px;
  }
}

.m3-flow-steps li {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--m3-radius);
  background: rgba(0, 160, 233, 0.06);
  border: 1px solid rgba(0, 160, 233, 0.15);
  font-size: 13px;
  font-weight: 500;
  color: var(--m3-gray-700);
  line-height: 1.45;
}

.m3-flow-steps__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.m3-flow-steps__label {
  font-weight: 600;
  color: var(--m3-gray-900);
}

.m3-flow-steps__detail {
  font-size: 12px;
  font-weight: 400;
  color: var(--m3-gray-500);
}

.m3-flow-steps__item--key {
  background: rgba(0, 160, 233, 0.1);
  border-color: var(--m3-border-blue);
  box-shadow: inset 0 0 0 1px rgba(0, 160, 233, 0.12);
}

.m3-flow-steps__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--m3-blue), var(--m3-blue-deep));
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .m3-flow-steps {
    gap: var(--m3-space-2) var(--m3-space-3);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .m3-card,
  .m3-svc-card,
  .m3-offer-card,
  .m3-btn {
    transition: none;
  }
  .m3-card:hover,
  .m3-svc-card:hover,
  .m3-offer-card:hover,
  .m3-btn:hover {
    transform: none;
  }
}

.m3-page-head--center {
  text-align: center;
}

.m3-page-head--center .m3-page-head__lead {
  margin-left: auto;
  margin-right: auto;
}

.m3-page-head--splash {
  border-bottom: none;
  padding-bottom: var(--m3-space-3);
}

.m3-contact-meta p {
  margin: 0 0 var(--m3-space-2);
  font-size: 15px;
  color: var(--m3-muted);
  line-height: 1.65;
}

.m3-contact-meta p:last-child {
  margin-bottom: 0;
}

.m3-contact-meta strong {
  color: var(--m3-gray-900);
  font-weight: 600;
}

.m3-quote {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 15px;
  line-height: 1.75;
  color: var(--m3-muted);
}

.m3-quote__cite {
  display: block;
  margin-top: var(--m3-space-2);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  color: var(--m3-gray-500);
}

.m3-hint {
  margin: var(--m3-space-2) 0 0;
  font-size: 13px;
  color: var(--m3-gray-500);
  line-height: 1.55;
}

.m3-clients-disclaimer {
  margin: 0 0 var(--m3-space-3);
  max-width: 52rem;
}

.m3-dialog {
  border: 1px solid var(--m3-border);
  border-radius: var(--m3-radius-lg);
  padding: var(--m3-space-3);
  max-width: 400px;
  width: calc(100% - 32px);
  color: var(--m3-text);
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
}

.m3-dialog::backdrop {
  background: rgba(15, 23, 42, 0.4);
}

.m3-dialog__title {
  margin: 0 0 var(--m3-space-2);
  font-size: 18px;
  font-weight: 600;
}

.m3-dialog__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--m3-muted);
}

.m3-dialog__actions {
  margin-top: var(--m3-space-3);
  display: flex;
  justify-content: flex-end;
}

a:focus-visible,
button:focus-visible,
.m3-nav__toggle:focus-visible {
  outline: 2px solid var(--m3-blue);
  outline-offset: 2px;
}

/* —— Cross-page context (About ↔ Contact) —— */
.m3-page > .m3-context-strip {
  margin-bottom: 0;
}

.m3-context-strip {
  margin-bottom: var(--m3-space-2);
  padding: var(--m3-space-2) var(--m3-space-3);
  border-radius: var(--m3-radius-lg);
  background: linear-gradient(120deg, rgba(0, 160, 233, 0.08), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--m3-border-blue);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--m3-space-2);
}

.m3-context-strip p {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 14px;
  color: var(--m3-muted);
  line-height: 1.65;
}

.m3-context-strip__action {
  flex-shrink: 0;
}

.m3-cross-cta {
  margin-top: var(--m3-space-5);
  padding: var(--m3-space-4) var(--m3-space-3);
  border-radius: var(--m3-radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fafcfe 100%);
  border: 1px solid var(--m3-border);
  box-shadow: var(--m3-shadow);
}

.m3-page__body > .m3-cross-cta {
  margin-top: 0;
}

.m3-cross-cta__title {
  margin: 0 0 var(--m3-space-1);
  font-size: 18px;
  font-weight: 700;
  color: var(--m3-ink);
  letter-spacing: -0.01em;
}

.m3-cross-cta__lead {
  margin: 0 0 var(--m3-space-3);
  font-size: 14px;
  color: var(--m3-gray-500);
  line-height: 1.65;
  max-width: 42rem;
}

.m3-contact-strip__lines {
  display: grid;
  gap: var(--m3-space-2);
  margin-bottom: var(--m3-space-3);
  font-size: 15px;
  color: var(--m3-muted);
  line-height: 1.65;
}

.m3-contact-strip__lines p {
  margin: 0;
}

.m3-contact-strip__lines strong {
  color: var(--m3-gray-900);
  font-weight: 600;
}

.m3-contact-strip__lines a {
  font-weight: 500;
}

.m3-contact-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--m3-space-2);
}

/* —— modern3 overlays —— */

/* modern3: 首页右侧主视觉 — 弱化「白盒子套图」感，与整站浅蓝灰背景融合 */
.m3-hero .m3-hero-panel {
  padding: var(--m3-space-2);
  border: 1px solid rgba(0, 160, 233, 0.12);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.45) 0%, rgba(244, 247, 251, 0.85) 55%, rgba(255, 255, 255, 0.35) 100%);
  box-shadow: 0 18px 56px rgba(26, 26, 26, 0.05), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(10px);
}

.m3-hero-panel__frame {
  border-radius: calc(var(--m3-radius-lg) - 2px);
  overflow: hidden;
  background: radial-gradient(120% 80% at 20% 0%, rgba(0, 160, 233, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
}

.m3-hero-carousel__viewport {
  display: grid;
  align-items: center;
  min-height: min(260px, 40vw);
}

@media (min-width: 900px) {
  .m3-hero-carousel__viewport {
    min-height: 280px;
  }
}

.m3-hero-carousel__slide {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}

.m3-hero-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
}

.m3-hero-panel img.m3-hero-panel__visual {
  display: block;
  max-height: min(260px, 40vw);
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 900px) {
  .m3-hero-panel img.m3-hero-panel__visual {
    max-height: 280px;
  }
}

.m3-hero-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 0 2px;
}

.m3-hero-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 160, 233, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.m3-hero-carousel__dot:hover,
.m3-hero-carousel__dot:focus-visible {
  background: rgba(0, 160, 233, 0.55);
  outline: none;
}

.m3-hero-carousel__dot:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 160, 233, 0.25);
}

.m3-hero-carousel__dot.is-active {
  background: var(--m3-blue, #00a0e9);
  transform: scale(1.15);
}

.m3-hero-panel__slogan {
  margin-top: var(--m3-space-2);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--m3-gray-500);
  min-height: 1.4em;
}

@media (prefers-reduced-motion: reduce) {
  .m3-hero-carousel__slide,
  .m3-hero-carousel__dot {
    transition: none;
  }
}

/* modern3: 强化证据化表达与可视化模块 */
.m3-metrics {
  display: grid;
  gap: var(--m3-space-2);
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .m3-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .m3-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.m3-metric-item {
  background: var(--m3-surface);
  border: 1px solid var(--m3-border);
  border-radius: var(--m3-radius-lg);
  box-shadow: 0 4px 18px rgba(26, 26, 26, 0.04);
  padding: var(--m3-space-3);
}

.m3-metric-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--m3-gray-900);
}

.m3-metric-item p {
  margin: 0;
  font-size: 13px;
  color: var(--m3-muted);
  line-height: 1.55;
}

.m3-method-grid,
.m3-deliverables-grid,
.m3-case-results,
.m3-contact-scenes {
  display: grid;
  gap: var(--m3-space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .m3-method-grid,
  .m3-case-results,
  .m3-contact-scenes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .m3-deliverables-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

.m3-case-results .m3-offer-card,
.m3-contact-scenes .m3-offer-card {
  height: 100%;
}

.m3-home-flow {
  background: linear-gradient(180deg, #ffffff 0%, #fafcfe 100%);
  border: 1px solid var(--m3-border);
  border-radius: var(--m3-radius-lg);
  box-shadow: var(--m3-shadow);
  padding: var(--m3-space-4) var(--m3-space-3);
}

.m3-home-flow__title {
  margin: 0 0 var(--m3-space-2);
  font-size: 20px;
  color: var(--m3-gray-900);
}

.m3-home-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--m3-space-2);
  grid-template-columns: 1fr;
}

.m3-home-flow__steps li {
  border: 1px solid var(--m3-border);
  border-radius: var(--m3-radius);
  background: var(--m3-surface);
  padding: 12px 14px;
}

.m3-home-flow__steps strong {
  display: block;
  font-size: 14px;
  color: var(--m3-gray-900);
  margin-bottom: 2px;
}

.m3-home-flow__steps span {
  font-size: 13px;
  color: var(--m3-muted);
}

@media (min-width: 900px) {
  .m3-home-flow__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.m3-home-cta {
  padding: var(--m3-space-4) var(--m3-space-3);
  border-radius: var(--m3-radius-lg);
  border: 1px solid var(--m3-border-blue);
  background: linear-gradient(130deg, rgba(0, 160, 233, 0.08), rgba(255, 255, 255, 0.94));
}

.m3-home-cta h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--m3-gray-900);
}

.m3-home-cta p {
  margin: 0 0 var(--m3-space-3);
  max-width: 40rem;
  color: var(--m3-muted);
  font-size: 14px;
  line-height: 1.65;
}

.m3-home-cta--service {
  margin-top: var(--m3-space-2);
}

.m3-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.m3-case-tags span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--m3-border-blue);
  border-radius: 999px;
  background: rgba(0, 160, 233, 0.08);
  color: var(--m3-blue-deep);
  font-size: 12px;
  font-weight: 600;
}

.m3-testimonials {
  display: grid;
  gap: var(--m3-space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .m3-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.m3-response-sla {
  border-radius: var(--m3-radius-lg);
  border: 1px solid var(--m3-border);
  background: #fff;
  box-shadow: 0 4px 18px rgba(26, 26, 26, 0.04);
  padding: var(--m3-space-3);
}

.m3-response-sla h2 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--m3-gray-900);
}

.m3-response-sla p {
  margin: 0;
  color: var(--m3-muted);
  font-size: 14px;
  line-height: 1.65;
}


/* —— 源见 · 行业洞察 —— */
.m3-insights__meta {
  margin: 0 0 var(--m3-space-3);
  color: var(--m3-muted);
  font-size: 14px;
}

.m3-insights__meta strong {
  color: var(--m3-gray-900);
  font-weight: 600;
}

.m3-insights__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 var(--m3-space-3);
}

.m3-insights__chip {
  appearance: none;
  border: 1px solid var(--m3-border);
  background: var(--m3-surface);
  color: var(--m3-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.m3-insights__chip:hover,
.m3-insights__chip:focus-visible {
  border-color: var(--m3-border-blue);
  color: var(--m3-blue-deep);
  outline: none;
}

.m3-insights__chip:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 160, 233, 0.2);
}

.m3-insights__chip.is-active {
  background: rgba(0, 160, 233, 0.1);
  border-color: var(--m3-border-blue);
  color: var(--m3-blue-deep);
}

.m3-home-insights {
  margin-top: var(--m3-space-2);
}

.m3-home-insights__more {
  display: flex;
  justify-content: center;
  margin-top: var(--m3-space-3);
}

.m3-insights__grid {
  display: grid;
  gap: var(--m3-space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .m3-insights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .m3-insights__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.m3-insight-card {
  margin: 0;
  border: 1px solid var(--m3-border);
  border-radius: var(--m3-radius-lg);
  background: var(--m3-surface);
  box-shadow: 0 4px 18px rgba(26, 26, 26, 0.04);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.m3-insight-card:hover {
  border-color: var(--m3-border-blue);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.07);
  transform: translateY(-2px);
}

.m3-insight-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.m3-insight-card__cover {
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, rgba(0, 160, 233, 0.08), rgba(244, 247, 251, 0.9));
  overflow: hidden;
}

.m3-insight-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m3-insight-card__placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(80% 80% at 30% 20%, rgba(0, 160, 233, 0.15), transparent 60%),
    linear-gradient(180deg, #f4f7fb, #eef3f8);
}

.m3-insight-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: var(--m3-space-3);
  flex: 1;
}

.m3-insight-card__cat {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--m3-blue-deep);
  background: rgba(0, 160, 233, 0.08);
  border: 1px solid var(--m3-border-blue);
  border-radius: 999px;
  padding: 2px 10px;
}

.m3-insight-card__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: var(--m3-gray-900);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.m3-insight-card__by {
  margin: 0;
  font-size: 13px;
  color: var(--m3-muted);
}

.m3-insight-card__cta {
  margin-top: auto;
  padding-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--m3-blue);
}

.m3-insights__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--m3-space-2);
  margin-top: var(--m3-space-4);
}

.m3-insights__more .m3-btn.is-disabled,
.m3-insights__more .m3-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  color: var(--m3-muted);
  border-color: var(--m3-border);
  background: #f3f5f7;
  box-shadow: none;
  transform: none;
}

.m3-insights__status {
  margin: 0;
  font-size: 13px;
  color: var(--m3-muted);
}

.m3-insights__empty {
  margin: var(--m3-space-4) 0;
  color: var(--m3-muted);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .m3-insight-card {
    transition: none;
  }
  .m3-insight-card:hover {
    transform: none;
  }
}
