/* ===== GEO PAGE STYLES — White-Base Fluid ===== */
/* Aurora-Green: #2DD4BF  Intellect-Blue: #6366F1  Brand-Blue: #0AB5E4  Brand-Orange: #F5A623 */

/* === BANNER (light) === */
.geo-banner {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(10, 181, 228, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(45, 212, 191, 0.04) 0%, transparent 60%), #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
}
.geo-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.geo-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: 20px;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.2);
  color: #0d9488;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.geo-banner-tag i {
  font-size: 10px;
}
.geo-banner h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.geo-banner h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #2dd4bf, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.geo-banner-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Search Bar (light) */
.geo-search-bar {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.geo-search-input {
  width: 100%;
  padding: 16px 200px 16px 48px;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.geo-search-input::placeholder {
  color: transparent;
}
.geo-search-input:focus {
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow:
    0 0 0 3px rgba(45, 212, 191, 0.1),
    0 4px 20px rgba(0, 0, 0, 0.06);
}
.geo-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #2dd4bf;
  font-size: 16px;
  pointer-events: none;
}
.geo-search-placeholder {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 15px;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}
.geo-search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2dd4bf, #6366f1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(45, 212, 191, 0.25);
}
.geo-search-btn:hover {
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.35);
}

/* === SECTION HEADERS === */
.geo-sec-header {
  text-align: center;
  margin-bottom: 48px;
}
.geo-sec-header h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
}
.geo-sec-header h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #2dd4bf, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.geo-resource-login {
  color: inherit;
  text-decoration: none;
}
.geo-resource-login:hover {
  color: inherit;
}
.geo-sec-header p {
  font-size: 15px;
  color: var(--text-secondary);
}

/* === BUSINESS DIVERSION CARD (removed, replaced by bottom bar) === */
.geo-diversion-section {
  display: none;
}

/* === FLOATING BOTTOM BAR === */
.geo-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(45, 212, 191, 0.15);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
  padding: 10px 16px;
}
.geo-bottom-bar-inner {
  display: flex;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}
.geo-bottom-btn {
  flex: 1;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 14px;
  text-decoration: none;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  min-width: 0;
}
.geo-bottom-btn i {
  font-size: 18px;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}
.geo-bottom-btn-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.geo-bottom-btn-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.geo-bottom-btn-desc {
  display: block;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.7;
  margin-top: 1px;
}

/* Primary - GEO AI 优化服务 */
.geo-bottom-btn-primary {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(99, 102, 241, 0.06));
  border-color: rgba(45, 212, 191, 0.2);
  color: var(--text);
}
.geo-bottom-btn-primary i {
  color: #2dd4bf;
}
.geo-bottom-btn-primary:hover {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.15), rgba(99, 102, 241, 0.12));
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(45, 212, 191, 0.15);
}

/* Secondary - GEO 优化系统 */
.geo-bottom-btn-secondary {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(45, 212, 191, 0.06));
  border-color: rgba(99, 102, 241, 0.2);
  color: var(--text);
}
.geo-bottom-btn-secondary i {
  color: #6366f1;
}
.geo-bottom-btn-secondary:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(45, 212, 191, 0.12));
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.15);
}

/* Active - 自助优化清单 (current page) */
.geo-bottom-btn-active {
  background: linear-gradient(135deg, #2dd4bf, #6366f1);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.3);
}
.geo-bottom-btn-active i {
  color: #fff;
}
.geo-bottom-btn-active .geo-bottom-btn-desc {
  opacity: 0.85;
}
.geo-bottom-btn-active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45, 212, 191, 0.4);
}

/* === HIDE STATS GRID on this page === */
.geo-trial-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(45, 212, 191, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #f0fdfa, #eef2ff);
}
.geo-trial-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 20px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.06), rgba(99, 102, 241, 0.04));
  border: 1.5px solid rgba(45, 212, 191, 0.12);
}
.geo-trial-intro p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.geo-trial-intro strong {
  color: var(--text);
}
.geo-trial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trial-summary-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  align-items: center;
  gap: 28px;
  min-height: 218px;
  padding: 30px;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, #0f766e, #2f70b9 54%, #6366f1);
  color: #fff;
  box-shadow: 0 18px 44px rgba(57, 94, 174, 0.18);
  overflow: hidden;
}
.trial-summary-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  color: #ccfbf1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
}
.trial-summary-copy h3 {
  margin-bottom: 9px;
  font-size: 23px;
  line-height: 1.35;
}
.trial-summary-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.75;
}
.trial-summary-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.trial-summary-metrics span {
  display: grid;
  gap: 3px;
  padding: 14px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 10px;
  white-space: nowrap;
}
.trial-summary-metrics strong {
  color: #fff;
  font-family: var(--font-en);
  font-size: 22px;
}
.trial-card {
  border-radius: 14px;
  padding: 22px 20px;
  background: #fff;
  border: 1.5px solid #eee;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.trial-card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 15.5px;
  background: linear-gradient(135deg, #2dd4bf, #6366f1);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.trial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(45, 212, 191, 0.15);
  border-color: transparent;
}
.trial-card:hover::before {
  opacity: 1;
}
.trial-card > * {
  position: relative;
  z-index: 1;
}
.trial-card:hover .trial-card-name {
  color: #fff;
}
.trial-card:hover .trial-card-ai-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.trial-card:hover .trial-card-old {
  color: rgba(255, 255, 255, 0.5);
}
.trial-card:hover .trial-card-new {
  color: #fff;
}
.trial-card:hover .trial-card-premium {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.trial-card-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  transition: color 0.3s;
}
.trial-card-ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(45, 212, 191, 0.1);
  color: #0d9488;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  transition: all 0.3s;
}
.trial-card-ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(45, 212, 191, 0.1);
  color: #0d9488;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.trial-card-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.trial-card-old {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
}
.trial-card-new {
  font-size: 22px;
  font-weight: 900;
  color: #dc2626;
}
.trial-card-new .yen {
  font-size: 13px;
  font-weight: 600;
}
.trial-card-premium {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  padding: 2px 8px;
  border-radius: 6px;
}
.trial-card-premium i {
  font-size: 9px;
}

.geo-media-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 218px;
  padding: 20px;
  border: 2px solid rgba(59, 130, 246, 0.16);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.geo-media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.62);
  box-shadow: 0 16px 38px rgba(45, 212, 191, 0.14);
}
.geo-media-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.geo-media-head > div {
  min-width: 0;
}
.geo-media-head strong {
  display: block;
  overflow: hidden;
  color: #172033;
  font-size: 15px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.geo-media-head p {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}
.geo-media-head p span {
  padding: 2px 7px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 10px;
  font-weight: 700;
}
.geo-media-avatar {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.geo-media-avatar.avatar-red { background: linear-gradient(135deg, #fb7185, #dc2626); }
.geo-media-avatar.avatar-blue { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.geo-media-avatar.avatar-cyan { background: linear-gradient(135deg, #2dd4bf, #0891b2); }
.geo-media-avatar.avatar-gold { background: linear-gradient(135deg, #fbbf24, #f97316); }
.geo-media-data {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 10px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #eef2f7;
}
.geo-media-data > span {
  display: grid;
  gap: 4px;
  color: #475569;
  font-size: 12px;
}
.geo-media-data b {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
}
.geo-media-data > strong {
  color: #e11d48;
  font-family: var(--font-en);
  font-size: 24px;
  line-height: 1;
}
.geo-media-data small {
  margin-right: 2px;
  font-size: 12px;
}
.geo-media-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 17px;
  color: #64748b;
  font-size: 11px;
}
.geo-media-foot i {
  color: #14b8a6;
  transition: transform 0.25s ease;
}
.geo-media-card:hover .geo-media-foot i {
  transform: translateX(4px);
}

/* === GEO RESOURCE TABLE (price.html style, original content) === */
.geo-table-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 60%, rgba(45, 212, 191, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #eef2ff, #f0fdfa);
}
.geo-resource-table {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.05),
    0 0 10px rgba(45, 212, 191, 0.15);
  position: relative;
  border: 1px solid rgba(45, 212, 191, 0.1);
  overflow: hidden;
}
.geo-table-title {
  background: linear-gradient(90deg, #2dd4bf, #6366f1);
  color: #fff;
  padding: 20px 28px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  border-radius: 16px 16px 0 0;
}
.geo-table-title i {
  margin-right: 10px;
}
.geo-table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
  gap: 0;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.3s ease;
  position: relative;
  align-items: center;
}
.geo-table-row.geo-table-header {
  background: #f8fafc;
  font-weight: bold;
  color: #666;
  font-size: 14px;
  border-bottom: 2px solid #e2e8f0;
}
.geo-table-row:last-child {
  border-bottom: none;
}
.geo-table-row:hover {
  background: rgba(45, 212, 191, 0.04);
}
.geo-table-row .col-media {
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.geo-table-row .geo-media-login {
  color: inherit;
  text-decoration: none;
}
.geo-table-row .geo-media-login:hover {
  color: #0d9488;
}
.geo-table-row .ai-indexed-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
  background: rgba(45, 212, 191, 0.12);
  color: #0d9488;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.geo-table-row .col-engines {
  display: flex;
  gap: 4px;
  align-items: center;
}
.ai-dot {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.ai-dot.high {
  opacity: 1;
}
.ai-dot.mid {
  opacity: 0.5;
}
.ai-dot.low {
  opacity: 0.25;
}
.ai-dot.ds {
  background: #4a6bf5;
}
.ai-dot.qw {
  background: #7c3aed;
}
.ai-dot.db {
  background: #00b8d9;
}
.ai-dot.wx {
  background: #e53e3e;
}
.ai-dot.yb {
  background: #f59e0b;
}
.geo-table-row .col-intake {
  font-size: 12px;
  color: #0d9488;
  font-weight: 600;
}
.geo-table-row .col-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f59e0b;
}
.geo-table-row .col-stars svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  fill: currentColor;
  filter: drop-shadow(0 2px 3px rgba(245, 158, 11, 0.18));
}
.geo-table-row .diamond-price {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--text-secondary);
}
.geo-table-row .diamond-price strong {
  font-size: 18px;
  font-weight: 800;
  color: #6366f1;
}
.geo-table-row .diamond-price .yen {
  font-size: 11px;
  font-weight: 600;
}
.geo-table-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  font-size: 11px;
  color: var(--text-light);
  align-items: center;
}
.geo-table-legend .legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 800;
  color: #fff;
  margin-right: 3px;
  vertical-align: middle;
}

/* === REFERENCE SOURCE RANKING (NEW) === */
.geo-reference-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(45, 212, 191, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 60%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #eef2ff, #f0fdfa);
}
.geo-reference-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 5px 20px rgba(0, 0, 0, 0.06),
    0 0 15px rgba(45, 212, 191, 0.12);
  position: relative;
  border: 1.5px solid rgba(45, 212, 191, 0.15);
  overflow: hidden;
  margin-bottom: 28px;
}
.geo-ref-title {
  background: linear-gradient(90deg, #2dd4bf, #6366f1);
  color: #fff;
  padding: 18px 28px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.geo-ref-title i {
  font-size: 16px;
}

/* 引用站点类型占比 - 圆饼图 */
.geo-ref-chart-container {
  padding: 40px 28px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.geo-ref-pie-chart {
  position: relative;
  width: 240px;
  height: 240px;
  flex-shrink: 0;
}
.geo-ref-pie {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    #2dd4bf 0deg 148.6deg,
    #6366f1 148.6deg 274.2deg,
    #00b8d9 274.2deg 301.7deg,
    #f59e0b 301.7deg 327.9deg,
    #10b981 327.9deg 343.4deg,
    #ef4444 343.4deg 350.3deg,
    #8b5cf6 350.3deg 354.6deg,
    #ec4899 354.6deg 359deg,
    #14b8a6 359deg 360deg
  );
  box-shadow: 0 8px 24px rgba(45, 212, 191, 0.2);
  position: relative;
  clip-path: circle(0 at 50% 50%);
  transform: rotate(-28deg) scale(0.92);
}
.geo-reference-wrap.visible .geo-ref-pie {
  animation: geoPieReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}
@keyframes geoPieReveal {
  to {
    clip-path: circle(52% at 50% 50%);
    transform: rotate(0) scale(1);
  }
}
.geo-ref-pie::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.geo-ref-pie-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.geo-ref-pie-center .total-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.geo-ref-pie-center .total-value {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(90deg, #2dd4bf, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.geo-ref-pie-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}
.geo-ref-pie-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.geo-ref-pie-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}
.geo-ref-pie-legend-label {
  flex: 1;
  color: var(--text);
}
.geo-ref-pie-legend-value {
  font-weight: 700;
  font-family: var(--font-en);
  color: var(--text-secondary);
}

/* 引用站点类型排行表格 */
.geo-ref-ranking {
  padding: 0;
}
.geo-rank-row {
  display: grid;
  grid-template-columns: 60px 1.8fr 1fr 1fr 90px;
  gap: 0;
  padding: 14px 28px;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
  transition: all 0.3s;
}
.geo-rank-row:hover {
  background: rgba(45, 212, 191, 0.04);
}
.geo-rank-row.geo-rank-header {
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.08), rgba(99, 102, 241, 0.06));
  font-weight: 700;
  color: #666;
  font-size: 13px;
  border-bottom: 2px solid rgba(45, 212, 191, 0.15);
}
.geo-rank-row:last-child {
  border-bottom: none;
}
.rank-col {
  font-size: 13px;
  color: var(--text-secondary);
}
.rank-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.rank-1 {
  background: linear-gradient(135deg, #2dd4bf, #6366f1);
  box-shadow: 0 2px 8px rgba(45, 212, 191, 0.3);
}
.rank-2 {
  background: linear-gradient(135deg, #6366f1, #2dd4bf);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}
.rank-3 {
  background: linear-gradient(135deg, #00b8d9, #2dd4bf);
  box-shadow: 0 2px 8px rgba(0, 184, 217, 0.3);
}
.rank-col-type {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.rank-col-count,
.rank-col-total {
  font-size: 12px;
  color: var(--text-secondary);
  font-family: var(--font-en);
}
.rank-col-pct {
  text-align: right;
}
.rank-pct-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-en);
  background: rgba(45, 212, 191, 0.1);
  color: #0d9488;
}

/* === CASES === */
.geo-cases-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(45, 212, 191, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #f0fdfa, #eef2ff);
}
.geo-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.geo-case-card {
  border-radius: 16px;
  padding: 28px 24px;
  background: #fff;
  border: 1.5px solid #eee;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.geo-case-card::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 17.5px;
  background: linear-gradient(135deg, #2dd4bf, #6366f1);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.geo-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(45, 212, 191, 0.15);
  border-color: transparent;
}
.geo-case-card:hover::before {
  opacity: 1;
}
.geo-case-card > * {
  position: relative;
  z-index: 1;
}
.geo-case-card:hover .geo-case-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}
.geo-case-card:hover .geo-case-label {
  color: #fff;
}
.geo-case-card:hover h4 {
  color: #fff;
}
.geo-case-card:hover .geo-case-stat {
  color: rgba(255, 255, 255, 0.85);
}
.geo-case-card:hover .geo-case-stat strong {
  color: #fff;
}
.geo-case-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
  transition: all 0.3s;
}
.geo-case-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}
.geo-case-label {
  font-size: 11px;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.geo-case-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.geo-case-chart {
  height: 80px;
  margin-bottom: 12px;
  position: relative;
}
.geo-case-chart svg {
  width: 100%;
  height: 100%;
}
.geo-case-stat {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.geo-case-stat strong {
  color: #0d9488;
  font-weight: 700;
}

/* === PITFALL GUIDE === */
.geo-pitfall-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(45, 212, 191, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #eef2ff, #f0fdfa);
}
.geo-pitfall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.pitfall-card {
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.pitfall-card.bad {
  background: linear-gradient(135deg, #fef2f2, #fff5f5);
  border: 1.5px solid rgba(239, 68, 68, 0.12);
}
.pitfall-card.good {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.04), rgba(99, 102, 241, 0.03));
  border: 1.5px solid rgba(45, 212, 191, 0.15);
}
.pitfall-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.pitfall-card.bad .pitfall-card-tag {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
}
.pitfall-card.good .pitfall-card-tag {
  background: rgba(45, 212, 191, 0.1);
  color: #0d9488;
}
.pitfall-card h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}
.pitfall-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.pitfall-card ul {
  list-style: none;
}
.pitfall-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.pitfall-card ul li i {
  margin-top: 3px;
  font-size: 12px;
  flex-shrink: 0;
}
.pitfall-card.bad ul li i {
  color: #ef4444;
}
.pitfall-card.good ul li i {
  color: #2dd4bf;
}

/* === FAQ === */
.geo-faq-section {
  padding: 80px 0;
  background: #fff;
}
.geo-faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.geo-faq-item {
  border: 1px solid rgba(99, 102, 241, 0.14);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.035), rgba(99, 102, 241, 0.035));
  overflow: hidden;
}
.geo-faq-item summary {
  position: relative;
  padding: 20px 54px 20px 24px;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.geo-faq-item summary::-webkit-details-marker {
  display: none;
}
.geo-faq-item summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 24px;
  color: #6366f1;
  font-size: 24px;
  font-weight: 500;
  transform: translateY(-50%);
}
.geo-faq-item[open] summary::after {
  content: '−';
}
.geo-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.32s ease, opacity 0.25s ease;
}
.geo-faq-answer > div {
  min-height: 0;
  overflow: hidden;
}
.geo-faq-item[open] .geo-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.geo-faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.9;
}

/* === FINAL CTA === */
.geo-cta-section {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(45, 212, 191, 0.12) 0%, transparent 50%),
    linear-gradient(135deg, #eef2ff, #f0fdfa);
}
.geo-cta {
  text-align: center;
  padding: 48px 32px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(45, 212, 191, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #f0fdfa, #eef2ff);
  border: 2px solid rgba(45, 212, 191, 0.12);
}
.geo-cta h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.geo-cta h3 em {
  font-style: normal;
  background: linear-gradient(135deg, #2dd4bf, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.geo-cta p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.geo-cta .geo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  background: linear-gradient(135deg, #2dd4bf, #6366f1);
  color: #fff;
  box-shadow: 0 4px 24px rgba(45, 212, 191, 0.25);
  text-decoration: none;
  border: none;
  position: relative;
  z-index: 2;
}
.geo-cta .geo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(45, 212, 191, 0.35);
}
.geo-cta .geo-cta-hook {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #f59e0b;
  position: relative;
  z-index: 2;
}

.geo-page .stats-section {
  padding: 72px 0 56px;
}
.geo-page .stats-grid {
  display: grid;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .geo-trial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trial-summary-card {
    grid-column: span 3;
  }
  .geo-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .geo-table-row {
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr;
  }
  .geo-diversion-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .geo-bottom-bar-inner {
    gap: 8px;
  }
  .geo-bottom-btn {
    max-width: 100%;
    padding: 10px 14px;
  }
}
@media (max-width: 768px) {
  .geo-banner {
    display: none;
  }
  .geo-trial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trial-summary-card {
    grid-column: span 2;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
  }
  .trial-summary-copy h3 {
    font-size: 20px;
  }
  .geo-cases-grid {
    display: none !important;
  }
  .geo-pitfall-grid {
    grid-template-columns: 1fr;
  }
  .geo-table-header {
    display: none;
  }
  .geo-table-row {
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    padding: 16px 20px;
  }
  .geo-table-row .col-media {
    grid-column: 1/-1;
    margin-bottom: 4px;
  }
  .geo-table-row .col-engines {
    display: none;
  }
  .geo-table-row .col-stars {
    display: none;
  }
  .geo-diversion-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .geo-cta h3 {
    font-size: 20px;
  }
  .geo-bottom-bar-inner {
    flex-direction: column;
    gap: 6px;
    padding: 0 10px;
  }
  .geo-bottom-btn {
    max-width: 100%;
    padding: 8px 12px;
  }
  .geo-bottom-btn-desc {
    display: none;
  }
}
@media (max-width: 480px) {
  .geo-trial-grid {
    grid-template-columns: 1fr;
  }
  .trial-summary-card {
    grid-column: span 1;
  }
  .trial-summary-metrics {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .geo-ref-pie,
  .geo-reference-wrap.visible .geo-ref-pie {
    animation: none;
    clip-path: none;
    transform: none;
  }
  .geo-faq-answer {
    transition: none;
  }
}
