@charset "UTF-8";
/**
 * GEO 页面样式
 * GEO (Generative Engine Optimization) Page Styles
 * 依赖 main.css 中的 CSS 变量和公共组件
 *
 * @package RiaFlow_Theme
 * @version 2.0.0
 */

/* ==========================================
   GEO Hero 区域（左右分栏）
   ========================================== */
.geopage .page-bg-wrapper {
    left: -800px;
    height: 800px;
    background-size: 800px 1300px;
}

.geo-hero-section {
    padding: calc(var(--nav-container-height) + 144px) var(--spacing-md) 100px;
}

.geo-hero-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.geo-hero-left {
    flex: 1;
    min-width: 0;
}

.geo-hero-right {
    flex: 0 0 620px;
}

.geo-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.geo-hero-subtitle {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.geo-hero-desc {
    font-size: 16px;
    color: var(--text-tertiary);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.geo-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

/* Social Proof */
.geo-hero-social-proof {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.geo-hero-sp-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.geo-hero-sp-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.geo-hero-avatars {
    display: flex;
}

.geo-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0d4f5, #c4dafe);
    border: 2px solid #fff;
    margin-right: -8px;
    display: inline-block;
}

.geo-avatar:nth-child(2) { background: linear-gradient(135deg, #fde68a, #fbbf24); }
.geo-avatar:nth-child(3) { background: linear-gradient(135deg, #a5f3fc, #22d3ee); }
.geo-avatar:nth-child(4) { background: linear-gradient(135deg, #fecaca, #f87171); }
.geo-avatar:nth-child(5) { background: linear-gradient(135deg, #bbf7d0, #4ade80); }

.geo-hero-join-link {
    font-size: 14px;
    font-weight: 600;
    color: #175DFF;
    text-decoration: none;
    margin-left: 8px;
}

.geo-hero-join-link:hover {
    text-decoration: underline;
}

/* Hero 右侧配图 */
.geo-hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   GEO 介绍区域
   ========================================== */
.geo-intro-section {
    padding: var(--spacing-3xl) var(--spacing-md) 80px;
}

.geo-intro-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    text-align: center;
}

.geo-intro-desc {
    font-size: 17px;
    color: var(--text-tertiary);
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: left;
}

/* 核心动作 */
.geo-core-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.geo-core-actions-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-color);
    line-height: 1.5;
    text-align: center;
}

.geo-core-actions-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.geo-core-action-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(107deg, #F5F8FF 0%, #F8F4FF 100%);
    border: 1px solid #D1C6E9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    /* box-shadow: 0 8px 24px rgba(125, 79, 192, 0.1); */
}

.geo-core-action-x {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

/* ==========================================
   GEO 价值区域
   ========================================== */
.geo-value-section {
    padding: 80px var(--spacing-md) var(--spacing-3xl);
    ;
}

.geo-value-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.geo-value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.geo-value-card {
    padding: 36px 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.geo-value-card--highlight {
    border-color: rgba(125, 52, 220, 0.25);
}

.geo-value-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.geo-value-card-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.geo-value-card-desc {
    font-size: 16px;
    color: var(--text-tertiary);
    line-height: 1.7;
}

.geo-value-card-desc strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ==========================================
   三大核心功能 Tab 区域
   ========================================== */
.geo-features-section {
    padding: 80px var(--spacing-md) var(--spacing-3xl);
    ;
}

.geo-features-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* 功能面板内平台 logo 行 */
.geo-features-platforms {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.geo-features-platforms img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Tab 导航 */
.geo-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.geo-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.geo-tab i {
    font-size: 16px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.geo-tab:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.geo-tab:hover i {
    color: var(--accent-color);
}

.geo-tab.active {
    color: var(--accent-color);
    font-weight: 600;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #7D34DC 0%, #185CFF 100%) border-box;
}

.geo-tab.active i {
    color: var(--accent-color);
}

/* Tab 面板 */
.geo-panels {
    position: relative;
}

.geo-panel {
    display: none;
    animation: geoFadeIn 0.4s ease;
}

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

@keyframes geoFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* 面板卡片 */
.geo-panel-card {
    display: flex;
    gap: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    align-items: stretch;
    min-height: 450px;
}

.geo-panel-left {
    flex: 1;
    min-width: 0;
    padding: 48px;
}

.geo-panel-right {
    flex: 0 0 500px;
    display: flex;
    align-items: center;
}

.geo-panel-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.geo-panel-right--img {
    overflow: hidden;
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
    align-self: stretch;
}

.geo-panel-right--img .geo-panel-img {
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    opacity: 0.9;
}

.geo-panel-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.geo-panel-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.geo-panel-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.geo-panel-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
}

.geo-panel-features li img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.geo-panel-features li strong {
    color: var(--text-primary);
}

.geo-panel-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

/* ==========================================
   Demo 卡片（功能面板右侧模拟界面）
   ========================================== */
.geo-demo-card {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: #1A1F2E;
    box-shadow: var(--shadow-medium);
}

.geo-demo-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #12161F;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.geo-demo-dot.red    { background: #FF5F57; }
.geo-demo-dot.yellow { background: #FEBC2E; }
.geo-demo-dot.green  { background: #28C840; }

.geo-demo-title {
    margin-left: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.geo-demo-body {
    padding: 20px;
}

/* 查询 Demo */
.geo-demo-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 16px;
}

.geo-demo-search i {
    color: var(--text-accent);
    font-size: 14px;
}

.geo-demo-platforms {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.geo-demo-platform {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    background: rgba(255,255,255,0.04);
}

.geo-platform-name {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
}

.geo-platform-status {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: var(--border-radius-pill);
    font-weight: 500;
}

.geo-platform-status.mentioned {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
}

.geo-platform-status.not-mentioned {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
}

/* 洞察 Demo */
.geo-demo-chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.geo-chart-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.geo-chart-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.geo-chart-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.geo-bar-label {
    width: 36px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}

.geo-bar-track {
    flex: 1;
    height: 20px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.geo-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.geo-bar-fill.positive { background: linear-gradient(90deg, #22C55E, #4ADE80); }
.geo-bar-fill.neutral  { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.geo-bar-fill.negative { background: linear-gradient(90deg, #EF4444, #F87171); }

.geo-bar-value {
    width: 36px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-align: right;
    flex-shrink: 0;
}

.geo-chart-legend {
    display: flex;
    gap: 16px;
    padding-top: 4px;
}

.geo-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.geo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.geo-dot.positive { background: #22C55E; }
.geo-dot.neutral  { background: #3B82F6; }
.geo-dot.negative { background: #EF4444; }

/* 监测 Demo */
.geo-demo-monitor {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.geo-monitor-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    background: rgba(255,255,255,0.04);
}

.geo-monitor-metric {
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.geo-metric-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.geo-metric-value {
    font-size: 16px;
    font-weight: 600;
}

.geo-metric-value.up {
    color: #22C55E;
}

.geo-metric-value.down {
    color: #EF4444;
}

.geo-monitor-trend {
    flex: 1;
}

.geo-trend-svg {
    width: 100%;
    height: 40px;
}

/* ==========================================
   AI 平台区域
   ========================================== */
.geo-platforms-section {
    padding: 80px var(--spacing-md) var(--spacing-3xl);
}

.geo-platforms-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

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

.geo-platform-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.geo-platform-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    overflow: hidden;
}

.geo-platform-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.geo-platform-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.geo-platform-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==========================================
   GEO 全链增长闭环
   ========================================== */
.geo-growth-section {
    padding: 88px var(--spacing-md) 80px;
    background: linear-gradient(180deg, var(--bg-card) 0%, #F8F7FF 100%);
}

.geo-growth-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.geo-growth-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.geo-growth-card {
    --growth-accent: #8032DB;
    --growth-accent-soft: rgba(128, 50, 219, 0.1);
    --growth-panel-bg: rgba(255, 255, 255, 0.9);
    --growth-panel-border: rgba(215, 222, 243, 0.74);
    --growth-panel-shadow: 0 14px 32px rgba(73, 86, 133, 0.12);
    --growth-line: rgba(214, 225, 250, 0.72);
    --growth-line-strong: rgba(125, 79, 192, 0.14);
    min-height: 238px;
    border-radius: var(--border-radius-lg);
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200, 210, 230, 0.55);
    background:
        radial-gradient(circle at 88% 18%, var(--growth-accent-soft) 0, rgba(255, 255, 255, 0) 42%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, #FDFBFF 100%);
    box-shadow: 0 12px 36px rgba(125, 79, 192, 0.08);
}

.geo-growth-card:nth-child(-n + 3) {
    grid-column: span 2;
}

.geo-growth-card:nth-child(n + 4) {
    grid-column: span 3;
}

.geo-growth-card--diagnosis,
.geo-growth-card--report {
    --growth-accent: #8032DB;
    --growth-accent-soft: rgba(128, 50, 219, 0.12);
}

.geo-growth-card--content {
    --growth-accent: #175DFF;
    --growth-accent-soft: rgba(23, 93, 255, 0.1);
}

.geo-growth-card--media {
    --growth-accent: #7D4FC0;
    --growth-accent-soft: rgba(125, 79, 192, 0.12);
}

.geo-growth-card--strategy {
    --growth-accent: #8032DB;
    --growth-accent-soft: rgba(23, 93, 255, 0.1);
}

.geo-growth-copy {
    width: 50%;
    position: relative;
    z-index: 2;
}

.geo-growth-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 14px;
}

.geo-growth-desc {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.65;
    margin-bottom: 42px;
}

.geo-growth-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.geo-growth-link:hover {
    opacity: 0.8;
}

.geo-growth-link i {
    font-size: 14px;
}

.geo-growth-visual {
    position: absolute;
    right: 28px;
    bottom: 24px;
    width: 48%;
    height: 70%;
    opacity: 0.6;
    pointer-events: none;
}

.geo-growth-browser,
.geo-growth-mini-panel,
.geo-growth-logo-strip,
.geo-growth-copy-card,
.geo-growth-channel-strip,
.geo-growth-report-card,
.geo-growth-chart-card {
    position: absolute;
    border-radius: 8px;
    background: var(--growth-panel-bg);
    box-shadow: var(--growth-panel-shadow);
    border: 1px solid var(--growth-panel-border);
    backdrop-filter: blur(6px);
}

.geo-growth-browser {
    right: 0;
    top: 8px;
    width: 72%;
    height: 112px;
    padding: 24px 16px 14px;
}

.geo-growth-browser--wide {
    width: 86%;
    height: 108px;
}

.geo-growth-browser--report {
    width: 64%;
    height: 132px;
}

.geo-growth-browser > span {
    position: absolute;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D8E3FF;
}

.geo-growth-browser > span:nth-child(1) { left: 14px; }
.geo-growth-browser > span:nth-child(2) { left: 26px; }
.geo-growth-browser > span:nth-child(3) { left: 38px; }

.geo-growth-browser-title {
    font-size: 9px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.geo-growth-line {
    height: 12px;
    border-radius: 4px;
    background: var(--growth-line);
    margin-bottom: 10px;
}

.geo-growth-line--short {
    width: 56%;
}

.geo-growth-line--thin {
    height: 8px;
    width: 74%;
}

.geo-growth-mini-panel {
    right: -8px;
    bottom: 28px;
    width: 86px;
    min-height: 94px;
    padding: 12px;
}

.geo-growth-score {
    font-size: 9px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.geo-growth-pill {
    width: 46px;
    height: 9px;
    border-radius: 8px;
    background: var(--primary-gradient);
    margin-bottom: 8px;
}

.geo-growth-ai-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
}

.geo-growth-ai-row b {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    background: #55C58A;
}

.geo-growth-ai-row:nth-child(4) b { background: #FFB84D; }
.geo-growth-ai-row:nth-child(5) b { background: #8C7CFF; }

.geo-growth-ai-row span {
    width: 34px;
    height: 7px;
    border-radius: 8px;
    background: var(--growth-line);
}

.geo-growth-logo-strip {
    left: 10px;
    bottom: 8px;
    display: flex;
    gap: 8px;
    padding: 8px 10px;
}

.geo-growth-logo-strip img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--growth-panel-border);
    padding: 2px;
}

.geo-growth-logo-strip span,
.geo-growth-channel-strip span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    background: var(--growth-accent);
    box-shadow: 0 6px 12px rgba(73, 86, 133, 0.12);
}

.geo-growth-logo-strip span:nth-child(2),
.geo-growth-channel-strip span:nth-child(2) { background: #FF7A59; }
.geo-growth-logo-strip span:nth-child(3),
.geo-growth-channel-strip span:nth-child(3) { background: #2BC48A; }
.geo-growth-channel-strip span:nth-child(4) { background: #3B82F6; }

.geo-growth-tile-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.geo-growth-tile-row i {
    height: 32px;
    border-radius: 4px;
    background: var(--growth-line);
}

.geo-growth-copy-card {
    left: 14px;
    bottom: 18px;
    width: 132px;
    min-height: 88px;
    padding: 12px;
}

.geo-growth-copy-card strong {
    display: block;
    font-size: 9px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.geo-growth-copy-line {
    height: 8px;
    border-radius: 8px;
    background: var(--growth-line-strong);
    margin-bottom: 8px;
}

.geo-growth-copy-line--short {
    width: 68%;
    background: rgba(23, 93, 255, 0.13);
}

.geo-growth-copy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 22px;
    margin-left: auto;
    padding: 0 14px;
    border-radius: 4px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
}

.geo-growth-report-card strong,
.geo-growth-chart-card strong {
    display: block;
    font-size: 9px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.geo-growth-report-card em {
    display: block;
    font-style: normal;
    font-size: 9px;
    color: var(--text-secondary);
}

.geo-growth-channel-strip {
    display: flex;
    gap: 8px;
    padding: 8px 10px;
}

.geo-growth-channel-strip--top {
    right: -8px;
    top: 68px;
}

.geo-growth-report-card {
    left: 32px;
    bottom: 18px;
    width: 96px;
    min-height: 92px;
    padding: 12px;
    text-align: center;
}

.geo-growth-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 4px auto 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 800;
    background: conic-gradient(var(--growth-accent) 0 71%, #E7ECFF 71% 100%);
    position: relative;
    isolation: isolate;
}

.geo-growth-ring::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: var(--growth-panel-bg);
}

.geo-growth-ring::after {
    content: '71%';
    position: relative;
    z-index: 1;
}

.geo-growth-ring {
    font-size: 0;
}

.geo-growth-chart-card {
    left: 12px;
    bottom: 22px;
    width: 152px;
    min-height: 92px;
    padding: 12px;
}

.geo-growth-days {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.geo-growth-days span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    border-radius: 4px;
    background: rgba(238, 243, 255, 0.92);
    color: #70809A;
    font-size: 9px;
    font-weight: 600;
}

.geo-growth-days .active {
    color: #fff;
    background: var(--growth-accent);
}

.geo-growth-chart-card svg {
    width: 100%;
    height: 34px;
}

/* ==========================================
   使用流程
   ========================================== */
.geo-workflow-section {
    padding: 88px var(--spacing-md) var(--spacing-3xl);
    /* background: linear-gradient(180deg, #F8F7FF 0%, var(--bg-card) 100%); */
}

.geo-workflow-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.geo-workflow-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    position: relative;
}

.geo-step {
    --step-accent: #7D4FC0;
    --step-accent-soft: rgba(125, 79, 192, 0.1);
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: 42px 22px 38px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(200, 210, 230, 0.72);
    background:
        radial-gradient(circle at 82% 14%, var(--step-accent-soft) 0, rgba(255, 255, 255, 0) 42%),
        rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(125, 79, 192, 0.07);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.geo-step:nth-child(1) {
    --step-accent: #7D4FC0;
    --step-accent-soft: rgba(125, 79, 192, 0.1);
}

.geo-step:nth-child(3) {
    --step-accent: #175DFF;
    --step-accent-soft: rgba(23, 93, 255, 0.09);
}

.geo-step:nth-child(5) {
    --step-accent: #5B6CFF;
    --step-accent-soft: rgba(91, 108, 255, 0.1);
}

.geo-step:nth-child(7) {
    --step-accent: #8032DB;
    --step-accent-soft: rgba(128, 50, 219, 0.1);
}

.geo-step:nth-child(9) {
    --step-accent: #2F7AE5;
    --step-accent-soft: rgba(47, 122, 229, 0.1);
}

.geo-step:hover {
    border-color: rgba(125, 79, 192, 0.28);
}

.geo-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-color);
    background: rgba(125, 79, 192, 0.1);
    border: 1px solid rgba(200, 210, 230, 0.46);
    line-height: 1;
    flex-shrink: 0;
}

.geo-step-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.geo-step-desc {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.geo-step-connector {
    flex-shrink: 0;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(125, 79, 192, 0.36);
    font-size: 14px;
}

.geo-step-connector i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(200, 210, 230, 0.55);
}

/* ==========================================
   GEO vs SEO 对比表格（同 home 页 comparison 样式）
   ========================================== */
.geo-comparison-section {
    padding: 80px var(--spacing-md) var(--spacing-3xl);
    background: transparent;
}

.geo-comparison-section .comparison-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.geo-comparison-section .comparison-table {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.geo-comparison-section .comparison-header {
    display: flex;
    background: var(--bg-dark);
    height: 80px;
}

.geo-comparison-section .comparison-header .col-dimension {
    width: 31.25%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    border-right: 1px solid var(--border-color-light);
}

.geo-comparison-section .comparison-header .col-traditional {
    width: 34.375%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    border-right: 1px solid var(--border-color-light);
}

.geo-comparison-section .comparison-header .col-riaflow {
    width: 34.375%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    background: var(--accent-color);
}

.geo-comparison-section .comparison-body {
    display: flex;
    flex-direction: column;
}

.geo-comparison-section .comparison-row {
    display: flex;
    height: 65px;
    border-bottom: 1px solid var(--border-color);
}

.geo-comparison-section .comparison-row:last-child {
    border-bottom: none;
}

.geo-comparison-section .comparison-row.alt {
    background: rgba(0, 0, 0, 0.02);
}

.geo-comparison-section .comparison-row .col-dimension {
    width: 31.25%;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    border-right: 1px solid var(--border-color);
}

.geo-comparison-section .comparison-row .col-traditional {
    width: 34.375%;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    border-right: 1px solid var(--border-color);
}

.geo-comparison-section .comparison-row .col-riaflow {
    width: 34.375%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    background: var(--bg-card-highlight);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.geo-comparison-section .comparison-row.alt .col-riaflow {
    background: rgba(253, 251, 255, 0.8);
}

/* ==========================================
   合作媒体 Logo 墙（向左滚动）
   ========================================== */
.geo-media-section {
    padding: 80px var(--spacing-md);
    overflow: hidden;
}

.geo-media-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.geo-media-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.geo-media-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: geo-media-scroll 30s linear infinite;
}

.geo-media-track--reverse {
    animation: geo-media-scroll-reverse 30s linear infinite;
}

.geo-media-track:hover,
.geo-media-track--reverse:hover {
    animation-play-state: paused;
}

.geo-media-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 8px 20px;
    border-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.geo-media-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.geo-media-item img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.geo-media-item:hover img {
    transform: scale(1.05);
}

@keyframes geo-media-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes geo-media-scroll-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ==========================================
   响应式：平板 (max-width: 1024px)
   ========================================== */
@media (max-width: 1024px) {
    .geo-hero-inner {
        flex-direction: column;
        gap: 40px;
    }

    .geo-hero-right {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .geo-hero-title {
        font-size: 36px;
    }

    .geo-core-actions-items {
        gap: 20px;
    }

    .geo-core-action-circle {
        width: 130px;
        height: 130px;
        font-size: 18px;
    }

    .geo-panel-card {
        flex-direction: column;
        padding: 32px;
    }

    .geo-panel-right {
        flex: none;
        width: 100%;
    }

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

    .geo-growth-card:nth-child(n) {
        grid-column: span 1;
    }

    .geo-growth-card:nth-child(5) {
        grid-column: span 2;
    }

    .geo-workflow-steps {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .geo-step {
        flex: none;
        width: 100%;
        max-width: 520px;
        min-height: auto;
    }

    .geo-step-connector {
        transform: rotate(90deg);
        width: 24px;
        height: 12px;
    }
}

/* ==========================================
   响应式：手机 (max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
    .geo-hero-section {
        padding: 80px 16px 48px;
    }

    .geo-hero-title {
        font-size: 28px;
    }

    .geo-hero-subtitle {
        font-size: 20px;
    }

    .geo-hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .geo-hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
    }

    .geo-intro-section,
    .geo-features-section,
    .geo-platforms-section,
    .geo-growth-section,
    .geo-workflow-section,
    .geo-comparison-section,
    .geo-value-section {
        padding: 48px 16px 56px;
    }

    .geo-growth-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .geo-growth-card:nth-child(n) {
        grid-column: auto;
    }

    .geo-growth-card {
        min-height: auto;
        padding: 28px 22px;
    }

    .geo-growth-copy {
        width: 100%;
    }

    .geo-growth-title {
        font-size: 20px;
    }

    .geo-growth-desc {
        font-size: 14px;
        margin-bottom: 20px;
        padding-right: 118px;
    }

    .geo-growth-visual {
        right: 12px;
        bottom: 14px;
        width: 128px;
        height: 108px;
        transform: scale(0.78);
        transform-origin: right bottom;
    }

    .geo-workflow-steps {
        gap: 12px;
    }

    .geo-step {
        padding: 28px 22px;
        text-align: left;
    }

    .geo-step-number {
        width: 30px;
        height: 30px;
        margin-right: 8px;
        font-size: 14px;
    }

    .geo-step-title {
        font-size: 17px;
        margin-bottom: 8px;
        justify-content: flex-start;
    }

    .geo-step-desc {
        font-size: 14px;
    }

    .geo-value-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .geo-value-card {
        padding: 24px 20px;
    }

    .geo-value-card-title {
        font-size: 17px;
    }

    .geo-value-card-desc {
        font-size: 14px;
    }

    .geo-intro-desc {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .geo-core-actions-title {
        font-size: 16px;
    }

    .geo-core-actions-items {
        gap: 12px;
    }

    .geo-core-action-circle {
        width: 100px;
        height: 100px;
        font-size: 16px;
    }

    .geo-core-action-x {
        font-size: 24px;
    }

    /* Tab */
    .geo-tabs {
        gap: 8px;
    }

    .geo-tab {
        padding: 10px 16px;
        font-size: 14px;
    }

    .geo-tab i {
        display: none;
    }

    .geo-panel-card {
        padding: 24px 18px;
        gap: 24px;
    }

    .geo-panel-title {
        font-size: 20px;
    }

    .geo-panel-features li {
        font-size: 14px;
    }

    /* 平台 */
    .geo-platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .geo-platform-card {
        padding: 24px 12px;
    }

    /* 对比表 */
    .geo-comparison-section .comparison-header {
        height: auto;
        flex-direction: column;
    }

    .geo-comparison-section .comparison-header .col-dimension,
    .geo-comparison-section .comparison-header .col-traditional,
    .geo-comparison-section .comparison-header .col-riaflow {
        width: 100%;
        padding: 12px 16px;
        justify-content: flex-start;
        border-right: none;
        font-size: 14px;
    }

    .geo-comparison-section .comparison-row {
        flex-direction: column;
        height: auto;
    }

    .geo-comparison-section .comparison-row .col-dimension,
    .geo-comparison-section .comparison-row .col-traditional,
    .geo-comparison-section .comparison-row .col-riaflow {
        width: 100%;
        padding: 12px 16px;
        border-right: none;
        font-size: 14px;
    }
}

