/* ===== CSS Variables ===== */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --accent: #06b6d4;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --font: 'Noto Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.logo-highlight { color: var(--primary); }

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

.nav-link {
  padding: 8px 16px;
  font-size: .925rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover { color: var(--primary); background: rgba(37,99,235,.06); }

.nav-link[aria-current="page"] {
  color: var(--primary);
  background: rgba(37,99,235,.06);
}

@media (max-width: 1200px) {
  .nav-link {
    padding: 8px 8px;
    font-size: .8rem;
  }
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  margin-left: 8px;
}

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

.nav-login {
  border: 1px solid var(--border);
  margin-left: 8px;
}

.nav-login:hover {
  border-color: var(--primary);
  background: rgba(37,99,235,.04);
}

.nav-member {
  border: 1px solid var(--primary);
  margin-left: 8px;
  color: var(--primary);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-member:hover {
  background: rgba(37,99,235,.08);
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding: calc(var(--header-h) + 48px) 0 48px;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.page-bg-grid,
.hero-grid {
  position: relative;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(37,99,235,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}

/* ===== Shared Page Background Layers ===== */
.page-bg,
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-bg-grid--dark {
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 10%, transparent 100%);
}

.page-bg-glow,
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.page-bg-glow--1,
.hero-glow-1 {
  width: 700px;
  height: 700px;
  background: rgba(37,99,235,.12);
  top: -250px;
  right: -150px;
  opacity: .4;
}

.page-bg-glow--2,
.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(6,182,212,.1);
  bottom: -150px;
  left: -150px;
  opacity: .4;
}

.page-bg-glow--green-1 {
  width: 480px;
  height: 480px;
  background: rgba(34,197,94,.18);
  top: -120px;
  right: -80px;
  opacity: .55;
}

.page-bg-glow--green-2 {
  width: 360px;
  height: 360px;
  background: rgba(16,185,129,.12);
  bottom: -100px;
  left: -60px;
  opacity: .5;
}

.page-bg-glow--purple-1 {
  width: 520px;
  height: 520px;
  background: rgba(167,139,250,.25);
  top: -160px;
  left: -100px;
  opacity: .6;
}

.page-bg-glow--purple-2 {
  width: 400px;
  height: 400px;
  background: rgba(99,102,241,.2);
  bottom: -120px;
  right: -80px;
  opacity: .55;
}

.page-bg-glow--cyan-1 {
  width: 560px;
  height: 560px;
  background: rgba(6,182,212,.12);
  top: -180px;
  right: -120px;
  opacity: .45;
}

.page-bg-glow--cyan-2 {
  width: 420px;
  height: 420px;
  background: rgba(37,99,235,.1);
  bottom: -140px;
  left: -100px;
  opacity: .4;
}

.page-bg-glow--auth-1 {
  width: 640px;
  height: 640px;
  background: rgba(37,99,235,.1);
  top: -220px;
  right: -180px;
  opacity: .5;
}

.page-bg-glow--auth-2 {
  width: 480px;
  height: 480px;
  background: rgba(6,182,212,.08);
  bottom: -160px;
  left: -140px;
  opacity: .45;
}

.page-hero-split,
.page-hero-dark,
.page-hero-app,
.news-hero,
.news-detail-hero,
.section-dark {
  position: relative;
  overflow: hidden;
}

.page-hero-split > .container,
.page-hero-dark > .container,
.page-hero-app > .container,
.news-hero > .container,
.news-detail-hero > .container,
.section-dark > .container {
  position: relative;
  z-index: 1;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 48px 64px;
  align-items: center;
}

.hero-main {
  text-align: left;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.mockup-window {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(37,99,235,.12), 0 4px 16px rgba(0,0,0,.06);
  overflow: hidden;
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot-red { background: #ff5f57; }
.mockup-dot-yellow { background: #febc2e; }
.mockup-dot-green { background: #28c840; }

.mockup-url {
  margin-left: 8px;
  font-size: .75rem;
  color: var(--text-light);
  background: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex: 1;
  text-align: center;
}

.mockup-body {
  display: flex;
  min-height: 260px;
}

.mockup-sidebar {
  width: 56px;
  padding: 16px 12px;
  background: var(--bg-alt);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-nav-item {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
}

.mockup-nav-item.active {
  background: var(--primary);
  height: 24px;
}

.mockup-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(37,99,235,.04), transparent);
  border-radius: 10px;
}

.mockup-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  border-radius: 4px 4px 0 0;
  opacity: .85;
  animation: barGrow 1.2s ease-out backwards;
}

.mockup-bar:nth-child(1) { animation-delay: .1s; }
.mockup-bar:nth-child(2) { animation-delay: .2s; }
.mockup-bar:nth-child(3) { animation-delay: .3s; }
.mockup-bar:nth-child(4) { animation-delay: .4s; }
.mockup-bar:nth-child(5) { animation-delay: .5s; }
.mockup-bar:nth-child(6) { animation-delay: .6s; }

@keyframes barGrow {
  from { height: 0 !important; opacity: 0; }
}

.mockup-rows { display: flex; flex-direction: column; gap: 10px; }

.mockup-row {
  height: 10px;
  border-radius: 5px;
  background: var(--bg-alt);
}

.mockup-row.short { width: 60%; }

.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}

.hero-float-card strong {
  display: block;
  font-size: .825rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.hero-float-card span {
  font-size: .75rem;
  color: var(--text-muted);
}

.hero-float-card-1 {
  top: -16px;
  right: -24px;
  animation-delay: 0s;
}

.hero-float-card-2 {
  bottom: 24px;
  left: -32px;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-icon {
  width: 40px;
  height: 40px;
  background: rgba(37,99,235,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.float-icon svg { width: 20px; height: 20px; }

.float-icon-ai {
  background: rgba(6,182,212,.1);
  color: var(--accent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(37,99,235,.04);
}

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

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-full { width: 100%; }

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 24px;
  border-left: 1px solid var(--border);
}

.stat-item:first-child {
  padding-left: 0;
  border-left: none;
}

.stat-num {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.stat-label {
  font-size: .875rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.stat-divider {
  display: none;
}

/* ===== Sections ===== */
.section {
  position: relative;
  padding: 80px 0;
}

.hero + .section {
  padding-top: 72px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.hero + .section .product-feature-card {
  background: #fff;
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-dark .section-tag { background: rgba(255,255,255,.1); color: var(--accent); }
.section-dark .section-desc { color: var(--text-light); }

.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(37,99,235,.08);
  color: var(--primary);
  border-radius: 100px;
  font-size: .825rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== Product Intro (网站 / 小程序 / App) ===== */
.product-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.product-intro--reverse {
  direction: rtl;
}

.product-intro--reverse > * {
  direction: ltr;
}

.product-intro-content {
  padding-top: 8px;
}

.product-intro-title {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 20px;
}

.product-intro-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-intro-points {
  margin-bottom: 28px;
}

.product-intro-points li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.7;
}

.product-intro-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.product-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-feature-card {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.section-alt .product-feature-card {
  background: #fff;
}

.product-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,.2);
}

.product-feature-card .pro-icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.product-feature-card .pro-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.product-feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-feature-card p {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.65;
}

.product-scenarios {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.product-scenarios-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

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

.product-scenario-item {
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.section-alt .product-scenario-item {
  background: #fff;
}

.product-scenario-item strong {
  display: block;
  font-size: .95rem;
  margin-bottom: 8px;
  color: var(--text);
}

.product-scenario-item span {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== Service Inner Pages ===== */
.page-hero-split {
  padding: calc(var(--header-h) + 64px) 0 72px;
  background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(6,182,212,.04));
  border-bottom: 1px solid var(--border);
}

.page-hero-split-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-hero-split h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin: 16px 0 20px;
}

.page-hero-split .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.page-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.page-hero-stat {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.page-hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.page-hero-stat span {
  font-size: .85rem;
  color: var(--text-muted);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: var(--bg-alt);
  font-weight: 700;
}

.compare-table tr:last-child td { border-bottom: none; }

.compare-table .yes { color: var(--primary); font-weight: 600; }

.split-rows { display: flex; flex-direction: column; gap: 48px; }

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-row--reverse .split-row-visual { order: 2; }
.split-row--reverse .split-row-text { order: 1; }

.split-row-visual {
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(6,182,212,.05));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37,99,235,.12);
  text-align: center;
}

.split-row-visual .big-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: rgba(37,99,235,.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.split-row-visual .big-icon svg { width: 36px; height: 36px; }

.split-row-text h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.split-row-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.split-row-text ul { padding-left: 0; list-style: none; }

.split-row-text li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: .9rem;
  color: var(--text);
}

.split-row-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

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

.deliver-item {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.deliver-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.deliver-item p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Mini program page */
.page-hero-dark {
  padding: calc(var(--header-h) + 72px) 0 80px;
  background: var(--bg-dark);
  color: #fff;
}

.page-hero-dark .section-tag {
  background: rgba(34,197,94,.15);
  color: #4ade80;
}

.page-hero-dark h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin: 16px 0 20px;
  max-width: 640px;
}

.page-hero-dark .lead {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 32px;
}

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

.bento-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.bento-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(34,197,94,.3);
}

.bento-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.bento-card p {
  flex: 1;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.bento-card .bento-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(34,197,94,.1);
  color: #16a34a;
  margin-bottom: 12px;
}

.cap-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.cap-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  line-height: 1.6;
}

.cap-check-item svg {
  width: 20px;
  height: 20px;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px;
  background: linear-gradient(135deg, #166534, #15803d);
  border-radius: var(--radius-lg);
  color: #fff;
}

.stat-strip-item { text-align: center; }

.stat-strip-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-strip-item span { font-size: .85rem; opacity: .85; }

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

.package-card {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.package-card--featured {
  border-color: #16a34a;
  box-shadow: 0 8px 32px rgba(22,163,74,.12);
  position: relative;
}

.package-card--featured::before {
  content: '推荐';
  position: absolute;
  top: -10px;
  right: 20px;
  background: #16a34a;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.package-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-card .pkg-desc {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
  line-height: 1.65;
}

.package-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.package-card li {
  font-size: .85rem;
  padding: 6px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.package-card li:last-child { border-bottom: none; }

.package-card .pkg-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 8px 0 4px;
  line-height: 1.2;
}

.package-card .pkg-price span {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}

.package-card .pkg-meta {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.package-card .pkg-audience {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.package-card .pkg-section {
  margin-bottom: 14px;
}

.package-card .pkg-section h4 {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: .02em;
}

.package-card .pkg-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.package-card .pkg-section li {
  font-size: .78rem;
  padding: 4px 0 4px 14px;
  color: var(--text-muted);
  border-bottom: none;
  position: relative;
  line-height: 1.55;
}

.package-card .pkg-section li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 900px) {
  .package-grid {
    grid-template-columns: 1fr;
  }
}

.mp-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.mp-step {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.mp-step-num {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  background: rgba(34,197,94,.12);
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
}

.mp-step h4 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.mp-step p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* App page */
.page-hero-app {
  padding: calc(var(--header-h) + 80px) 0 88px;
  background: linear-gradient(160deg, #1e1b4b 0%, #312e81 40%, #4338ca 100%);
  color: #fff;
  text-align: center;
}

.page-hero-app .section-tag {
  background: rgba(255,255,255,.12);
  color: #c4b5fd;
}

.page-hero-app h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin: 16px auto 20px;
  max-width: 720px;
}

.page-hero-app .lead {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 32px;
}

.stack-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.stack-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.stack-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(99,102,241,.3);
}

.stack-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(99,102,241,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
}

.stack-card-icon svg { width: 32px; height: 32px; }

.stack-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stack-card-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.stack-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stack-card-tags span {
  font-size: .75rem;
  padding: 4px 10px;
  background: var(--bg-alt);
  border-radius: 100px;
  color: var(--text-muted);
}

.stack-card-meta {
  text-align: right;
  flex-shrink: 0;
}

.stack-card-meta .meta-label {
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stack-card-meta .meta-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6366f1;
}

.cap-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cap-matrix-item {
  padding: 24px;
  background: var(--bg);
  border-left: 4px solid #6366f1;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cap-matrix-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cap-matrix-item p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.phase-item {
  padding: 28px 20px;
  background: linear-gradient(180deg, rgba(99,102,241,.06), transparent);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.phase-item .stack-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.phase-item .stack-card-icon svg {
  width: 28px;
  height: 28px;
}

.phase-item h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.phase-item p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .page-hero-split-inner { grid-template-columns: 1fr; }
  .split-row { grid-template-columns: 1fr; }
  .split-row--reverse .split-row-visual,
  .split-row--reverse .split-row-text { order: unset; }
  .deliver-list { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; }
  .mp-steps { grid-template-columns: 1fr 1fr; }
  .phase-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-card { grid-template-columns: 1fr; text-align: left; }
  .stack-card-meta { text-align: left; }
}

@media (max-width: 768px) {
  .deliver-list,
  .bento-grid,
  .cap-checklist,
  .cap-matrix,
  .mp-steps,
  .phase-grid { grid-template-columns: 1fr; }
  .page-hero-stats { grid-template-columns: 1fr; }
}

/* ===== News ===== */
.news-hero {
  padding: calc(var(--header-h) + 64px) 0 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(6,182,212,.04));
  border-bottom: 1px solid var(--border);
}

.news-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin: 16px 0;
}

.news-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.news-section {
  padding-top: 64px;
  padding-bottom: 80px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.news-card {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(37,99,235,.2);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .825rem;
  color: var(--text-muted);
}

.news-tag {
  padding: 4px 10px;
  background: rgba(37,99,235,.08);
  color: var(--primary);
  border-radius: 100px;
  font-weight: 600;
}

.news-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.45;
}

.news-card h2 a {
  color: var(--text);
  transition: var(--transition);
}

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

.news-card p {
  color: var(--text-muted);
  font-size: .925rem;
  line-height: 1.7;
}

/* ===== News Detail ===== */
.news-detail-hero {
  padding: calc(var(--header-h) + 24px) 0 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.news-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-muted);
  padding-bottom: 20px;
}

.news-breadcrumb a {
  color: var(--primary);
  transition: var(--transition);
}

.news-breadcrumb a:hover { opacity: .8; }

.news-breadcrumb span:last-child {
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 280px;
}

.news-detail-section {
  padding-top: 48px;
  padding-bottom: 80px;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.news-article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}

.news-article-loading,
.news-article-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.news-article-empty h1 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 12px;
}

.news-article-header {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.news-article-header .news-meta {
  margin-bottom: 16px;
}

.news-author {
  font-size: .825rem;
  color: var(--text-muted);
}

.news-article-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 16px;
}

.news-article-summary {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.news-article-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 20px;
}

.news-article-body p strong {
  color: var(--text);
  font-weight: 700;
}

.news-article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.news-back-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}

.news-back-link:hover { opacity: .8; }

.news-sidebar-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.news-sidebar-block h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.news-related-list {
  list-style: none;
}

.news-related-list li {
  border-bottom: 1px solid var(--border);
}

.news-related-list li:last-child { border-bottom: none; }

.news-related-list a {
  display: block;
  padding: 14px 0;
  transition: var(--transition);
}

.news-related-list a:hover .news-related-title {
  color: var(--primary);
}

.news-related-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(37,99,235,.08);
  color: var(--primary);
  margin-bottom: 6px;
}

.news-related-title {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 4px;
  transition: var(--transition);
}

.news-related-list time {
  font-size: .75rem;
  color: var(--text-muted);
}

.news-related-empty {
  font-size: .875rem;
  color: var(--text-muted);
  padding: 8px 0;
}

.news-sidebar-cta p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.contact-page-section {
  padding-top: 64px;
  padding-bottom: 80px;
}

.contact-form-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,.2);
}

.pro-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(37,99,235,.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.pro-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.pro-icon-wrap--center {
  margin: 0 auto 20px;
}

.pro-icon-wrap--dark {
  background: rgba(255,255,255,.08);
  color: var(--accent);
}

.service-card .pro-icon-wrap {
  margin-bottom: 16px;
}

.industry-card .pro-icon-wrap {
  margin: 0 auto 12px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: .925rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags li {
  padding: 4px 12px;
  background: var(--bg-alt);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ===== Industries ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  padding: 28px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.industry-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(6,182,212,.3);
  transform: translateY(-3px);
}

.industry-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.industry-card p {
  font-size: .825rem;
  color: var(--text-light);
  line-height: 1.5;
}

.industries-grid--light .industry-card {
  background: var(--bg);
  border-color: var(--border);
}

.industries-grid--light .industry-card:hover {
  background: var(--bg);
  border-color: rgba(37,99,235,.25);
  box-shadow: var(--shadow-md);
}

.industries-grid--light .industry-card p {
  color: var(--text-muted);
}

/* ===== Process ===== */
.process-timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.process-step {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}

.step-content {
  padding-top: 8px;
}

.step-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-muted);
  font-size: .925rem;
  line-height: 1.7;
}

/* ===== Advantages ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.advantage-item {
  text-align: center;
  padding: 32px 24px;
}

.advantage-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.advantage-item p {
  color: var(--text-muted);
  font-size: .925rem;
  line-height: 1.7;
}

/* ===== Cases ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.case-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.case-tag {
  padding: 4px 14px;
  background: rgba(37,99,235,.08);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
}

.case-body { padding: 24px; }

.case-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.case-body p {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.case-metrics {
  display: flex;
  gap: 16px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--primary);
}

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 0 0 100px;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary), #1e40af);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  top: -100px;
  right: -60px;
}

.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.cta-box p {
  opacity: .85;
  margin-bottom: 28px;
  font-size: 1.05rem;
  position: relative;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-desc {
  color: var(--text-muted);
  margin: 16px 0 32px;
  line-height: 1.7;
}

.contact-items { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item .pro-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.contact-item .pro-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.contact-item strong {
  display: block;
  font-size: .875rem;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: .925rem;
}

.contact-info-value.is-loading {
  color: var(--text-muted);
  opacity: 0.7;
}

.site-managed-loading {
  color: var(--text-muted);
  opacity: 0.7;
}

.footer-qrcode {
  margin-top: 16px;
}

.footer-qrcode img {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
}

.footer-bottom #siteIcp a {
  margin-left: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-bottom #siteIcp a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .925rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  padding: 64px 0 32px;
  overflow: hidden;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: .875rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-links h5 {
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: var(--text-light);
  font-size: .875rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .825rem;
  color: var(--text-light);
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-light); transition: var(--transition); }
.footer-legal a:hover { color: #fff; }

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg { width: 24px; height: 24px; }

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 24px;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  transform: scale(.9);
  transition: var(--transition);
}

.modal.active .modal-content { transform: scale(1); }

.modal-icon {
  width: 64px;
  height: 64px;
  background: rgba(34,197,94,.1);
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.modal-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-intro { grid-template-columns: 1fr; gap: 32px; }
  .product-intro--reverse { direction: ltr; }
  .product-scenarios-grid { grid-template-columns: 1fr; }

  .hero-layout {
    gap: 40px 48px;
  }

  .hero-float-card-1 { right: -8px; }
  .hero-float-card-2 { left: -8px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .menu-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
  }

  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
  .nav-login { margin-left: 0; margin-top: 8px; text-align: center; }
  .nav-member { margin-left: 0; margin-top: 8px; text-align: center; max-width: none; }

  .logo-text { font-size: .9rem; }

  .hero { padding-bottom: 40px; min-height: auto; }

  .hero + .section { padding-top: 56px; }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-main { text-align: center; }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn { width: 100%; }

  .hero-mockup {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-float-card-1 {
    top: -12px;
    right: 0;
    padding: 10px 14px;
  }

  .hero-float-card-2 {
    bottom: 16px;
    left: 0;
    padding: 10px 14px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    padding: 24px 20px;
  }

  .stat-item {
    align-items: center;
    text-align: center;
    padding: 0;
    border-left: none;
  }

  .section { padding: 72px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }

  .process-timeline::before { left: 22px; }

  .step-num {
    width: 44px;
    height: 44px;
    font-size: .875rem;
  }

  .process-step { gap: 20px; }

  .cta-box { padding: 48px 28px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .news-card { padding: 20px; }
  .news-detail-layout { grid-template-columns: 1fr; }
  .news-article { padding: 28px 20px; }
  .news-breadcrumb span:last-child { max-width: 160px; }
  .product-intro-actions { flex-direction: column; }
  .product-intro-actions .btn { width: 100%; }

  .footer {
    padding: 36px 0 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 12px;
    margin-bottom: 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-brand p {
    display: none;
  }

  .footer-links h5 {
    margin-bottom: 6px;
    font-size: .78rem;
  }

  .footer-links a {
    padding: 3px 0;
    font-size: .75rem;
  }

  .footer-links a:nth-of-type(n+3) {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding-top: 20px;
    font-size: .75rem;
  }

  .footer-copy-extra {
    display: none;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .industries-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .industry-card { padding: 20px 16px; }
  .service-card { padding: 24px; }
}

/* ===== Auth Pages (Login / Register) ===== */
.auth-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #dce9ff 0%, #edf3ff 45%, #e8f0fe 100%);
}

.auth-page > .auth-card,
.auth-page > .reset-container {
  position: relative;
  z-index: 1;
}

.auth-page--particle {
  position: relative;
  background: linear-gradient(160deg, #0b1220 0%, #111827 50%, #0f172a 100%);
}

.auth-particle-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.auth-page--particle .auth-card {
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .28);
}

.auth-card {
  display: flex;
  width: 100%;
  max-width: 920px;
  min-height: 520px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(37, 99, 235, .12);
  overflow: hidden;
}

.auth-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(37, 99, 235, .06) 0%, transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.auth-wechat-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 280px;
}

.auth-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.auth-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: #059669;
  margin-bottom: 28px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(5, 150, 105, .08);
  border: 1px solid rgba(5, 150, 105, .12);
}

.auth-subtitle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.auth-subtitle-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.auth-qrcode-frame {
  position: relative;
  width: 100%;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, .04),
    0 12px 32px rgba(37, 99, 235, .08),
    0 0 0 1px rgba(255, 255, 255, .6) inset;
}

.auth-qrcode-frame::before,
.auth-qrcode-frame::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid var(--primary);
  border-radius: 4px;
  pointer-events: none;
  opacity: .55;
}

.auth-qrcode-frame::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.auth-qrcode-frame::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.auth-qrcode {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .03) 0%, rgba(5, 150, 105, .03) 100%),
    #fafbfc;
}

.auth-qrcode::before,
.auth-qrcode::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid var(--primary);
  border-radius: 4px;
  pointer-events: none;
  opacity: .55;
  z-index: 1;
}

.auth-qrcode::before {
  top: 8px;
  right: 8px;
  border-left: none;
  border-bottom: none;
}

.auth-qrcode::after {
  bottom: 8px;
  left: 8px;
  border-right: none;
  border-top: none;
}

.auth-qrcode svg,
.auth-qrcode img,
.auth-qrcode canvas {
  width: calc(100% - 8px) !important;
  height: calc(100% - 8px) !important;
  max-width: 200px;
  max-height: 200px;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.auth-qrcode table {
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
}

.auth-qrcode p {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 20px 16px !important;
  font-size: .875rem !important;
  line-height: 1.6 !important;
  text-align: center;
  color: var(--text) !important;
}

.auth-qrcode-hint {
  margin: 18px 0 0;
  font-size: .8125rem;
  color: var(--text-muted);
  letter-spacing: .02em;
  text-align: center;
}

.auth-right {
  flex: 1;
  position: relative;
  padding: 48px 56px 40px;
  display: flex;
  flex-direction: column;
}

.auth-switch {
  position: absolute;
  top: 32px;
  right: 40px;
  font-size: .9rem;
  color: var(--primary);
  transition: var(--transition);
}

.auth-switch:hover { opacity: .8; }

.auth-tabs {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  padding-right: 100px;
}

.auth-tab {
  background: none;
  border: none;
  padding: 0 0 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  font-family: var(--font);
  transition: var(--transition);
}

.auth-tab.active {
  color: var(--primary);
  font-weight: 600;
}

.auth-tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.auth-panel {
  display: none;
  flex: 1;
}

.auth-panel.active {
  display: block;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-form-register {
  padding-right: 0;
}

.auth-right--register {
  justify-content: center;
  padding-top: 56px;
}

.auth-right--register .auth-form-register {
  margin-top: 24px;
}

.auth-field {
  display: flex;
  align-items: center;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  transition: var(--transition);
  overflow: hidden;
  min-height: 48px;
}

.auth-field:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, .1);
}

.auth-field-label,
.auth-prefix {
  flex-shrink: 0;
  padding: 0 16px;
  font-size: .95rem;
  color: var(--text);
  white-space: nowrap;
}

.auth-prefix {
  border-right: 1px solid #f0f0f0;
}

.auth-field input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 12px 16px 12px 0;
  font-size: .95rem;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
}

.auth-field input:focus {
  outline: none;
}

.auth-field .auth-prefix + input {
  padding-left: 16px;
}

.auth-field .auth-field-label + input {
  padding-left: 0;
}

.auth-eye {
  flex-shrink: 0;
  border: none;
  background: none;
  padding: 0 14px;
  cursor: pointer;
  color: var(--text-light);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.auth-eye:hover { color: var(--text-muted); }

.auth-eye svg {
  width: 20px;
  height: 20px;
}

.auth-eye .eye-closed { display: none; }
.auth-eye.visible .eye-open { display: none; }
.auth-eye.visible .eye-closed { display: block; }

.btn-code-inline {
  flex-shrink: 0;
  border: none;
  background: none;
  color: var(--primary);
  font-size: .875rem;
  font-weight: 500;
  padding: 0 16px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font);
  transition: var(--transition);
}

.btn-code-inline:hover:not(:disabled) { opacity: .8; }

.btn-code-inline:disabled {
  opacity: .5;
  cursor: not-allowed;
  color: var(--text-muted);
}

.auth-submit {
  width: 100%;
  margin-top: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
}

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

.auth-forgot {
  font-size: .9rem;
  color: var(--text);
  margin-top: 4px;
  transition: var(--transition);
}

.auth-forgot:hover { color: var(--primary); }

.auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}

.auth-checkbox input {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--primary);
  cursor: pointer;
}

.auth-checkbox a {
  color: var(--primary);
}

.auth-checkbox a:hover { text-decoration: underline; }

.auth-agreement {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.auth-agreement a {
  color: var(--primary);
}

.auth-agreement a:hover { text-decoration: underline; }

.auth-mobile-head,
.auth-mobile-brand,
.auth-mobile-footer,
.auth-phone-row--mobile,
.auth-code-row--mobile,
.auth-input-standalone--mobile,
.auth-input-standalone-wrap--mobile {
  display: none;
}

@media (max-width: 768px) {
  .auth-page {
    align-items: flex-start;
    padding: 0;
    background: #fff;
  }

  .auth-card {
    flex-direction: column;
    min-height: 100vh;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }

  .auth-left,
  .auth-switch--desktop,
  .auth-tabs--desktop,
  .auth-field--desktop,
  .auth-forgot--desktop {
    display: none;
  }

  .auth-right,
  .auth-right--register {
    flex: 1;
    padding: 20px 24px 40px;
    justify-content: flex-start;
  }

  .auth-mobile-brand {
    display: inline-flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 28px;
  }

  .auth-mobile-brand .logo-highlight {
    color: var(--primary);
  }

  .auth-right--register .auth-form-register {
    margin-top: 0;
  }

  .auth-mobile-head {
    display: block;
    margin-bottom: 24px;
  }

  .auth-mobile-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 8px;
  }

  .auth-mobile-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
  }

  .auth-mobile-switch {
    font-size: .95rem;
    color: var(--primary);
    flex-shrink: 0;
  }

  .auth-mobile-alt {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  .auth-alt-link {
    border: none;
    background: none;
    padding: 0;
    font-size: inherit;
    color: var(--primary);
    cursor: pointer;
    font-family: var(--font);
  }

  .auth-form {
    gap: 14px;
  }

  .auth-phone-row--mobile,
  .auth-code-row--mobile {
    display: flex;
    gap: 10px;
    align-items: stretch;
  }

  .auth-input-standalone--mobile,
  .auth-input-standalone-wrap--mobile {
    display: block;
  }

  .auth-prefix-box {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 48px;
    padding: 0 10px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: .95rem;
    color: var(--text);
    background: #fff;
  }

  .auth-input-standalone {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: .95rem;
    font-family: var(--font);
    color: var(--text);
    background: #fff;
    transition: var(--transition);
  }

  .auth-input-standalone::placeholder {
    color: #bfbfbf;
  }

  .auth-input-standalone:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, .1);
  }

  .auth-input-standalone-wrap--mobile {
    position: relative;
  }

  .auth-input-standalone-wrap--mobile .auth-input-standalone {
    padding: 0 48px 0 14px;
  }

  .auth-input-standalone-wrap--mobile .auth-eye {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
  }

  .auth-phone-row--mobile .auth-input-standalone {
    flex: 1;
    min-width: 0;
  }

  .auth-code-row--mobile .auth-input-standalone {
    flex: 1;
    min-width: 0;
  }

  .btn-code-outside {
    flex-shrink: 0;
    min-width: 104px;
    height: 48px;
    padding: 0 10px;
    border: 1px solid var(--primary);
    border-radius: 4px;
    background: #fff;
    color: var(--primary);
    font-size: .875rem;
    font-family: var(--font);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
  }

  .btn-code-outside--muted {
    border-color: #d9d9d9;
    color: var(--text-muted);
  }

  .btn-code-outside:disabled {
    opacity: .6;
    cursor: not-allowed;
  }

  .auth-agreement {
    margin-top: 6px;
    font-size: .75rem;
    line-height: 1.65;
    color: var(--text-light);
  }

  .auth-submit {
    margin-top: 16px;
    padding: 13px 24px;
    border-radius: 4px;
    font-size: 1rem;
  }

  .auth-mobile-footer {
    display: block;
    margin-top: 28px;
    padding-top: 8px;
  }

  .auth-help-link {
    display: block;
    text-align: center;
    font-size: .9rem;
    color: var(--primary);
    margin-bottom: 32px;
  }

  .auth-other-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: .8rem;
  }

  .auth-other-divider::before,
  .auth-other-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
  }

  .auth-social {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .auth-social-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }

  .auth-social-btn svg {
    width: 26px;
    height: 26px;
  }

  .auth-social-btn--wechat {
    background: #07c160;
    color: #fff;
  }

  .auth-social-btn--wechat:hover {
    background: #06ad56;
    transform: scale(1.05);
  }

  .auth-checkbox {
    margin-top: 4px;
  }
}

/* ===== Reset Password Pages ===== */
.reset-page {
  position: relative;
  min-height: 100vh;
  background: #f5f7fa;
  padding: 32px 24px 48px;
  overflow: hidden;
}

.reset-page > .reset-container {
  position: relative;
  z-index: 1;
}

.reset-container {
  max-width: 480px;
  margin: 0 auto;
}

.reset-container--wide {
  max-width: 800px;
}

.reset-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  transition: var(--transition);
}

.reset-back svg {
  width: 18px;
  height: 18px;
}

.reset-back:hover { color: var(--primary); }

.reset-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 40px;
}

.reset-page--verify .reset-title {
  margin-bottom: 16px;
}

.reset-desc {
  text-align: center;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.reset-desc strong {
  color: var(--text);
  font-weight: 600;
}

.reset-desc--left {
  text-align: left;
  margin-bottom: 28px;
  margin-top: -24px;
}

.reset-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reset-submit {
  margin-top: 8px;
}

.verify-card {
  display: flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.verify-side {
  flex-shrink: 0;
  width: 140px;
  padding: 32px 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.verify-side-item {
  position: relative;
  font-size: .95rem;
  color: var(--text-muted);
  padding: 0 16px;
}

.verify-side-item.active {
  color: var(--primary);
  font-weight: 600;
}

.verify-side-item.active::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
  background: var(--primary);
}

.verify-body {
  flex: 1;
  padding: 32px 40px 28px;
}

.verify-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.verify-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.verify-code-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.verify-label {
  flex-shrink: 0;
  width: 56px;
  font-size: .95rem;
  color: var(--text);
}

.verify-value {
  font-size: .95rem;
  color: var(--text);
}

.verify-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: .95rem;
  font-family: var(--font);
  color: var(--text);
  transition: var(--transition);
}

.verify-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, .1);
}

.btn-send-code {
  flex-shrink: 0;
  min-width: 108px;
  padding: 10px 14px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  background: #fff;
  color: var(--primary);
  font-size: .875rem;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-send-code:hover:not(:disabled) { opacity: .85; }

.btn-send-code:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.verify-submit {
  width: auto;
  align-self: flex-start;
  min-width: 140px;
  margin-top: 4px;
}

.verify-notes {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.verify-notes p {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 6px;
}

.verify-notes p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .reset-page {
    background: #fff;
    padding: 20px 20px 32px;
  }

  .reset-back {
    margin-bottom: 32px;
  }

  .reset-title {
    font-size: 1.35rem;
    margin-bottom: 32px;
    text-align: left;
  }

  .reset-page--verify .reset-title {
    text-align: center;
    margin-bottom: 12px;
  }

  .reset-desc {
    text-align: left;
    font-size: .85rem;
    margin-bottom: 24px;
  }

  .reset-form .auth-field {
    border-radius: 4px;
  }

  .verify-card {
    flex-direction: column;
    border: none;
    box-shadow: none;
  }

  .verify-side {
    width: 100%;
    padding: 0 0 16px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }

  .verify-side-item.active::after {
    right: auto;
    left: 0;
    top: auto;
    bottom: -17px;
    transform: none;
    width: 100%;
    height: 2px;
  }

  .verify-body {
    padding: 24px 0 0;
  }

  .verify-code-row {
    flex-wrap: wrap;
  }

  .verify-code-row .verify-label {
    width: 100%;
    margin-bottom: -8px;
  }

  .verify-code-row .verify-input {
    flex: 1;
  }

  .verify-submit {
    width: 100%;
    align-self: stretch;
  }
}

.contact-map-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-map-tab {
  border: 1px solid var(--border, #e5e7eb);
  background: #fff;
  color: var(--text, #1f2937);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.contact-map-tab:hover {
  border-color: var(--primary, #2563eb);
}

.contact-map-tab.is-active {
  background: var(--primary, #2563eb);
  border-color: var(--primary, #2563eb);
  color: #fff;
}

#contactAmapCanvas,
#contactAmapFrame {
  display: block;
  min-height: 360px;
}
