* {
  box-sizing: border-box;
}

:root {
  --bg: #f7fafd;
  --surface: #ffffff;
  --surface-soft: #eef4fa;
  --surface-muted: #f8fbff;
  --line: #e4ebf3;
  --line-strong: #c7d5ee;
  --text: #0f172a;
  --muted: #64748b;
  --muted-soft: #94a3b8;
  --brand: #2f5faf;
  --brand-strong: #1f4f9c;
  --brand-accent: #1a66a8;
  --brand-bright: #1d73ba;
  --green: #0b6b5a;
  --footer: #2f5faf;
  --shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.06);
  --shadow-brand: 0 10px 24px rgba(29, 78, 216, 0.14);
  --motion-fast: 0.22s;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page {
  width: 100%;
  overflow: hidden;
}

.container {
  width: min(1328px, calc(100vw - 48px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.15;
}

.section-desc {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.header-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  color: var(--brand-accent);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #475569;
  font-size: 14px;
}

.nav>a,
.nav-dropdown>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  transition: color var(--motion-fast) var(--motion-ease), background var(--motion-fast) var(--motion-ease);
}

.nav>a:hover,
.nav-dropdown>a:hover {
  background: #f3f7ff;
  color: var(--brand);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  padding: 24px 0;
  margin: -24px 0;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 144px;
  padding: 8px;
  border: 1px solid #e5edf8;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.nav-menu a {
  display: block;
  padding: 9px 11px;
  border-radius: 8px;
  color: #4b5f7d;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
}

.nav-menu a:hover {
  background: #f1f6ff;
  color: #2563eb;
}

.nav-dropdown:hover .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-menu-small {
  min-width: 128px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-menu-btn {
  display: none;
}

.login-link {
  color: #475569;
  font-size: 14px;
}

.login-link:hover {
  color: var(--brand);
}

.demo-wrap {
  position: relative;
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow-brand);
}

.demo-btn:hover {
  background: var(--brand-strong);
}

.demo-btn svg {
  width: 14px;
  height: 14px;
  transition: transform var(--motion-fast) var(--motion-ease);
}

.demo-wrap.open .demo-btn svg {
  transform: rotate(180deg);
}

.demo-card {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 420px;
  padding: 20px 18px 18px;
  border: 1px solid #dde6f3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--motion-fast) var(--motion-ease), transform var(--motion-fast) var(--motion-ease);
}

.demo-mobile-close {
  display: none;
}

.demo-wrap.open .demo-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav {
  display: none;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: min(320px, 86vw);
  height: 100%;
  padding: 14px 12px 18px;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform var(--motion-fast) var(--motion-ease);
  overflow-y: auto;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5edf8;
}

.mobile-nav-head strong {
  font-size: 14px;
  color: #16233b;
}

.mobile-nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #dbe7f8;
  border-radius: 999px;
  background: #f8fbff;
  color: #33517c;
  font-size: 12px;
  font-weight: 700;
}

.mobile-nav-panel>a,
.mobile-nav-group>span {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.mobile-nav-group>span {
  cursor: default;
}

.mobile-nav-panel>a:hover {
  background: #eff6ff;
  color: #2563eb;
}

.mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px 0;
}

.mobile-nav-group>a {
  display: block;
  margin-left: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.mobile-nav-group>a:hover {
  background: #f5f8fe;
  color: #2563eb;
}

.mobile-nav.open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.demo-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.demo-card h4 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
}

.demo-table {
  overflow: hidden;
  border: 1px solid #e6edf7;
  border-radius: 10px;
  background: #fafcff;
}

.demo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px 72px;
}

.demo-row div {
  padding: 12px;
  font-size: 12px;
}

.demo-row.head {
  background: #f3f7fd;
  font-weight: 700;
  color: #334155;
}

.demo-row.body {
  border-top: 1px solid #e6edf7;
  color: var(--text);
}

.demo-follow {
  margin: 14px 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
}

.demo-qr {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qr-box {
  position: relative;
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border: 1px solid #d9e4f7;
  border-radius: 8px;
  background: #fff;
}

.qr-box span {
  position: absolute;
  display: block;
  border-radius: 2px;
  background: #1e3a8a;
}

.demo-qr-label {
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.hero {
  padding: 52px 0 44px;
  color: #fff;
  background: linear-gradient(180deg, var(--brand-strong) 0%, var(--brand) 56%, #5f8fdd 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  align-items: start;
}

.hero-label {
  margin: 0 0 12px;
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 1.02;
}

.hero-desc {
  max-width: 720px;
  margin: 16px 0 0;
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.6;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.hero-highlight .bar {
  width: 3px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-highlight strong {
  display: block;
  font-size: 18px;
}

.hero-highlight span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

.hero-btn.primary {
  background: #fff;
  color: var(--brand);
}

.hero-btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-card {
  border: 1px solid #dfe8f6;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(252, 253, 255, 0.98) 0%, rgba(244, 248, 253, 0.98) 100%);
  padding: 22px 22px 18px;
  color: var(--text);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.hero-card .eyebrow {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-card h3 {
  margin: 0 0 10px;
  color: #16233b;
  font-size: 28px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-card-desc {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.schedule-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border: 1px solid #e5edf8;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 14px;
}

.schedule-item>div {
  color: #16233b;
  font-weight: 600;
}

.schedule-item small {
  color: #6b7a90;
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
}

.status {
  color: #2563eb;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-note {
  margin-top: 12px;
  padding: 16px 16px 14px;
  border-radius: 12px;
  background: #2f5faf;
  color: #fff;
}

.hero-note h4 {
  margin: 0;
  font-size: 14px;
}

.hero-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.6;
}

section {
  padding: 40px 0 48px;
}

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

.service-card {
  padding: 22px;
  border: 1px solid #edf2f8;
  border-radius: 12px;
  background: #ffffff;
}

.service-card img {
  height: 88px;
  border-radius: 10px;
  object-fit: cover;
}

.service-card h3 {
  margin: 0;
  color: #16233b;
  font-size: 22px;
}

.service-card p {
  margin: 10px 0 0;
  color: #5d6b80;
  font-size: 13.5px;
  line-height: 1.6;
}

.service-card .service-tag {
  margin: 14px 0 8px;
  color: #2563eb;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.solutions {
  background: #f7fafd;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.partner-card {
  padding: 18px 20px;
  border: 1px solid #f3f6fb;
  border-radius: 12px;
  background: #f6f9fd;
}

.partner-card .topbar {
  width: 36px;
  height: 4px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #2563eb;
}

.partner-card h3 {
  margin: 0;
  font-size: 18px;
}

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

.partner-card.primary {
  border-color: transparent;
  background: var(--brand);
  box-shadow: var(--shadow-brand);
}

.partner-card.primary h3,
.partner-card.primary p {
  color: #fff;
}

.solution-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.solution-row {
  display: grid;
  gap: 18px;
}

.solution-row.top {
  grid-template-columns: minmax(0, 1fr) 324px 328px;
}

.solution-row.mid {
  grid-template-columns: 330px minmax(0, 1fr) 328px;
}

.solution-row.bottom {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-card {
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.solution-card.soft {
  background: #eef4fa;
}

.solution-card.green {
  background: var(--green);
  box-shadow: 0 10px 24px rgba(11, 107, 90, 0.16);
}

.solution-card.blue {
  background: #1d4ed8;
  box-shadow: var(--shadow-brand);
}

.solution-card.featured {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.solution-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
}

.solution-card h3 {
  margin: 0;
  font-size: 21px;
}

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

.solution-card .list {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.75;
  color: #334155;
}

.solution-card.green h3,
.solution-card.green p,
.solution-card.green .list,
.solution-card.blue h3,
.solution-card.blue p,
.solution-card.blue .list {
  color: #fff;
}

.solution-link {
  display: inline-block;
  margin-top: 16px;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cases-grid {
  display: grid;
  gap: 0;
  margin-top: 14px;
}

.cases-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.cases-link {
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

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

.case-card {
  position: relative;
  min-height: 237px;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
  cursor: pointer;
  transition: transform var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) var(--motion-ease);
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card .hover-glass {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.22) 0%, rgba(15, 23, 42, 0.34) 100%);
  transition: opacity var(--motion-fast) var(--motion-ease);
  z-index: 1;
}

.case-card .hover-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--motion-fast) var(--motion-ease);
}

.case-card .hover-text small {
  display: block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.52);
}

.case-card .hover-text strong {
  display: block;
  margin-top: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.56);
}

.case-enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #f8fbff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(2px);
}

.case-card.is-hover .hover-glass,
.case-card.is-hover .hover-text,
.case-card:hover .hover-glass,
.case-card:hover .hover-text {
  opacity: 1;
}

.case-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
}

.technician-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
  padding: 40px 0 48px;
}

.tech-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tech-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
}

.tech-body {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.case-preview {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-preview-label {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.preview-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.preview-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preview-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.preview-thumb img {
  height: 100%;
  object-fit: cover;
}

.preview-name {
  color: #334155;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.tech-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border: 1px solid #ecf1f7;
  border-radius: 14px;
  background: #fbfcfe;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.person-name {
  margin: 0;
  font-size: 22px;
}

.person-role {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-block {
  padding: 16px 0;
  border-top: 1px solid #e2e8f0;
}

.contact-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-title svg {
  width: 16px;
  height: 16px;
  color: #4e6fae;
}

.contact-value {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.contact-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.portrait {
  height: 260px;
  border-radius: 24px;
  object-fit: cover;
}

.wechat-contact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0 0;
  border-top: 1px solid #e2e8f0;
}

.wechat-contact .footer-qr-img {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
}

.wechat-info {
  min-width: 0;
  padding-top: 4px;
}

.wechat-contact h4 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
}

.wechat-contact p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
}

.wechat-contact small {
  display: block;
  margin-top: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
}

.news-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.news-link {
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

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

.news-card {
  padding: 18px 18px 16px;
  border: 1px solid #eef3f8;
  border-radius: 10px;
  background: #fbfcfe;
}

.news-card img {
  height: 148px;
  border-radius: 10px;
  object-fit: cover;
}

.news-card .tag {
  margin-top: 12px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
}

.news-card h3 {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.3;
}

.footer-cta {
  padding: 30px 0 26px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.cta-box h2 {
  margin: 0;
  font-size: 32px;
}

.cta-box p {
  margin: 10px 0 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.cta-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  background: #fff;
  color: #2257a6;
  font-weight: 700;
  margin-left: 36px;
}

.footer {
  padding: 0 0 22px;
  background: linear-gradient(180deg, #3b6dbd 0%, #2f5faf 42%, #2c579d 100%);
  color: #fff;
}

.footer-top {
  display: flex;
  gap: 24px;
  padding-top: 26px;
}

.footer-more-toggle {
  display: none;
}

.footer-more-panel {
  display: flex;
  gap: 24px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 16px;
  border-right: 1px solid rgba(175, 194, 229, 0.3);
}

.footer-col:last-child {
  padding-right: 0;
  border-right: 0;
}

.footer-col.brand-col {
  width: 246px;
}

.footer-col.service-col {
  width: 208px;
}

.footer-col.contact-col {
  width: 250px;
}

.footer-col.news-col {
  width: 230px;
  border-right: 1px solid rgba(175, 194, 229, 0.3);
}

.footer-col.qr-col {
  width: 214px;
  align-items: center;
}

.footer h4 {
  margin: 0;
  color: #f3f7ff;
  font-size: 15px;
}

.footer .brand-name {
  color: #f8fbff;
  font-size: 20px;
  font-weight: 700;
}

.footer .brand-desc,
.footer .item,
.footer .contact-item,
.footer .qr-desc {
  color: #dbeafe;
  font-size: 14px;
  line-height: 1.6;
}

.footer .item,
.footer .contact-item {
  opacity: 0.95;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.footer .brand-desc {
  max-width: 180px;
  white-space: nowrap;
}

.footer .contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer .contact-item svg {
  width: 14px;
  height: 14px;
}

.footer-qr-img {
  width: 112px;
  height: 112px;
  border-radius: 10px;
  background: #fff;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin: 20px 0 0;
  background: rgba(191, 219, 254, 0.22);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
}

.footer-bottom span {
  color: #d6e4ff;
  font-size: 13px;
}

.nav a:focus-visible,
.demo-btn:focus-visible,
.mobile-menu-btn:focus-visible,
.hero-btn:focus-visible,
.cases-link:focus-visible,
.news-link:focus-visible,
.footer-more-toggle:focus-visible,
.floating-btn:focus-visible,
.cta-btn:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.floating-bar {
  position: fixed;
  right: 16px;
  top: 50%;
  z-index: 18;
  transform: translateY(-50%);
}

.floating-stack {
  display: flex;
  flex-direction: column;
  border: 1px solid #e3eaf3;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.floating-btn {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 56px;
  height: 58px;
  padding: 6px 4px;
  background: transparent;
  color: #4b5f7d;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  border: 0;
  cursor: pointer;
  transition: color 0.18s ease;
}

.floating-btn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  border-radius: 10px;
  transition: background 0.18s ease, color 0.18s ease;
}

.floating-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
}

.floating-label {
  padding: 0;
  border-radius: 0;
}

.floating-btn:hover,
.floating-btn:hover .floating-btn-inner {
  color: #2563eb;
}

.floating-btn:hover .floating-btn-inner {
  background: #eff6ff;
}

.floating-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.floating-panel {
  position: absolute;
  right: calc(100% + 14px);
  min-width: 214px;
  padding: 14px;
  border: 1px solid #dfe8f6;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.phone-panel {
  top: 4px;
}

.wechat-panel {
  top: 66px;
  min-width: 176px;
  text-align: center;
}

.floating-panel h4 {
  margin: 0;
  color: #16233b;
  font-size: 14px;
}

.floating-panel p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.55;
}

.phone-number {
  display: block;
  margin-top: 10px;
  color: #1a66a8;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  margin-top: 12px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
}

.wechat-panel .footer-qr-img {
  width: 112px;
  height: 112px;
  margin: 10px auto 0;
}

.subnav-link {
  color: var(--brand);
  font-weight: 700;
}

.news-page-hero {
  padding: 52px 0 44px;
  color: #fff;
  background: linear-gradient(180deg, var(--brand-strong) 0%, var(--brand) 56%, #5f8fdd 100%);
}

.news-page-hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 388px;
  gap: 42px;
  min-height: 450px;
  align-items: start;
}

.news-page-hero .hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 780px;
}

.contact-hero-copy,
.template-hero-copy,
.news-detail-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.news-page-hero .hero-copy h1,
.news-detail-hero h1 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 56px);
  line-height: 1.04;
}

.news-detail-hero h1 {
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1.08;
}

.news-page-hero .hero-copy p,
.news-detail-hero .hero-summary {
  margin: 0;
  max-width: 760px;
  color: #dbeafe;
  font-size: 16px;
  line-height: 1.65;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 580px;
}

.hero-stat-card {
  padding: 11px 14px;
  border: 1px solid rgba(147, 197, 253, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.hero-stat-card strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.hero-stat-card span {
  display: block;
  margin-top: 4px;
  color: #dbeafe;
  font-size: 12px;
  line-height: 1.5;
}

.hero-focus-card {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 20px;
  border: 1px solid #dde7f6;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(249, 251, 254, 0.98) 0%, rgba(244, 248, 253, 0.98) 100%);
  color: var(--text);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.hero-focus-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-focus-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.24;
}

.hero-focus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.hero-focus-card img {
  height: 168px;
  border-radius: 10px;
  object-fit: cover;
}

.hero-focus-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #e7eef8;
  color: var(--muted);
  font-size: 12px;
}

.hero-focus-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-focus-author strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.hero-focus-author span {
  color: var(--muted);
  font-size: 11px;
}

.hero-focus-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}

.news-filter-bar {
  padding: 18px 0 0;
  background: #fff;
  border-bottom: 1px solid #e8eef6;
}

.news-filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 16px;
}

.news-filter-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.news-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}

.news-filter-chip.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(47, 95, 175, 0.18);
}

.news-filter-summary {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #e3ebf5;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.news-filter-summary strong {
  color: #1e3a8a;
  font-size: 12px;
}

.news-filter-summary span {
  color: var(--muted);
  font-size: 12px;
}

.news-filter-hint {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
}

.news-main {
  padding: 32px 0 52px;
}

.news-section-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.news-section-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 6px;
  text-align: right;
}

.news-section-meta strong {
  color: var(--brand);
  font-size: 13px;
}

.news-section-meta span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.news-layout,
.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.news-layout>aside,
.news-detail-layout>aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 16px;
  padding: 18px;
  border: 1px solid #e6edf7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.featured-story-main img {
  height: 248px;
  margin-bottom: 14px;
  border-radius: 12px;
  object-fit: cover;
}

.story-tag {
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
}

.featured-story-main h3,
.story-list-card h3 {
  margin: 8px 0 0;
  font-size: 19px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-story-main p,
.story-list-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-story-main p {
  -webkit-line-clamp: 3;
}

.story-list-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.story-list-card h3 {
  min-height: 52px;
}

.story-excerpt {
  min-height: 44px;
}

.featured-story-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-story-metric {
  padding: 12px;
  border-radius: 12px;
  background: #f8fbff;
}

.featured-story-metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.featured-story-metric strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 18px;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  padding-top: 2px;
}

.news-page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #dce6f2;
  border-radius: 10px;
  background: #fff;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.news-page-btn.is-current {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 20px rgba(47, 95, 175, 0.14);
}

.news-page-btn.is-disabled {
  color: #94a3b8;
  background: #f8fafc;
  pointer-events: none;
}

.news-page-ellipsis {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

.story-list-card {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid #e6edf7;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.03);
}

.story-list-card img {
  height: 128px;
  border-radius: 10px;
  object-fit: cover;
}

.story-list-meta {
  margin-top: 10px;
  color: var(--muted-soft);
  font-size: 12px;
}

.side-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 16px;
  border: 1px solid #e6edf7;
  border-radius: 12px;
  background: #fbfcfe;
}

.side-card h3 {
  margin: 0;
  font-size: 18px;
}

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

.side-link-list a {
  display: block;
}

.side-rank-item {
  position: relative;
  padding: 0 0 12px 0;
  border-bottom: 1px solid #edf2f8;
}

.side-rank-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.side-rank-item em {
  display: block;
  margin-bottom: 6px;
  color: #2563eb;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.side-link-list strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.side-link-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.search-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid #e6edf7;
  border-radius: 12px;
  background: #fbfcfe;
}

.search-card h3 {
  margin: 0;
  font-size: 19px;
}

.search-input-wrap {
  margin: 0;
}

.search-input-wrap input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #dce6f2;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
}

.search-input-wrap input::placeholder {
  color: var(--muted-soft);
}

.search-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.search-card-actions span {
  color: var(--muted-soft);
  font-size: 12px;
  font-weight: 600;
}

.search-btn,
.back-list-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
}

.search-btn {
  background: var(--brand);
  color: #fff;
}

.search-helper {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.back-list-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 40px;
  padding: 8px 0;
  border-color: transparent;
  border-radius: 0;
  background: transparent;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.back-list-link-mobile {
  display: none;
}

.insights-section {
  padding: 34px 0 40px;
  background: #fff;
}

.insights-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

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

.insight-card {
  padding: 18px 18px 16px;
  border: 1px solid #e8eef6;
  border-radius: 12px;
  background: #fbfcfe;
}

.insight-card span {
  display: block;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
}

.insight-card h3 {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.3;
}

.insight-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.news-detail-hero {
  padding: 34px 0 24px;
  color: #fff;
  background: linear-gradient(180deg, var(--brand-strong) 0%, var(--brand) 56%, #5f8fdd 100%);
}

.news-detail-breadcrumb,
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #bfdbfe;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-detail-copy {
  max-width: 860px;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.news-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.news-detail-main {
  padding: 34px 0 44px;
}

.news-detail-layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  justify-content: space-between;
}

.news-detail-primary {
  max-width: 920px;
}

.detail-side {
  position: sticky;
  top: 96px;
}

.article-cover-card {
  overflow: hidden;
  border: 1px solid #e6edf7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.article-cover {
  width: 100%;
  height: 396px;
  object-fit: cover;
}

.article-cover-caption {
  padding: 10px 16px 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.article-body {
  margin-top: 18px;
  padding: 32px 34px 38px;
  border: 1px solid #e6edf7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.article-body .article-eyebrow {
  margin: 0 0 14px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.article-body h2 {
  margin: 26px 0 14px;
  font-size: 28px;
  line-height: 1.2;
  max-width: 780px;
}

.article-body p {
  margin: 0 0 18px;
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
  max-width: 780px;
  word-break: break-word;
}

.article-body ul,
.article-body ol {
  max-width: 780px;
  padding-left: 20px;
}

.article-body li {
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
}

.article-body a {
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body img,
.article-body table {
  max-width: 100%;
}

.article-quote {
  margin: 10px 0 18px;
  padding: 18px 20px;
  border: 1px solid #d7e7ff;
  border-radius: 12px;
  background: #eff6ff;
  max-width: 780px;
}

.article-quote strong {
  display: block;
  color: #2563eb;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.article-quote p {
  margin: 10px 0 0;
  color: #1e3a8a;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
}

.contact-page {
  background: #fff;
}

.contact-page section[id] {
  scroll-margin-top: 112px;
}

.contact-hero {
  padding-bottom: 48px;
}

.contact-hero-copy .hero-desc {
  max-width: 640px;
  margin: 0;
  color: #deebff;
  font-size: 16px;
  line-height: 1.72;
}

.contact-hero-copy {
  max-width: 790px;
  gap: 12px;
}

.contact-hero-copy .hero-breadcrumb {
  margin-bottom: 2px;
}

.contact-hero-copy h1 {
  max-width: 13ch;
  margin: 2px 0 2px;
  line-height: 1.05;
  letter-spacing: -0.018em;
}

.hero-copy-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-copy-inline span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(191, 219, 254, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #eff6ff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-copy {
  display: inline;
}

.mobile-copy {
  display: none;
}

.contact-highlight-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 8px;
}

.contact-highlight-card {
  height: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(207, 224, 251, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-highlight-card .bar {
  height: 30px;
}

.contact-highlight-card strong {
  font-size: 17px;
  line-height: 1.15;
}

.contact-highlight-card span {
  margin-top: 3px;
  line-height: 1.4;
}

.contact-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.contact-hero-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-hero-links a::after {
  content: "→";
  color: rgba(255, 255, 255, 0.76);
  transition: transform 0.18s ease;
}

.contact-hero-links a:hover::after {
  transform: translateX(2px);
}

.section-nav-link.active {
  color: #fff;
}

.contact-hero-links .section-nav-link.active::after {
  transform: translateX(2px);
}

.about-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.about-quick-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(191, 219, 254, 0.62);
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
}

.about-quick-nav a:hover {
  border-color: rgba(191, 219, 254, 0.9);
  background: rgba(219, 234, 254, 0.18);
}

.about-quick-nav .section-nav-link.active {
  border-color: rgba(147, 197, 253, 0.95);
  background: rgba(147, 197, 253, 0.28);
  color: #fff;
}

.about-sticky-nav-wrap {
  position: sticky;
  top: 72px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.about-sticky-nav-wrap.is-elevated {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.about-filter-row {
  padding-bottom: 16px;
}

.contact-hero-card h3 {
  font-size: 22px;
  white-space: normal;
}

.contact-list {
  margin-top: 16px;
}

.contact-item-card {
  min-height: 92px;
  gap: 14px;
  padding: 16px 16px 14px;
  border-color: #dce7f6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-item-main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.contact-item-main svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #2563eb;
}

.contact-item-main strong {
  display: block;
  color: #16233b;
  font-size: 14px;
  line-height: 1.35;
}

.contact-item-main small {
  display: block;
  margin-top: 4px;
  color: #6b7a90;
  font-size: 12px;
  line-height: 1.5;
}

.contact-qr-card {
  align-items: flex-start;
}

.contact-qr-card .status {
  align-self: center;
}

.contact-qr-main {
  align-items: flex-start;
}

.contact-qr-image {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  padding: 4px;
  border: 1px solid #d9e4f7;
  border-radius: 10px;
  background: #fff;
}

.contact-payment-section {
  padding: 40px 0 44px;
  background: #fff;
}

.contact-tight-head {
  margin-bottom: 14px;
}

.contact-payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.payment-card {
  min-width: 0;
  border: 1px solid #e8eef8;
  border-radius: 16px;
  padding: 22px 24px;
}

.payment-card-main {
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.payment-card-flow {
  background: #eef4fa;
}

.payment-card-head,
.payment-flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.payment-card-head h3,
.payment-flow-head h3 {
  margin: 0;
  font-size: 18px;
}

.payment-card-head {
  padding-bottom: 12px;
  border-bottom: 1px solid #edf3fa;
}

.payment-flow-head {
  flex-direction: column;
  align-items: flex-start;
}

.payment-flow-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 600;
}

.payment-account {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.payment-mark {
  position: relative;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
}

.payment-mark-outer {
  position: absolute;
  inset: 0;
  border: 5px solid #2f8a6d;
  border-radius: 999px;
}

.payment-mark-inner {
  position: absolute;
  left: 28px;
  top: 16px;
  width: 16px;
  height: 40px;
  border-radius: 999px;
  background: #2f8a6d;
}

.payment-mark-inner::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  width: 6px;
  height: 40px;
  background: #fff;
}

.payment-mark-cross {
  position: absolute;
  left: 28px;
  top: 31px;
  width: 16px;
  height: 6px;
  background: #fff;
}

.payment-table {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 10px 12px;
  border: 1px solid #e7eef8;
  border-radius: 12px;
  background: #fbfdff;
}

.payment-row+.payment-row {
  margin-top: 0;
}

.payment-label {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.payment-value {
  color: #334155;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  word-break: break-all;
}

.payment-flow-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 16px;
}

.payment-step {
  min-height: 110px;
  padding: 16px 16px 14px;
  border: 1px solid #d6e3f4;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.payment-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.12);
}

.payment-step strong {
  display: block;
  margin-top: 10px;
  color: #0f172a;
  font-size: 16px;
}

.payment-step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.payment-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 2px;
  color: transparent;
}

.payment-flow-arrow::before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.2) 0%, rgba(29, 78, 216, 0.55) 100%);
}

.payment-flow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(29, 78, 216, 0.55);
  border-right: 2px solid rgba(29, 78, 216, 0.55);
  transform: translateY(-50%) rotate(45deg);
}

.about-text-block {
  max-width: 860px;
  margin-top: 14px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 22px;
  border: 1px solid #d9e6f8;
  border-radius: 14px;
  background: linear-gradient(180deg, #fcfdff 0%, #f4f8ff 100%);
}

.about-text-block h3 {
  margin: 0 0 10px;
  color: #16388f;
  font-size: 18px;
}

.about-text-block p {
  margin: 10px 0 0;
  color: #3b4f70;
  font-size: 14px;
  line-height: 1.8;
}

.certificate-image {
  width: 100%;
  margin-top: 16px;
  border: 1px solid #d9e6f8;
  border-radius: 12px;
  background: #fff;
}

#profile .section-desc,
#vision .section-desc {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.certificate-meta {
  margin: 14px 0 0;
  color: #35507c;
  font-size: 13px;
  font-weight: 600;
}

.certificate-note {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.6;
}

#certificates .payment-card {
  padding: 20px 20px 18px;
}

#certificates .payment-card-head {
  padding-bottom: 10px;
}

#certificates .payment-card-head h3 {
  font-size: 17px;
  line-height: 1.35;
  min-width: 0;
}

#certificates .payment-badge {
  flex: 0 0 auto;
  white-space: nowrap;
  word-break: keep-all;
}

.certificate-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.certificate-inline span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f2f7ff;
  color: #35507c;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.certificate-image-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.certificate-image-btn .certificate-image {
  margin-top: 12px;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 880px;
  margin: 18px auto 0;
  padding: 16px 18px;
  border: 1px solid #d7e5fa;
  border-radius: 14px;
  background: linear-gradient(180deg, #f7fbff 0%, #edf4ff 100%);
}

.about-cta p {
  margin: 0;
  color: #2d466f;
  font-size: 14px;
  font-weight: 600;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: #1d4ed8;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-cta-btn:hover {
  background: #1e40af;
}

.about-cta-btn.secondary {
  background: #0b6b5a;
}

.about-cta-btn.secondary:hover {
  background: #0a5c4e;
}

.certificate-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.certificate-lightbox.open {
  display: block;
}

.certificate-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0.72);
}

.certificate-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 32px));
  margin: 24px auto;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
}

.certificate-lightbox-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 34px;
  height: 34px;
  border: 1px solid #dbe5f8;
  border-radius: 999px;
  background: #fff;
  color: #1f2937;
  font-size: 20px;
  line-height: 1;
}

.certificate-lightbox-dialog img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: 8px;
}

.wechat-consult-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}

.wechat-consult-modal.open {
  display: block;
}

.wechat-consult-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0.66);
}

.wechat-consult-dialog {
  position: relative;
  z-index: 1;
  width: min(360px, calc(100vw - 28px));
  margin: 72px auto 0;
  padding: 18px 16px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
  text-align: center;
  overscroll-behavior: contain;
}

.wechat-consult-close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 34px;
  height: 34px;
  border: 1px solid #dbe5f8;
  border-radius: 999px;
  background: #fff;
  color: #1f2937;
  font-size: 20px;
  line-height: 1;
}

.wechat-consult-title {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 700;
}

.wechat-consult-desc {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.65;
}

.wechat-consult-tip {
  margin: 6px 0 0;
  color: #2d466f;
  font-size: 12px;
  font-weight: 600;
}

.wechat-consult-qr {
  width: 220px;
  height: 220px;
  margin: 14px auto 0;
  padding: 8px;
  border: 1px solid #d7e5fa;
  border-radius: 14px;
  background: #fff;
}

.contact-jobs-section {
  padding: 44px 0 56px;
  background: #f1f6fc;
}

.contact-section-head {
  margin-bottom: 18px;
}

.contact-jobs-note {
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
}

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

.job-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 108px;
  gap: 24px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid #eef3f8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.job-card.featured {
  border-color: var(--line-strong);
  box-shadow: 0 8px 18px rgba(29, 78, 216, 0.07);
}

.job-card-business {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.job-card-business .job-tag {
  background: #e8f2ff;
  color: #1d4ed8;
}

.job-card-design {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.job-card-design .job-tag {
  background: #dcfce7;
  color: #0b6b5a;
}

.job-card-design .job-group h4 {
  background: #def7ec;
  color: #0b6b5a;
}

.job-card-assistant {
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfe 100%);
}

.job-card-assistant .job-tag {
  background: #ede9fe;
  color: #5b21b6;
}

.job-card-assistant .job-group h4 {
  background: #efe8ff;
  color: #5b21b6;
}

.job-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 600;
}

.job-summary h3 {
  margin: 0;
  font-size: 20px;
}

.job-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.job-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.job-group h4 {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0;
  padding: 0 10px;
  border-radius: 999px;
  background: #e2ebfa;
  color: #16388f;
  font-size: 13px;
  font-weight: 800;
}

.job-group ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.job-group li+li {
  margin-top: 2px;
}

.job-figure {
  width: 108px;
  height: 108px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fbff;
}

.job-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-payment-section .section-desc,
.contact-jobs-section .section-desc {
  max-width: 760px;
}

.payment-label {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.job-summary p:last-child {
  color: #35507c;
}

.contact-page-note {
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid #d9e6f8;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  color: #35507c;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.footer-seo-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(176, 191, 217, 0.52);
  color: #8a99b7;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-page section[id] {
    scroll-margin-top: 92px;
  }

  .about-sticky-nav-wrap {
    top: 62px;
  }

  .about-filter-row {
    padding-bottom: 14px;
  }

  .about-quick-nav {
    margin-top: 12px;
  }

  .about-quick-nav a {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .about-text-block {
    padding: 16px;
  }

  .about-text-block h3 {
    font-size: 17px;
  }

  .about-text-block p {
    line-height: 1.92;
  }

  .about-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }

  #certificates .payment-card {
    padding: 16px 14px 14px;
  }

  .certificate-inline span {
    min-height: 26px;
    font-size: 11px;
  }

  .about-cta-actions {
    flex-direction: column;
    gap: 8px;
  }

  .about-cta-btn {
    width: 100%;
  }

  .certificate-lightbox-dialog {
    width: calc(100vw - 16px);
    margin: 8px auto;
  }

  .wechat-consult-dialog {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 16px 14px 18px;
    border-radius: 16px 16px 0 0;
  }

  .wechat-consult-title {
    font-size: 18px;
  }

  .wechat-consult-desc {
    font-size: 12px;
    line-height: 1.6;
  }

  .wechat-consult-qr {
    width: min(72vw, 240px);
    height: min(72vw, 240px);
    margin-top: 12px;
  }
}

@media (max-width: 1280px) {

  .solution-row.top,
  .solution-row.mid,
  .solution-row.bottom,
  .services-grid,
  .news-grid,
  .partner-row,
  .hero-inner,
  .technician-wrap {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-wrap: wrap;
  }

  .news-page-hero .hero-grid,
  .news-layout,
  .news-detail-layout,
  .contact-payment-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .job-figure {
    grid-column: 2;
    justify-self: end;
  }

  .payment-flow-steps {
    grid-template-columns: 1fr;
  }

  .payment-flow-arrow {
    display: none;
  }

  .footer-col.brand-col,
  .footer-col.service-col,
  .footer-col.contact-col,
  .footer-col.news-col,
  .footer-col.qr-col {
    width: calc(50% - 12px);
    align-items: flex-start;
  }

  .footer-more-panel {
    width: 100%;
    flex-wrap: wrap;
    gap: 18px;
  }

  .footer-col.qr-col {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(1328px, calc(100vw - 28px));
  }

  .header {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .brand {
    font-size: 18px;
  }

  .nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 4px;
  }

  .nav-dropdown {
    padding: 0;
    margin: 0;
  }

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

  .nav-menu {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .demo-card {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
  }

  .hero {
    padding: 40px 0 34px;
  }

  .hero-card h3,
  .wechat-contact p,
  .footer .brand-desc {
    white-space: normal;
  }

  .hero-actions,
  .hero-highlights,
  .news-head,
  .news-section-top,
  .news-filter-row,
  .insights-top,
  .cta-box,
  .footer-bottom,
  .payment-account {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-page-hero .hero-grid {
    min-height: auto;
  }

  .news-page-hero,
  .news-detail-hero,
  .template-hero {
    padding-top: 40px;
    padding-bottom: 32px;
  }

  .news-page-hero .hero-copy,
  .news-detail-copy,
  .contact-hero-copy,
  .template-hero-copy {
    gap: 12px;
  }

  .news-page-hero .hero-grid {
    gap: 22px;
  }

  .hero-stats-grid,
  .featured-story,
  .story-list-card,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .featured-story-main img,
  .article-cover {
    height: auto;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }

  .featured-story-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-layout>aside,
  .news-detail-layout>aside {
    gap: 16px;
  }

  .news-pagination {
    gap: 12px;
  }

  .search-card-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-filter-bar {
    padding-top: 14px;
  }

  .news-filter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 14px;
  }

  .news-filter-scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(100% + 28px);
    margin: 0 -14px;
    padding: 0 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .news-filter-scroll::-webkit-scrollbar {
    display: none;
  }

  .news-filter-chip {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 14px;
  }

  .news-filter-chip.is-active {
    border: 1px solid rgba(147, 197, 253, 0.35);
    box-shadow: 0 10px 20px rgba(47, 95, 175, 0.14);
  }

  .news-filter-summary {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .news-filter-hint {
    margin-left: 0;
    padding-right: 0;
  }

  .cta-btn {
    margin-left: 0;
  }

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

  .schedule-item,
  .wechat-contact {
    align-items: flex-start;
  }

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

  .job-figure {
    justify-self: start;
  }

  .contact-hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.08;
  }

  .hero-copy-inline {
    gap: 7px;
  }

  .contact-highlight-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .contact-hero-links {
    margin-top: 16px;
    gap: 14px;
  }

  .contact-hero-card {
    padding: 18px 16px 16px;
  }

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

  .contact-item-card {
    align-items: flex-start;
    padding: 14px 12px;
    min-height: 0;
  }

  .contact-item-card .status {
    align-self: flex-start;
  }

  .contact-item-main {
    width: 100%;
  }

  .contact-qr-image {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .contact-tight-head {
    margin-bottom: 12px;
  }

  .payment-card {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .payment-card-head {
    align-items: flex-start;
  }

  .payment-row {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .payment-step {
    min-height: auto;
  }

  .contact-jobs-section {
    padding: 40px 0 48px;
  }

  .contact-section-head {
    margin-bottom: 16px;
  }

  .job-card {
    gap: 18px;
    padding: 18px 16px;
  }

  .job-summary {
    gap: 8px;
  }

  .job-figure {
    width: 92px;
    height: 92px;
  }

  .case-card,
  .preview-thumb {
    min-height: auto;
  }

  .footer-col.brand-col,
  .footer-col.service-col,
  .footer-col.contact-col,
  .footer-col.news-col,
  .footer-col.qr-col {
    width: 100%;
    border-right: 0;
    padding-right: 0;
  }

  .floating-bar {
    display: none;
  }
}

@media (max-width: 640px) {
  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .contact-hero {
    padding-bottom: 36px;
  }

  .contact-highlight-card {
    width: 100%;
  }

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

  .contact-hero-copy h1 {
    max-width: 9em;
    font-size: clamp(30px, 9vw, 38px);
  }

  .contact-hero-copy .hero-desc {
    max-width: 26em;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-copy-inline span {
    min-height: 26px;
    padding: 0 9px;
    font-size: 11px;
  }

  .contact-hero-links {
    gap: 12px;
  }

  .contact-hero-links a {
    font-size: 12px;
  }

  .contact-item-main strong {
    font-size: 13px;
  }

  .contact-item-main small {
    font-size: 11.5px;
  }

  .contact-item-card .status {
    display: none;
  }

  .contact-item-card,
  .contact-qr-card {
    padding: 14px;
  }

  .contact-qr-main {
    gap: 12px;
  }

  .payment-card-head,
  .payment-flow-head {
    gap: 8px;
  }

  .payment-account {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .payment-mark {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
  }

  .payment-mark-inner {
    left: 23px;
    top: 13px;
    width: 14px;
    height: 34px;
  }

  .payment-mark-inner::before {
    left: 4px;
    width: 6px;
    height: 34px;
  }

  .payment-mark-cross {
    left: 23px;
    top: 26px;
    width: 14px;
  }

  .payment-table {
    width: 100%;
    padding: 12px 12px 10px;
    border: 1px solid #e5edf8;
    border-radius: 12px;
    background: #f8fbff;
  }

  .payment-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
  }

  .payment-row+.payment-row {
    margin-top: 12px;
  }

  .payment-label {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .payment-value {
    font-size: 13px;
    line-height: 1.55;
    word-break: break-word;
  }

  .payment-flow-head p {
    font-size: 12px;
    line-height: 1.6;
  }

  .payment-step {
    padding: 14px 14px 13px;
  }

  .payment-step strong {
    font-size: 15px;
  }

  .payment-step p {
    font-size: 12.5px;
  }

  .job-tag,
  .job-group h4 {
    min-height: 26px;
    font-size: 11.5px;
  }

  .job-summary h3 {
    font-size: 18px;
  }

  .job-summary p {
    font-size: 12px;
  }

  .job-card {
    gap: 14px;
  }

  .job-summary {
    order: 1;
  }

  .job-figure {
    order: 2;
    justify-self: start;
    width: 72px;
    height: 72px;
    border-radius: 10px;
    opacity: 0.92;
  }

  .job-detail {
    order: 3;
    gap: 12px;
  }

  .job-group ul {
    margin-top: 10px;
    padding-left: 16px;
    font-size: 13px;
    line-height: 1.65;
  }

  .contact-page-note {
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .contact-page .hero {
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .contact-page .hero-inner {
    gap: 18px;
  }

  .contact-page .contact-hero-copy {
    gap: 10px;
  }

  .contact-page .contact-hero-copy h1 {
    max-width: 9em;
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.1;
  }

  .contact-page .contact-hero-copy .hero-desc {
    max-width: none;
    font-size: 14px;
    line-height: 1.78;
  }

  .contact-page .hero-copy-inline {
    gap: 6px;
  }

  .contact-page .hero-copy-inline span {
    min-height: 25px;
    padding: 0 8px;
    font-size: 11px;
  }

  .contact-page .contact-highlight-row {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .contact-page .contact-highlight-card {
    padding: 12px;
  }

  .contact-page .about-sticky-nav-wrap {
    top: calc(56px + env(safe-area-inset-top));
  }

  .contact-page .about-filter-row .news-filter-scroll {
    width: calc(100% + 24px);
    margin: 0 -12px;
    padding: 0 12px;
    gap: 8px;
  }

  .contact-page .about-filter-row .news-filter-chip {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .contact-page .contact-payment-section,
  .contact-page .contact-jobs-section {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .contact-page .about-text-block {
    margin-top: 10px;
    padding: 14px;
    border-radius: 12px;
  }

  .contact-page .about-text-block p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.82;
  }

  .contact-page #certificates .contact-payment-grid {
    gap: 14px;
  }

  .contact-page .certificate-inline {
    gap: 6px;
    margin-top: 10px;
  }

  .contact-page .certificate-inline span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 10.5px;
  }

  .contact-page .certificate-note {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.55;
  }

  .contact-page .certificate-image-btn .certificate-image {
    margin-top: 10px;
    border-radius: 10px;
  }

  .contact-page .about-cta {
    gap: 10px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 12px;
  }

  .contact-page .about-cta p {
    font-size: 13px;
    line-height: 1.6;
  }

  .contact-page .about-cta-actions {
    gap: 6px;
  }

  .contact-page .about-cta-btn {
    min-height: 42px;
    width: 100%;
    font-size: 13px;
  }

  .wechat-consult-dialog {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    max-height: min(86vh, 620px);
    overflow: auto;
    padding: 14px 12px calc(16px + env(safe-area-inset-bottom));
    border-radius: 16px 16px 0 0;
  }

  .wechat-consult-title {
    font-size: 18px;
  }

  .wechat-consult-desc {
    font-size: 12px;
    line-height: 1.6;
  }

  .wechat-consult-qr {
    width: min(74vw, 236px);
    height: min(74vw, 236px);
    margin-top: 12px;
  }

  .footer-seo-note {
    margin-top: 12px;
    padding-top: 10px;
    font-size: 11px;
    line-height: 1.6;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100vw - 24px);
  }

  .header {
    gap: 14px;
    min-height: auto;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    margin-left: 0;
  }

  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #d9e6f8;
    border-radius: 10px;
    background: #f8fbff;
    color: #2f5faf;
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-menu-btn svg {
    width: 16px;
    height: 16px;
  }

  .login-link {
    font-size: 13px;
    display: none;
  }

  .demo-btn {
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .demo-card {
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    border-radius: 0;
    padding: 52px 14px 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .demo-mobile-close {
    position: fixed;
    top: 10px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid #dbe7f8;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--motion-fast) var(--motion-ease);
  }

  .hero {
    padding: 30px 0 28px;
  }

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

  .hero-breadcrumb {
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.07em;
  }

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

  .news-page-hero,
  .news-detail-hero,
  .template-hero {
    padding-top: 30px;
    padding-bottom: 26px;
  }

  .news-page-hero .hero-copy,
  .news-detail-copy,
  .contact-hero-copy,
  .template-hero-copy {
    gap: 10px;
  }

  .news-page-hero .hero-copy h1,
  .news-detail-hero h1,
  .template-hero-title {
    font-size: 32px;
    line-height: 1.12;
  }

  .news-page-hero .hero-copy p,
  .news-detail-hero .hero-summary,
  .template-hero-desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-stats-grid {
    display: none;
  }

  .hero-focus-card {
    gap: 12px;
    padding: 16px;
  }

  .hero-focus-card h3 {
    font-size: 22px;
    line-height: 1.28;
  }

  .hero-focus-card img {
    height: 160px;
  }

  .hero-focus-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 10px;
  }

  .hero-highlights {
    gap: 14px;
    margin-top: 18px;
  }

  .hero-highlight .bar {
    height: 26px;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-btn {
    width: 100%;
    min-width: 0;
  }

  .hero-btn.primary {
    min-height: 44px;
  }

  .hero-btn.secondary {
    width: auto;
    height: auto;
    padding: 2px 4px 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    justify-self: center;
  }

  .hero-card {
    padding: 18px 16px 16px;
  }

  .hero-card .eyebrow {
    margin-bottom: 10px;
  }

  .hero-card h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero-card-desc {
    font-size: 13px;
  }

  .schedule-item {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }

  .status {
    align-self: flex-start;
  }

  .hero-note {
    padding: 14px 14px 12px;
  }

  section {
    padding: 32px 0 36px;
  }

  .section-title,
  .tech-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .section-desc,
  .tech-body {
    font-size: 14px;
    line-height: 1.7;
  }

  .news-main,
  .news-detail-main,
  .contact-payment-section {
    padding-top: 18px;
    padding-bottom: 32px;
  }

  .news-section-top {
    gap: 12px;
    margin-bottom: 16px;
  }

  .news-section-meta {
    padding-top: 0;
    text-align: left;
  }

  .featured-story,
  .story-list-card,
  .side-card,
  .search-card,
  .article-body,
  .article-cover-card,
  .payment-card {
    border-radius: 12px;
  }

  .featured-story,
  .story-list-card,
  .side-card,
  .search-card {
    padding: 14px;
  }

  .featured-story-main img {
    margin-bottom: 12px;
  }

  .featured-story-main h3,
  .story-list-card h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .story-list {
    gap: 12px;
    margin-top: 14px;
  }

  .story-list-card img {
    height: 180px;
  }

  .story-list-card h3 {
    min-height: 0;
  }

  .story-excerpt {
    min-height: 0;
  }

  .featured-story-side {
    gap: 10px;
  }

  .featured-story-metric {
    padding: 10px 12px;
  }

  .insights-section {
    padding-top: 26px;
  }

  .insight-card {
    padding: 16px;
  }

  .article-cover-caption {
    padding: 10px 14px 12px;
  }

  .article-body {
    margin-top: 14px;
    padding: 22px 18px 26px;
  }

  .article-body .article-eyebrow {
    margin-bottom: 10px;
  }

  .article-body h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .article-body p,
  .article-body li,
  .article-body blockquote {
    font-size: 15px;
    line-height: 1.8;
  }

  .article-quote {
    padding: 16px;
  }

  .news-detail-meta {
    gap: 6px;
    margin-top: 10px;
  }

  .news-detail-meta span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.06);
  }

  .back-list-link,
  .search-btn {
    width: 100%;
  }

  .search-card {
    gap: 12px;
  }

  .search-input-wrap input {
    height: 48px;
    border-radius: 12px;
  }

  .search-card-actions span,
  .search-helper {
    display: none;
  }

  .back-list-link-side {
    display: none;
  }

  .back-list-link-mobile {
    display: inline-flex;
    margin-top: 14px;
    min-height: 36px;
    padding: 0;
  }

  .detail-side .side-card:nth-of-type(2) .side-link-list a:nth-child(n + 3) {
    display: none;
  }

  .news-page-numbers {
    flex-wrap: wrap;
  }

  .news-page-btn {
    min-width: 38px;
    min-height: 38px;
    padding: 0 12px;
  }

  .template-search {
    width: 100%;
    margin-top: 20px;
    padding: 8px 8px 8px 10px;
    border-radius: 16px;
  }

  .template-preview {
    padding: 12px;
    border-radius: 18px;
  }

  .template-preview-meta,
  .template-preview-mini-row {
    grid-template-columns: 1fr;
  }

  .template-preview-side {
    grid-template-rows: none;
  }

  .template-site-switch {
    width: 100%;
  }

  .template-site-item {
    min-width: 0;
  }

  .services-grid,
  .partner-row,
  .news-grid,
  .cases-row,
  .preview-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .preview-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-card,
  .partner-card,
  .news-card,
  .solution-card {
    padding: 18px;
  }

  .service-card img {
    height: 108px;
  }

  .solution-grid,
  .solution-row {
    gap: 14px;
  }

  .solution-row.top,
  .solution-row.mid,
  .solution-row.bottom {
    grid-template-columns: 1fr;
  }

  .solution-card h3 {
    font-size: 19px;
  }

  .solution-card p {
    font-size: 13px;
  }

  .cases-head {
    flex-direction: column;
    gap: 10px;
  }

  .case-card {
    min-height: 210px;
  }

  .case-card .hover-text {
    padding: 18px;
  }

  .case-card .hover-text strong {
    font-size: 17px;
  }

  .technician-wrap {
    gap: 18px;
    padding: 32px 0 36px;
  }

  .tech-card {
    padding: 18px;
  }

  .contact-value {
    font-size: 20px;
  }

  .portrait {
    height: 240px;
    border-radius: 18px;
  }

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

  .wechat-contact .footer-qr-img {
    /* width: 88px; */
    height: 88px;
  }

  .news-card img {
    height: 170px;
  }

  .footer-cta {
    padding: 24px 0 20px;
  }

  .cta-box h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .cta-box p {
    font-size: 14px;
    line-height: 1.7;
  }

  .cta-btn {
    width: 100%;
    margin-left: 0;
  }

  .footer-top {
    gap: 18px;
    padding-top: 20px;
    flex-direction: column;
  }

  .footer-col.brand-col {
    order: 1;
    width: 100%;
  }

  .footer-col.contact-col {
    order: 2;
    width: 100%;
  }

  .footer-col.qr-col {
    order: 3;
    width: 100%;
    align-items: flex-start;
  }

  .footer-more-toggle {
    order: 4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(191, 219, 254, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #eff6ff;
    font-size: 12px;
    font-weight: 700;
  }

  .footer-more-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform var(--motion-fast) var(--motion-ease);
  }

  .footer-more-panel {
    order: 5;
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }

  .footer-top.extra-open .footer-more-panel {
    display: flex;
  }

  .footer-top.extra-open .footer-more-toggle svg {
    transform: rotate(180deg);
  }

  .footer-more-panel .footer-col.service-col,
  .footer-more-panel .footer-col.news-col {
    width: 100%;
    border-right: 0;
    border-top: 1px solid rgba(191, 219, 254, 0.24);
    padding-top: 12px;
    padding-right: 0;
  }

  .footer .brand-name {
    font-size: 18px;
  }

  .footer .brand-desc,
  .footer .item,
  .footer .contact-item,
  .footer .qr-desc,
  .footer-bottom span {
    font-size: 13px;
    line-height: 1.65;
  }

  .footer .brand-desc {
    width: 100%;
    max-width: none;
    white-space: nowrap;
  }

  .footer-qr-img {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 480px) {
  .header {
    gap: 12px;
    padding: 14px 0;
  }

  .nav {
    gap: 10px 12px;
    font-size: 13px;
  }

  .hero h1,
  .news-page-hero .hero-copy h1,
  .news-detail-hero h1,
  .template-hero-title {
    font-size: 28px;
  }

  .hero-breadcrumb {
    font-size: 10px;
    gap: 6px;
  }

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

  .hero-focus-card img,
  .article-cover {
    height: 148px;
  }

  .featured-story-side {
    grid-template-columns: 1fr;
  }

  .story-list-card img {
    height: 156px;
  }

  .article-body {
    padding: 20px 16px 24px;
  }

  .article-body h2 {
    font-size: 20px;
  }

  .article-body p,
  .article-body li,
  .article-body blockquote {
    font-size: 14px;
  }

  .search-input-wrap input {
    height: 42px;
  }

  .template-search {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border-radius: 14px;
  }

  .template-search input {
    padding-left: 4px;
  }

  .template-search button {
    width: 100%;
    min-height: 40px;
  }

}

.template-page {
  background: #fff;
}

.template-hero {
  padding: 52px 0 40px;
  color: #fff;
  background: linear-gradient(180deg, var(--brand-strong) 0%, var(--brand) 56%, #5f8fdd 100%);
}

.template-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  gap: 28px;
  align-items: start;
}

.template-hero-title {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 54px);
  line-height: 1.05;
}

.template-hero-desc {
  max-width: 700px;
  margin: 0;
  color: #dbeafe;
  font-size: 16px;
  line-height: 1.7;
}

.template-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(520px, 100%);
  margin-top: 28px;
  padding: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.template-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding-left: 12px;
  color: #334155;
  font-size: 14px;
}

.template-search button {
  border: 0;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.template-preview {
  position: relative;
  padding: 14px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.template-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  min-height: 20px;
}

.template-preview-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.template-preview-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.template-preview-title {
  color: #e6efff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.template-preview-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 8px;
  align-items: start;
}

.template-preview-main {
  display: grid;
  align-items: start;
  gap: 8px;
}

.template-preview-main-shell {
  overflow: hidden;
  border: 1px solid rgba(198, 216, 246, 0.75);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.template-preview-main-shell:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.2);
}

.template-preview-main-head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-bottom: 1px solid #e3ebf8;
  background: #f8fbff;
}

.template-preview-main-url {
  color: #7b8ba5;
  font-size: 10px;
  line-height: 1;
}

.template-preview-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.template-preview-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.template-preview-metric {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
}

.template-preview-metric strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.template-preview-metric span {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
}

.template-preview-side {
  display: grid;
  align-items: end;
}

.template-mobile-only {
  display: grid;
  justify-items: start;
  align-content: end;
  gap: 8px;
  width: 100%;
}

.template-main-mobile-wrap {
  position: relative;
  width: min(136px, 100%);
  margin: 0 auto;
  padding: 7px 6px 8px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f4f8ff 0%, #e9f0fd 100%);
  border: 1px solid rgba(185, 205, 238, 0.95);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.template-main-mobile-wrap::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 32%;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #cad8ef;
}

.template-main-mobile-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.2);
}

.template-preview-side-card {
  padding: 9px 11px 8px;
  border: 1px solid rgba(201, 220, 249, 0.85);
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
}

.template-preview-side-card.is-main {
  min-height: 126px;
  padding-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 10px;
  align-items: center;
}

.template-preview-side-card h4 {
  margin: 0;
  font-size: 13px;
}

.template-preview-side-card p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 10px;
  line-height: 1.35;
}

.template-main-mobile {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  border: 1px solid rgba(195, 213, 241, 0.92);
  object-fit: cover;
  object-position: top center;
}

.template-mobile-caption {
  margin: 0;
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(236, 244, 255, 0.92);
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-shadow: none;
}

.template-preview-mini-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 0;
}

.template-preview-mini-pill {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid rgba(201, 220, 249, 0.9);
  background: rgba(255, 255, 255, 0.96);
  color: #475569;
  font-size: 10px;
  font-weight: 700;
}

.template-toolbar {
  padding: 0;
  position: sticky;
  top: 76px;
  z-index: 14;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.template-toolbar.is-stuck {
  border-bottom: 1px solid #e6edf7;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.template-site-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: #f5f8fc;
  margin: 8px 0 2px;
}

.template-site-item {
  min-height: 34px;
  min-width: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

.template-site-item svg {
  width: 14px;
  height: 14px;
}

.template-site-item+.template-site-item {
  border-left: 0;
}

.template-site-item.active {
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.template-filters {
  margin-top: 0;
  padding: 24px 0 24px;
  border-bottom: 1px solid #edf2f8;
  background: #fff;
}

.template-filter-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
}

.template-filter-row+.template-filter-row {
  margin-top: 14px;
}

.template-filter-label {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.template-filter-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.template-filter-items a {
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
  padding: 0;
}

.template-filter-items .active {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.template-color-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.template-color-dots i {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.template-color-dots a {
  line-height: 100%;
}

.template-color-dots .active i {
  border: none;
  box-shadow: 0 0 0 0px rgba(15, 23, 42, 0.08);
}

.template-list {
  padding: 18px 0 56px;
}

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

.template-card {
  overflow: hidden;
  border: 1px solid #e8eef6;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.template-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
}

.template-thumb {
  position: relative;
  overflow: hidden;
  background: #eaf1fb;
}

.template-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(110deg, rgba(244, 248, 255, 0) 8%, rgba(244, 248, 255, 0.66) 36%, rgba(244, 248, 255, 0) 64%);
  transform: translateX(-110%);
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.template-thumb.is-loading::before {
  opacity: 1;
  animation: templateShimmer 1.2s linear infinite;
}

@keyframes templateShimmer {
  to {
    transform: translateX(110%);
  }
}

.template-thumb.is-loading img {
  opacity: 0;
}

.template-card img {
  width: 100%;
  aspect-ratio: 0.68;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.template-card:hover img {
  transform: scale(1.035);
}

.template-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.16) 0%, rgba(15, 23, 42, 0.48) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.template-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 58%);
  pointer-events: none;
}

.template-hover>* {
  position: relative;
  z-index: 1;
}

.template-card:hover .template-hover {
  opacity: 1;
}

.template-hover span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.52);
}

.template-preview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.96);
  color: #1f4f9c;
  font-size: 12px;
  font-weight: 700;
  text-shadow: none;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
}

.template-card p {
  margin: 10px 0 12px;
  text-align: center;
  color: #334155;
  font-size: 12px;
  transition: opacity 0.18s ease;
}

.template-card:hover p {
  opacity: 0;
}


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

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

@media (max-width: 900px) {
  .template-hero {
    padding: 34px 0 24px;
  }

  .template-hero-inner {
    gap: 14px;
  }

  .template-hero-title {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.08;
  }

  .template-hero-desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .template-search {
    width: 100%;
    margin-top: 20px;
    padding: 5px 6px 5px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
    gap: 6px;
  }

  .template-search button {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 12px;
    letter-spacing: 0.01em;
    background: linear-gradient(180deg, #2f5faf 0%, #24539f 100%);
  }

  .template-search input {
    font-size: 14px;
    min-height: 42px;
    padding-left: 12px;
    min-width: 0;
  }

  .template-preview {
    display: none;
  }

  .template-preview-top {
    margin-bottom: 8px;
  }

  .template-preview-title {
    font-size: 11px;
  }

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

  .template-preview-main img {
    height: auto;
  }

  .template-preview-grid {
    grid-template-columns: 1fr;
  }

  .template-preview-side {
    grid-template-rows: none;
    gap: 8px;
  }

  .template-mobile-only {
    max-width: 236px;
    margin: 0 auto;
  }

  .template-main-mobile-wrap {
    width: min(128px, 100%);
  }

  .template-mobile-caption {
    width: min(214px, 100%);
    font-size: 11px;
    padding: 0;
  }

  .template-preview-side-card.is-main {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 74px;
  }

  .template-toolbar {
    padding-top: 2px;
    top: 68px;
  }

  .template-site-switch {
    display: grid;
    width: 100%;
    margin: 4px 0 0;
  }

  .template-site-item {
    min-width: 0;
    min-height: 38px;
    font-size: 13px;
  }

  .template-filters {
    padding: 16px 0 18px;
  }

  .template-filter-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .template-filter-label {
    font-size: 11px;
  }

  .template-filter-items {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .template-filter-items::-webkit-scrollbar {
    display: none;
  }

  .template-filter-items a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f1f6fd;
    font-size: 12px;
    white-space: nowrap;
  }

  .template-filter-items .active {
    color: #fff;
    background: var(--brand);
    text-decoration: none;
  }

  .template-color-dots i {
    width: 18px;
    height: 18px;
  }

  .template-list {
    padding: 14px 0 34px;
  }

  .template-grid {
    gap: 10px;
  }

  .template-card p {
    margin: 8px 0 10px;
    font-size: 11px;
  }

}

@media (max-width: 560px) {
  .template-search {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border-radius: 14px;
    padding: 4px 5px 4px 8px;
  }

  .template-search input {
    min-height: 42px;
    font-size: 13px;
    padding-left: 6px;
  }

  .template-search button {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  .template-preview-mini-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .template-mobile-only {
    max-width: 210px;
  }

  .template-main-mobile-wrap {
    width: min(118px, 100%);
    padding: 6px 4px 6px;
  }

  .template-mobile-caption {
    width: min(196px, 100%);
    font-size: 10px;
    padding: 0;
  }

}

@media (max-width: 390px) {
  .template-grid {
    grid-template-columns: 1fr;
  }
}