/* ============================================================
   GEO 代运营专题页 V2 样式（AeroCore-Child/pages/geopro2）
   由 geo-v2.html 内嵌样式转换，前缀 gv- 避免与主题样式冲突
   ============================================================ */

.gv {
  /* ===== 设计系统变量（作用域限定在 .gv，避免污染主题） ===== */
  --bg: #f8f9fc;
  --bg-soft: #f1f3f9;
  --surface: #ffffff;
  --surface-2: #f5f6fb;
  --surface-glass: rgba(255, 255, 255, .72);
  --ink: #0a0e1a;
  --ink-2: #1a1f35;
  --muted: #5a6378;
  --muted-2: #8b92a8;
  --line: rgba(10, 14, 26, .07);
  --line-2: rgba(10, 14, 26, .12);
  --indigo: #4f46e5;
  --indigo-light: #6366f1;
  --indigo-dark: #4338ca;
  --violet: #7c3aed;
  --violet-light: #8b5cf6;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --rose: #f43f5e;
  --amber: #f59e0b;
  --grad-main: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
  --grad-indigo: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  --grad-violet: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
  --grad-cyan: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  --grad-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --grad-hero: linear-gradient(135deg, #4f46e5 0%, #7c3aed 40%, #06b6d4 100%);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(10, 14, 26, .06), 0 1px 2px rgba(10, 14, 26, .04);
  --shadow-md: 0 4px 24px -6px rgba(10, 14, 26, .1), 0 2px 8px -2px rgba(10, 14, 26, .06);
  --shadow-lg: 0 24px 64px -16px rgba(79, 70, 229, .18), 0 8px 20px -4px rgba(10, 14, 26, .08);
  --shadow-glow: 0 0 40px -8px rgba(79, 70, 229, .25);
  --maxw: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", "Segoe UI", Roboto, sans-serif;

  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.gv *, .gv *::before, .gv *::after { margin: 0; padding: 0; box-sizing: border-box; }
.gv img { max-width: 100%; display: block; }
.gv button { font-family: inherit; }
.gv ul { list-style: none; }

/* ===== 工具类 ===== */
.gv-wrap { width: min(var(--maxw), 90%); margin: 0 auto; }
.gv-wrap-narrow { width: min(800px, 90%); margin: 0 auto; }
.gv-center { text-align: center; }
.gv-grad-text {
  background: var(--grad-main);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.gv-section { padding: clamp(64px, 8vw, 100px) 0; position: relative; }
.gv-section-soft { background: var(--bg-soft); }
.gv-section-white { background: var(--surface); }
.gv-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--indigo); margin-bottom: 14px;
}
.gv-eyebrow::before {
  content: ""; width: 24px; height: 2.5px; border-radius: 2px; background: var(--grad-main);
}
.gv-sec-title {
  font-size: clamp(26px, 4.2vw, 42px); font-weight: 800; line-height: 1.2;
  letter-spacing: -.8px; margin-bottom: 14px;
}
.gv-sec-sub {
  font-size: clamp(15px, 1.6vw, 17px); color: var(--muted);
  max-width: 640px; line-height: 1.7;
}
.gv-center .gv-sec-sub { margin: 0 auto; }

/* ===== 按钮 ===== */
.gv-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-sm); font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: all .3s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap; position: relative; overflow: hidden;
}
.gv-btn-primary {
  background: var(--grad-indigo); color: #fff;
  box-shadow: 0 8px 24px -6px rgba(79, 70, 229, .4);
}
.gv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -6px rgba(79, 70, 229, .5);
}
.gv-btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .2), transparent);
  opacity: 0; transition: opacity .3s;
}
.gv-btn-primary:hover::after { opacity: 1; }
.gv-btn-ghost {
  background: var(--surface); border: 1.5px solid var(--line-2); color: var(--ink);
}
.gv-btn-ghost:hover {
  border-color: var(--indigo); color: var(--indigo);
  box-shadow: 0 4px 16px -4px rgba(79, 70, 229, .15);
}
.gv-btn-light {
  background: rgba(255, 255, 255, .12); border: 1.5px solid rgba(255, 255, 255, .25); color: #fff;
  backdrop-filter: blur(10px);
}
.gv-btn-light:hover { background: rgba(255, 255, 255, .2); transform: translateY(-2px); }

/* ===== 滚动进度条 ===== */
.gv-scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 999;
  background: var(--grad-main); transition: width .1s ease;
}

/* ===== Hero ===== */
.gv-hero {
  position: relative; padding: 80px 0 80px;
  overflow: hidden; min-height: 100vh; display: flex; align-items: center;
}
.gv-hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0;
  animation: gv-float 14s ease-in-out infinite;
}
.gv-hero-orb-1 {
  width: 480px; height: 480px; top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(79, 70, 229, .28), transparent 70%);
  animation-delay: 0s;
}
.gv-hero-orb-2 {
  width: 420px; height: 420px; bottom: -60px; left: -100px;
  background: radial-gradient(circle, rgba(6, 182, 212, .22), transparent 70%);
  animation-delay: -4s;
}
.gv-hero-orb-3 {
  width: 320px; height: 320px; top: 40%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124, 58, 237, .18), transparent 70%);
  animation-delay: -8s;
}
@keyframes gv-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(.95); }
}
.gv-hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(79, 70, 229, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, .06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 20%, transparent 90%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 20%, transparent 90%);
}
.gv-hero-content { position: relative; z-index: 2; width: 100%; text-align: center; }
.gv-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--indigo); background: rgba(79, 70, 229, .08);
  border: 1px solid rgba(79, 70, 229, .2); margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.gv-hero-badge .gv-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, .5);
  animation: gv-pulse-ring 2s ease-out infinite;
}
@keyframes gv-pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .5); }
  100% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}
.gv-hero h1 {
  font-size: clamp(34px, 6vw, 62px); font-weight: 800; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 22px; max-width: 880px; margin-left: auto; margin-right: auto;
  color: var(--ink);
}
.gv-hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: var(--muted);
  max-width: 620px; margin: 0 auto 36px; line-height: 1.7;
}
.gv-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }

/* Bento 统计 */
.gv-hero-bento {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 860px; margin: 0 auto;
}
.gv-bento-stat {
  background: var(--surface-glass);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px 22px; transition: all .35s cubic-bezier(.4, 0, .2, 1);
  position: relative; overflow: hidden;
}
.gv-bento-stat:hover {
  transform: translateY(-4px); border-color: rgba(79, 70, 229, .3);
  box-shadow: var(--shadow-md);
}
.gv-bento-stat::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-main); transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.gv-bento-stat:hover::before { transform: scaleX(1); }
.gv-bento-stat .gv-bs-num {
  font-size: clamp(32px, 4.5vw, 42px); font-weight: 800; letter-spacing: -1px;
  background: var(--grad-main); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; line-height: 1;
}
.gv-bento-stat .gv-bs-num .gv-sym { font-size: 18px; font-weight: 700; }
.gv-bento-stat .gv-bs-label { font-size: 13px; color: var(--muted); margin-top: 8px; font-weight: 500; }

/* ===== AI平台 Marquee ===== */
.gv-marquee-section {
  padding: 36px 0; background: var(--surface);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.gv-marquee-label {
  text-align: center; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 20px;
}
.gv-marquee { display: flex; justify-content: center; }
.gv-marquee-track { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 48px; padding: 0 20px; }
.gv-marquee-item {
  display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700;
  color: var(--ink-2); white-space: nowrap; opacity: .7; transition: opacity .2s;
}
.gv-marquee-item:hover { opacity: 1; }
.gv-marquee-item .gv-mi-dot {
  width: 10px; height: 10px; border-radius: 3px; background: var(--grad-indigo); flex: none;
}

/* ===== GEO概念区 ===== */
.gv-concept-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
}
.gv-concept-panel {
  background: linear-gradient(155deg, rgba(79, 70, 229, .05), rgba(124, 58, 237, .03));
  border: 1px solid rgba(79, 70, 229, .15); border-radius: var(--r-xl);
  padding: 36px; position: relative; overflow: hidden;
}
.gv-concept-panel::before {
  content: ""; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px;
  border-radius: 50%; background: radial-gradient(circle, rgba(79, 70, 229, .1), transparent 70%);
}
.gv-concept-panel h4 { font-size: 20px; margin-bottom: 14px; color: var(--indigo); position: relative; }
.gv-concept-panel > p { font-size: 15px; color: var(--muted); margin-bottom: 18px; line-height: 1.7; position: relative; }
.gv-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.gv-chip {
  padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 500;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--ink-2);
  transition: all .2s;
}
.gv-chip:hover { border-color: var(--indigo); color: var(--indigo); background: rgba(79, 70, 229, .04); }
.gv-check-list { margin-top: 6px; }
.gv-check-list li {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; position: relative;
}
.gv-check-list .gv-ck {
  flex: none; width: 26px; height: 26px; border-radius: 8px;
  background: var(--grad-emerald); color: #fff; display: grid; place-items: center;
  font-size: 14px; margin-top: 1px; box-shadow: 0 4px 10px -2px rgba(16, 185, 129, .4);
}
.gv-check-list li b { display: block; font-size: 15px; margin-bottom: 3px; }
.gv-check-list li span { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ===== Bento 服务网格 ===== */
.gv-bento-services {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}
.gv-bento-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column;
}
.gv-bento-card:hover {
  transform: translateY(-5px); border-color: rgba(79, 70, 229, .25);
  box-shadow: var(--shadow-lg);
}
.gv-bento-card.gv-featured {
  grid-column: span 2; grid-row: span 2;
  background: var(--grad-indigo); color: #fff; border: none;
}
.gv-bento-card.gv-featured h3, .gv-bento-card.gv-featured p { color: #fff; }
.gv-bento-card.gv-featured .gv-bc-icon { background: rgba(255, 255, 255, .15); color: #fff; }
.gv-bento-card.gv-featured::after {
  content: ""; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .1), transparent 70%);
}
.gv-bc-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(79, 70, 229, .1), rgba(124, 58, 237, .06));
  display: grid; place-items: center; color: var(--indigo); margin-bottom: 16px;
  transition: all .3s;
}
.gv-bento-card:hover .gv-bc-icon { transform: scale(1.08) rotate(-3deg); }
.gv-bento-card h3 { font-size: 17px; margin-bottom: 8px; font-weight: 700; color: var(--ink); }
.gv-bento-card p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.gv-bento-card .gv-bc-num {
  position: absolute; right: 16px; top: 12px; font-size: 52px; font-weight: 800;
  color: rgba(79, 70, 229, .05); line-height: 1;
}

/* ===== 价值条 ===== */
.gv-value-banner {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 48px 40px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.gv-value-banner::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-main);
}
.gv-value-banner::after {
  content: ""; position: absolute; bottom: -120px; right: -80px; width: 360px; height: 360px;
  border-radius: 50%; background: radial-gradient(circle, rgba(124, 58, 237, .08), transparent 70%);
}
.gv-value-banner h3 {
  font-size: clamp(22px, 3.2vw, 30px); font-weight: 800; text-align: center;
  margin-bottom: 40px; position: relative; z-index: 1; color: var(--ink);
}
.gv-value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.gv-value-item {
  padding: 24px; border-radius: var(--r-md); background: var(--surface-2);
  border: 1px solid var(--line); transition: all .3s;
}
.gv-value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--surface); }
.gv-vi-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.gv-vi-ic {
  flex: none; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
}
.gv-vi-ic-1 { background: rgba(79, 70, 229, .1); color: var(--indigo); }
.gv-vi-ic-2 { background: rgba(124, 58, 237, .1); color: var(--violet); }
.gv-vi-ic-3 { background: rgba(6, 182, 212, .1); color: var(--cyan); }
.gv-vi-ic-4 { background: rgba(16, 185, 129, .1); color: var(--emerald); }
.gv-vi-head b { font-size: 17px; font-weight: 700; }
.gv-value-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== 流程 ===== */
.gv-process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.gv-process-step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 22px; position: relative; transition: all .35s;
}
.gv-process-step:hover { transform: translateY(-5px); border-color: rgba(6, 182, 212, .3); box-shadow: var(--shadow-md); }
.gv-process-step .gv-ps-num {
  width: 42px; height: 42px; border-radius: 11px; background: var(--grad-main); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 16px; margin-bottom: 18px;
  box-shadow: 0 6px 16px -4px rgba(79, 70, 229, .4);
}
.gv-process-step h4 { font-size: 16.5px; margin-bottom: 8px; font-weight: 700; color: var(--ink); }
.gv-process-step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.gv-process-step::after {
  content: "→"; position: absolute; top: 36px; right: -12px; font-size: 18px;
  color: var(--muted-2); z-index: 2;
}
.gv-process-step:last-child::after { display: none; }

/* ===== 案例 ===== */
.gv-case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gv-case-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; transition: all .35s; position: relative; overflow: hidden;
}
.gv-case-card:hover { transform: translateY(-5px); border-color: rgba(124, 58, 237, .25); box-shadow: var(--shadow-lg); }
.gv-case-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px;
  background: var(--grad-violet); transition: width .35s;
}
.gv-case-card:hover::before { width: 100%; }
.gv-case-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.gv-case-ind { font-size: 12px; font-weight: 600; color: var(--cyan); letter-spacing: .5px; }
.gv-case-num {
  font-size: 36px; font-weight: 800; line-height: 1;
  background: var(--grad-main); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gv-case-card h4 { font-size: 18px; margin-bottom: 10px; font-weight: 700; color: var(--ink); }
.gv-case-desc { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.gv-case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.gv-case-tags span {
  font-size: 12px; color: var(--ink-2); background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 7px; padding: 6px 12px; font-weight: 500;
}
.gv-case-link { font-size: 14px; color: var(--indigo); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.gv-case-link:hover { gap: 10px; }

/* ===== 文章 ===== */
.gv-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gv-post-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px; display: flex; flex-direction: column; transition: all .35s;
}
.gv-post-card:hover { transform: translateY(-5px); border-color: rgba(79, 70, 229, .2); box-shadow: var(--shadow-lg); }
.gv-post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.gv-post-cat {
  font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px;
  color: var(--indigo); background: rgba(79, 70, 229, .08); border: 1px solid rgba(79, 70, 229, .18);
}
.gv-post-date { font-size: 12px; color: var(--muted-2); }
.gv-post-card h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.45; font-weight: 700; color: var(--ink); }
.gv-post-card h3 a:hover { color: var(--indigo); }
.gv-post-card p { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; flex: 1; line-height: 1.6; }
.gv-post-foot { display: flex; justify-content: space-between; align-items: center; }
.gv-post-link { font-size: 13px; color: var(--indigo); font-weight: 600; }

/* ===== 空状态 ===== */
.gv-empty {
  text-align: center; padding: 40px 20px; color: var(--muted);
  background: var(--surface); border: 1px dashed var(--line-2); border-radius: var(--r-md);
}

/* ===== FAQ ===== */
.gv-faq-wrap { max-width: 820px; margin: 0 auto; }
.gv-faq-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden;
  transition: all .25s;
}
.gv-faq-item:hover { border-color: rgba(79, 70, 229, .2); }
.gv-faq-item.open { border-color: rgba(79, 70, 229, .3); box-shadow: var(--shadow-md); }
.gv-faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--ink);
  padding: 22px 26px; font-size: 16px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: inherit;
}
.gv-faq-q .gv-fq-icon {
  flex: none; width: 28px; height: 28px; border-radius: 8px;
  background: var(--surface-2); color: var(--indigo);
  display: grid; place-items: center; font-size: 16px;
  transition: all .3s;
}
.gv-faq-item.open .gv-fq-icon { background: var(--grad-indigo); color: #fff; transform: rotate(45deg); }
.gv-faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4, 0, .2, 1); }
.gv-faq-a p { padding: 0 26px 22px; font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ===== CTA / 表单 ===== */
.gv-cta-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items: start; position: relative; }
.gv-cta-info h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 16px; font-weight: 800; line-height: 1.25; color: var(--ink); }
.gv-cta-info .gv-sec-sub { margin-bottom: 30px; }
.gv-contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.gv-contact-item { display: flex; gap: 14px; align-items: flex-start; }
.gv-contact-item .gv-ci-ic {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(79, 70, 229, .08); color: var(--indigo);
  display: grid; place-items: center;
}
.gv-contact-item .gv-ci-label { font-size: 13px; color: var(--muted-2); margin-bottom: 3px; }
.gv-contact-item .gv-ci-value { font-size: 15.5px; font-weight: 700; }
.gv-wx-card {
  display: flex; gap: 18px; align-items: center;
  padding: 18px 20px; border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(79, 70, 229, .06), rgba(124, 58, 237, .04));
  border: 1px dashed rgba(79, 70, 229, .3);
}
.gv-wx-qr {
  flex: none; width: 100px; height: 100px; padding: 6px; background: #fff;
  border-radius: 10px; box-shadow: 0 6px 16px -4px rgba(79, 70, 229, .2);
}
.gv-wx-qr img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; display: block; }
.gv-wx-info strong { display: flex; align-items: center; gap: 8px; font-size: 15px; margin-bottom: 6px; flex-wrap: wrap; }
.gv-wx-tag {
  font-size: 10px; font-weight: 700; color: #fff; background: var(--grad-indigo);
  padding: 2px 9px; border-radius: 100px; letter-spacing: 1px;
}
.gv-wx-info p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* 表单卡片 */
.gv-form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 36px 34px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.gv-form-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-main);
}
.gv-form-card h3 { font-size: 22px; margin-bottom: 8px; font-weight: 800; color: var(--ink); }
.gv-form-card .gv-fc-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.gv-form-group { margin-bottom: 18px; }
.gv-form-group label { display: block; font-size: 13.5px; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.gv-form-group label .gv-req { color: var(--rose); }
.gv-form-group input, .gv-form-group select, .gv-form-group textarea {
  width: 100%; background: var(--surface-2); border: 1.5px solid var(--line-2);
  border-radius: var(--r-sm); padding: 13px 16px; color: var(--ink);
  font-size: 14.5px; font-family: inherit; transition: all .2s; outline: none;
}
.gv-form-group input:focus, .gv-form-group select:focus, .gv-form-group textarea:focus {
  border-color: var(--indigo); background: var(--surface);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .08);
}
.gv-form-group input::placeholder, .gv-form-group textarea::placeholder { color: var(--muted-2); }
.gv-form-group textarea { min-height: 100px; resize: vertical; }
.gv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gv-form-card .gv-btn { width: 100%; font-size: 16px; padding: 15px; margin-top: 4px; }
.gv-btn-block { width: 100%; }
.gv-form-note { font-size: 12.5px; color: var(--muted-2); text-align: center; margin-top: 14px; }
.gv-form-error-text { color: var(--rose); font-size: 13px; margin-top: 4px; }
.gv-form-result { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 12px; margin-bottom: 20px; }
.gv-form-result__icon {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.gv-form-result__body b { display: block; font-size: 15px; margin-bottom: 2px; }
.gv-form-result__body p { font-size: 13px; margin: 0; line-height: 1.6; }
.gv-form-result--success { background: #ecfdf5; border: 1px solid #a7f3d0; }
.gv-form-result--success .gv-form-result__icon { background: #d1fae5; color: #059669; }
.gv-form-result--success b { color: #047857; }
.gv-form-result--success p { color: #065f46; }
.gv-form-result--exists { background: #fffbeb; border: 1px solid #fde68a; }
.gv-form-result--exists .gv-form-result__icon { background: #fef3c7; color: #d97706; }
.gv-form-result--exists b { color: #b45309; }
.gv-form-result--exists p { color: #92400e; }
.gv-form-result--error { background: #fef2f2; border: 1px solid #fecaca; }
.gv-form-result--error .gv-form-result__icon { background: #fee2e2; color: #dc2626; }
.gv-form-result--error b { color: #b91c1c; }
.gv-form-result--error p { color: #991b1b; }
.gv-form-trust { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.gv-form-trust span {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 100px; padding: 6px 13px;
}
.gv-form-trust svg { color: var(--emerald); flex: none; }
.gv-form-cover {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line-2);
}
.gv-form-cover span { font-size: 12px; color: var(--muted); background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px; padding: 4px 10px; }
.gv-form-cover b { font-size: 12px; color: var(--indigo); margin-left: auto; white-space: nowrap; }

/* ===== 滚动显现（render.php 中的 JS 添加 .in 类） ===== */
.gv-reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.gv-reveal.in { opacity: 1; transform: none; }

/* ============================================================
   突破主题包裹：全宽 1:1 效果（同 geopro / webdev 处理方式）
   主题将子页面内容包在 .page-container.child-page > .child-page__body > .child-page__main
   此处解除限宽 / 内边距 / 圆角，实现与 geo-v2.html 一致的宽屏效果。
   ============================================================ */
.page-container.child-page,
.page-container.child-page .child-page__body,
.page-container.child-page .child-page__main {
  max-width: none !important;
  width: 100% !important;
}
.page-container.child-page {
  padding: 0 !important;
  margin: 0 !important;
}
.page-container.child-page::before,
.page-container.child-page::after {
  display: none !important;
}
.page-container.child-page .child-page__main {
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* ===== 响应式：平板 ===== */
@media (max-width: 1024px) {
  .gv-bento-services { grid-template-columns: repeat(2, 1fr); }
  .gv-bento-card.gv-featured { grid-column: span 2; grid-row: auto; }
  .gv-process-grid { grid-template-columns: repeat(3, 1fr); }
  .gv-process-step:nth-child(3)::after { display: none; }
  .gv-case-grid { grid-template-columns: repeat(2, 1fr); }
  .gv-post-grid { grid-template-columns: repeat(2, 1fr); }
  .gv-concept-grid { grid-template-columns: 1fr; gap: 36px; }
  .gv-value-grid { grid-template-columns: repeat(2, 1fr); }
  .gv-cta-grid { grid-template-columns: 1fr; }
  .gv-hero-bento { grid-template-columns: repeat(2, 1fr); }
}

/* ===== 响应式：手机 ===== */
@media (max-width: 640px) {
  .gv-bento-services { grid-template-columns: 1fr; }
  .gv-bento-card.gv-featured { grid-column: span 1; }
  .gv-process-grid { grid-template-columns: 1fr; }
  .gv-process-step::after { display: none; }
  .gv-case-grid, .gv-post-grid { grid-template-columns: 1fr; }
  .gv-value-grid { grid-template-columns: 1fr; }
  .gv-hero-bento { grid-template-columns: 1fr; }
  .gv-form-row { grid-template-columns: 1fr; }
  .gv-section { padding: 56px 0; }
  .gv-hero { padding: 60px 0; min-height: auto; }
  .gv-hero-actions { flex-direction: column; width: 100%; }
  .gv-hero-actions .gv-btn { width: 100%; }
  .gv-bento-stat, .gv-case-card, .gv-post-card, .gv-process-step, .gv-value-item { padding: 24px 20px; }
  .gv-form-card { padding: 28px 22px; }
  .gv-value-banner { padding: 32px 20px; }
  .gv-case-tags { flex-direction: column; }
  .gv-wx-card { flex-direction: column; text-align: center; }
  .gv-wx-info strong { justify-content: center; }
  .gv-wrap { width: 92%; }
}

/* ===== 大屏优化 ===== */
@media (min-width: 1440px) {
  .gv { --maxw: 1280px; }
}

/* ===== 无障碍：减少动画 ===== */
@media (prefers-reduced-motion: reduce) {
  .gv *, .gv *::before, .gv *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .gv-reveal { opacity: 1; transform: none; }
  .gv-hero-orb { animation: none; }
}
