/* 娱乐艺人粉丝经济解决方案专用样式 */

/* CSS变量定义 */
:root {
    --fan-purple: #E040FB;
    --fan-pink: #FF4081;
    --fan-mint: #00BCD4;
    --fan-gold: #FFD54F;
    --fan-bg: #0A0A0A;
    --fan-card-bg: #1A1816;
    --fan-border: #2A2724;
}

/* Hero区样式 */
.hero-fan {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a1a 0%, #0A0A0A 50%, #0a1a1a 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-fan::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(224, 64, 251, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 64, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.hero-fan .hero-bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-fan .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-fan .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero-fan .hero-badge {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-fan .badge-icon {
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

.hero-fan .badge-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-fan .badge-icon:nth-child(3) {
    animation-delay: 1s;
}

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

.hero-fan .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff 0%, var(--fan-pink) 50%, var(--fan-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-fan .hero-subtitle {
    font-size: 1.5rem;
    color: var(--fan-gold);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-fan .hero-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-fan .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-fan .stat-item {
    text-align: center;
}

.hero-fan .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--fan-gold);
    text-shadow: 0 0 20px rgba(255, 213, 79, 0.3);
}

.hero-fan .stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

.hero-fan .hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* 面包屑 */
.breadcrumb {
    background: #1a1816;
    padding: 1rem 0;
    border-bottom: 1px solid var(--fan-border);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--fan-pink);
}

.breadcrumb .separator {
    color: #475569;
}

.breadcrumb .current {
    color: var(--fan-pink);
}

/* 通用Section样式 */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: rgba(255, 64, 129, 0.1);
    color: var(--fan-pink);
    border: 1px solid rgba(255, 64, 129, 0.3);
}

.section-tag.featured {
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.2), rgba(255, 64, 129, 0.1));
    border-color: rgba(255, 213, 79, 0.5);
    color: var(--fan-gold);
}

.section-tag.emerging {
    background: linear-gradient(135deg, rgba(224, 64, 251, 0.2), rgba(255, 64, 129, 0.1));
    border-color: rgba(224, 64, 251, 0.5);
    color: var(--fan-purple);
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
}

/* 为什么选择CGN - 优势区 */
.why-section {
    background: linear-gradient(180deg, #0A0A0A 0%, #1a1816 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.advantage-card {
    background: linear-gradient(135deg, var(--fan-card-bg), #252220);
    border: 1px solid var(--fan-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    border-color: var(--fan-pink);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 64, 129, 0.1);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.advantage-card p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.95rem;
}

.key-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: rgba(255, 64, 129, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 64, 129, 0.2);
}

.stat-box {
    text-align: center;
}

.stat-box .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--fan-gold);
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* 艺人类型适配图谱 */
.artist-map-section {
    background: var(--fan-bg);
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.artist-type-card {
    background: linear-gradient(135deg, var(--fan-card-bg), #252220);
    border: 1px solid var(--fan-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.artist-type-card:hover {
    border-color: var(--fan-purple);
}

.artist-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.artist-type-card h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.product-stars {
    margin-bottom: 1rem;
}

.star-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.star-label {
    color: #94a3b8;
}

.stars {
    color: var(--fan-gold);
}

.artist-driver {
    font-size: 0.85rem;
    color: var(--fan-pink);
    padding-top: 0.5rem;
    border-top: 1px solid var(--fan-border);
}

/* 横向筛选导航 */
.filter-nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--fan-border);
    z-index: 50;
}

.filter-nav.sticky {
    position: sticky;
    top: 0;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.filter-tab {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--fan-border);
    border-radius: 50px;
    color: #A09A93;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: var(--fan-pink);
    color: #fff;
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--fan-pink), var(--fan-purple));
    border-color: transparent;
    color: #fff;
}

/* 主力方案区块 */
.featured-section {
    background: linear-gradient(180deg, #1a1816 0%, #0A0A0A 100%);
}

.solution-card {
    background: var(--fan-card-bg);
    border: 1px solid var(--fan-border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 64, 129, 0.05);
    border-bottom: 1px solid var(--fan-border);
}

.solution-id {
    font-size: 0.8rem;
    color: var(--fan-gold);
    font-weight: 600;
}

.solution-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.solution-tags .tag {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
}

.solution-tags .tag.featured {
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.2), rgba(255, 64, 129, 0.1));
    color: var(--fan-gold);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.solution-content.reverse {
    direction: rtl;
}

.solution-content.reverse > * {
    direction: ltr;
}

.solution-image {
    border-radius: 12px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-info h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.solution-positioning {
    color: var(--fan-pink);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.solution-desc p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* 小卡类型网格 */
.card-types-grid {
    margin-bottom: 1.5rem;
}

.card-types-grid h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.types-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.type-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(224, 64, 251, 0.1);
    border: 1px solid rgba(224, 64, 251, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--fan-purple);
}

/* 稀有度系统 */
.rarity-system {
    margin-bottom: 1.5rem;
}

.rarity-system h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.rarity-bar {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    height: 40px;
}

.rarity-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: var(--percent);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    transition: all 0.3s ease;
}

.rarity-item.rare {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.3), rgba(0, 188, 212, 0.1));
}

.rarity-item.super-rare {
    background: linear-gradient(135deg, rgba(224, 64, 251, 0.3), rgba(224, 64, 251, 0.1));
}

.rarity-item.ultra-rare {
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.3), rgba(255, 64, 129, 0.1));
}

.rarity-item.legendary {
    background: linear-gradient(135deg, rgba(255, 213, 79, 0.3), rgba(255, 213, 79, 0.1));
}

.rarity-name {
    font-size: 0.7rem;
    color: #fff;
    font-weight: 600;
}

.rarity-percent {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 四梯度方案 */
.tiers-grid {
    margin-bottom: 1.5rem;
}

.tiers-grid h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.tier-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.tier-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--fan-border);
    border-radius: 8px;
    text-align: center;
}

.tier-card .tier-name {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tier-card .tier-pages {
    display: block;
    color: #94a3b8;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.tier-card .tier-price {
    display: block;
    color: var(--fan-gold);
    font-size: 0.8rem;
    font-weight: 600;
}

/* 装帧风格 */
.binding-styles {
    margin-bottom: 1.5rem;
}

.binding-styles h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.binding-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.binding-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 213, 79, 0.1);
    border: 1px solid rgba(255, 213, 79, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--fan-gold);
}

/* 演唱会品类网格 */
.merch-categories {
    margin-bottom: 1.5rem;
}

.merch-categories h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.merch-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--fan-border);
    border-radius: 8px;
    font-size: 0.8rem;
}

.merch-item .merch-icon {
    margin-right: 0.5rem;
}

.merch-item span:nth-child(2) {
    color: #fff;
    flex: 1;
}

.merch-item .price {
    color: var(--fan-gold);
    font-size: 0.75rem;
}

/* 套装组合 */
.bundle-options h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.bundle-card {
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.1), rgba(224, 64, 251, 0.05));
    border: 1px solid rgba(255, 64, 129, 0.3);
    border-radius: 8px;
}

.bundle-card .bundle-name {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.bundle-card .bundle-content {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.bundle-card .bundle-price {
    display: block;
    color: var(--fan-gold);
    font-size: 0.85rem;
    font-weight: 600;
}

/* 生日套装梯度 */
.birthday-tiers h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.birthday-tier {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--fan-border);
    border-radius: 8px;
}

.birthday-tier .tier-name {
    display: block;
    color: var(--fan-pink);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.birthday-tier .tier-content {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.birthday-tier .tier-price {
    display: block;
    color: var(--fan-gold);
    font-size: 0.85rem;
    font-weight: 600;
}

/* 专属物料 */
.special-items h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.special-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.special-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 64, 129, 0.1);
    border: 1px solid rgba(255, 64, 129, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--fan-pink);
}

/* 方案元数据 */
.solution-meta {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-label {
    color: #94a3b8;
    font-size: 0.85rem;
}

.meta-value {
    color: var(--fan-gold);
    font-weight: 600;
}

/* 新锐方案网格 */
.emerging-section {
    background: #0A0A0A;
}

.emerging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.emerging-card {
    background: linear-gradient(135deg, var(--fan-card-bg), #252220);
    border: 1px solid var(--fan-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.emerging-card:hover {
    border-color: var(--fan-purple);
    transform: translateY(-5px);
}

.emerging-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(224, 64, 251, 0.05);
    border-bottom: 1px solid var(--fan-border);
}

.emerging-card .tag {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
}

.emerging-card .tag.new {
    background: linear-gradient(135deg, rgba(224, 64, 251, 0.2), rgba(255, 64, 129, 0.1));
    color: var(--fan-purple);
}

.emerging-card .tag.category {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
}

.emerging-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.emerging-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.emerging-card:hover .emerging-image img {
    transform: scale(1.05);
}

.emerging-card h3 {
    padding: 1rem 1.25rem 0.5rem;
    color: #fff;
    font-size: 1.1rem;
}

.emerging-card p {
    padding: 0 1.25rem 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.emerging-meta {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--fan-border);
    font-size: 0.85rem;
    color: #64748b;
}

/* 全场景物料库 */
.scene-library-section {
    background: linear-gradient(180deg, #1a1816 0%, #0A0A0A 100%);
}

.scene-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.scene-card {
    background: var(--fan-card-bg);
    border: 1px solid var(--fan-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.scene-card:hover {
    border-color: var(--fan-mint);
    transform: translateY(-3px);
}

.scene-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.scene-card h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.scene-card p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.scene-lead {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--fan-mint);
}

/* 粉丝心理与产品策略 */
.psychology-section {
    background: var(--fan-bg);
}

.psychology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.psychology-card {
    background: var(--fan-card-bg);
    border: 1px solid var(--fan-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.psychology-card:hover {
    border-color: var(--fan-pink);
}

.psychology-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.psychology-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.psychology-mechanism {
    color: var(--fan-pink);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.psychology-strategy {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.psychology-product {
    color: var(--fan-gold);
    font-size: 0.85rem;
}

/* 产品选品决策矩阵 */
.product-matrix h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 1.5rem;
}

.decision-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--fan-card-bg);
    border-radius: 12px;
    overflow: hidden;
}

.decision-table th,
.decision-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--fan-border);
}

.decision-table th {
    background: rgba(255, 64, 129, 0.1);
    color: #fff;
    font-weight: 600;
}

.decision-table td {
    color: #94a3b8;
}

.decision-table td:first-child {
    text-align: left;
    color: #fff;
}

.decision-table .recommend {
    color: var(--fan-gold);
    font-weight: 600;
}

/* 全球粉丝市场 */
.global-section {
    background: linear-gradient(180deg, #1a1816 0%, #0A0A0A 100%);
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.global-card {
    background: var(--fan-card-bg);
    border: 1px solid var(--fan-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.global-card:hover {
    border-color: var(--fan-mint);
}

.global-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.global-card h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.global-feature {
    color: var(--fan-pink);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.global-product {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.global-logistics {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 188, 212, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--fan-mint);
}

.global-map {
    border-radius: 12px;
    overflow: hidden;
    margin-top: 2rem;
}

.global-map img {
    width: 100%;
    height: auto;
}

/* 定制流程 */
.process-section {
    background: var(--fan-bg);
}

.process-timeline {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.process-step {
    min-width: 200px;
    background: var(--fan-card-bg);
    border: 1px solid var(--fan-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--fan-pink);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--fan-pink), var(--fan-purple));
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.step-time {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 213, 79, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--fan-gold);
}

.special-services {
    text-align: center;
}

.special-services h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.service-item {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 64, 129, 0.1);
    border: 1px solid rgba(255, 64, 129, 0.3);
    border-radius: 50px;
    color: var(--fan-pink);
    font-size: 0.9rem;
}

/* FAQ */
.faq-section {
    background: linear-gradient(180deg, #1a1816 0%, #0A0A0A 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.faq-item {
    background: var(--fan-card-bg);
    border: 1px solid var(--fan-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 64, 129, 0.05);
}

.faq-question span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--fan-pink), var(--fan-purple));
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.faq-question span:last-child {
    color: #fff;
    font-size: 0.95rem;
    flex: 1;
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    display: none;
}

.faq-answer p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.9rem;
    padding-left: 2.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA区 */
.cta-section {
    position: relative;
    background: var(--fan-bg);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(224, 64, 251, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 64, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--fan-pink) 50%, var(--fan-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--fan-gold);
    margin-bottom: 1rem;
}

.cta-products {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.quick-links {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--fan-border);
    border-radius: 16px;
}

.quick-links h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 1.5rem;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.links-grid a {
    padding: 0.5rem 1rem;
    background: rgba(255, 64, 129, 0.1);
    border: 1px solid rgba(255, 64, 129, 0.2);
    border-radius: 8px;
    color: var(--fan-pink);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.links-grid a:hover {
    background: rgba(255, 64, 129, 0.2);
    border-color: var(--fan-pink);
}

/* 浮动询价按钮 */
.floating-quote-btn {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--fan-gold), #C9A84C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0A0A;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 213, 79, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-quote-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 213, 79, 0.4);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .solution-content {
        grid-template-columns: 1fr;
    }

    .solution-content.reverse {
        direction: ltr;
    }

    .psychology-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

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

    .tier-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bundle-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .key-stats {
        gap: 1.5rem;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-step {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .tier-cards {
        grid-template-columns: 1fr;
    }

    .merch-grid {
        grid-template-columns: 1fr;
    }

    .solution-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
