﻿/* ========================================
   KuaiPaoCloud Group - 主样式表
   设计理念：浅色企业官网 / 黑白灰 / 扁平克制 / 无发光
   ======================================== */

/* ---------- CSS 变量 ---------- */
:root {
    --bg: #ffffff;
    --bg-void: #ffffff;
    --bg-darker: #f5f6f8;
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f7f8fa;
    --bg-section-alt: #f5f6f8;
    --text-primary: #18181b;
    --text-secondary: #52525b;
    --text-muted: #8a8a93;
    --accent: #18181b;
    --accent-dark: #000000;
    --accent-light: #3f3f46;
    --accent-glow: rgba(0, 0, 0, 0.06);
    --brand: #C8902B;
    --brand-dark: #A8761E;
    --brand-light: #E0A93F;
    --brand-tint: rgba(200, 144, 43, 0.10);
    --on-brand: #1a1a1a;
    --border: #e5e7eb;
    --border-light: #f0f1f3;
    --glass: #ffffff;
    --glass-border: #e5e7eb;
    --radius: 8px;
    --shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 1px 3px rgba(16, 24, 40, 0.06);
    --shadow-lg: 0 4px 16px rgba(16, 24, 40, 0.08);
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --nav-height: 64px;
    --container-max: 1200px;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    --font-mono: "JetBrains Mono", "Fira Code", "Consolas", monospace;
    --font-display: "DIN Alternate", "Bahnschrift", "Roboto", "Helvetica Neue", "Arial", var(--font-mono);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- 导航栏 ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* 滚动后：纯白实底 + 轻微投影 */
.header.scrolled {
    background: #ffffff;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 68px;
    width: auto;
    transition: opacity 0.35s ease;
}

.nav-logo:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 8px 14px;
    font-size: 14px;
    color: var(--text-secondary);
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--brand);
    background: var(--brand-tint);
}

.nav-link.active {
    color: var(--brand);
    background: var(--brand-tint);
    font-weight: 600;
}

/* 下拉导航（企业介绍 / 产品与创新） */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link::after {
    content: '';
    display: inline-block;
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    opacity: 0.55;
    vertical-align: middle;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    margin-top: 6px;
    padding: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 60;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu a {
    display: block;
    padding: 9px 14px;
    font-size: 14px;
    color: var(--text-secondary);
    border-radius: var(--radius);
    white-space: nowrap;
    transition: var(--transition);
}

.nav-submenu a:hover,
.nav-submenu a.active {
    color: var(--brand);
    background: var(--brand-tint);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition);
}

/* ---------- Banner 首屏 ---------- */
.banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 90px) 24px 110px;
    overflow: hidden;
    background: var(--bg) url("../images/banner_index.png") center / cover no-repeat;
    border-bottom: 1px solid var(--border);
}

/* 深色蒙版：左侧（文字区）更深以保证高饱和文字清晰，右侧透出图片 */
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(16, 19, 26, 0.78) 0%,
        rgba(16, 19, 26, 0.46) 55%,
        rgba(16, 19, 26, 0.26) 100%);
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    width: 100%;
    display: grid;
    grid-template-columns: 1.08fr 0.74fr;
    gap: clamp(64px, 9vw, 132px);
    align-items: center;
}

.banner-title {
    margin-bottom: 24px;
}

/* 英文标题：全大写 + 极致字距，国际大厂风范 */
.title-main {
    display: block;
    font-size: clamp(20px, 3vw, 34px);
    font-weight: 600;
    letter-spacing: 0.24em;
    text-indent: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

/* 中文标题：重字重 + 放大，视觉绝对主导 */
.title-sub {
    display: block;
    font-size: clamp(30px, 4.6vw, 56px);
    font-weight: 900;
    color: var(--brand-light);
    margin-top: 16px;
    letter-spacing: 0.4em;
    text-indent: 0.4em;
}

.banner-tagline {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.7;
}

.banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    max-width: 420px;
    line-height: 1.8;
    font-weight: 400;
}

.banner-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* 按钮：扁平实底，无玻璃 / 无流光 */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid var(--brand);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    background: var(--brand);
    color: var(--on-brand);
}

.btn:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: var(--on-brand);
}

/* 描边按钮（次按钮） */
.btn-outline {
    background: transparent;
    color: var(--brand);
    border-color: var(--brand);
}

.btn-outline:hover {
    background: var(--brand-tint);
    border-color: var(--brand-dark);
    color: var(--brand-dark);
}

.btn-block {
    width: 100%;
}

.btn-3px {
    border-radius: 3px;
}

/* Banner 数据统计：严格栅格 + 玻璃拟态 + 微光扫过 */
.banner-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stats-caption {
    grid-column: 1 / -1;
    font-size: 9px;
    font-weight: 500;
    color: rgba(163, 163, 173, 0.45);
    letter-spacing: 0.6em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.stat-item {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.stat-item:hover {
    border-color: var(--text-secondary);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow);
}

.stat-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-light);
    font-family: var(--font-display);
    line-height: 1.1;
    letter-spacing: 0.02em;
    vertical-align: baseline;
    
}

.stat-plus {
    font-size: 24px;
    color: var(--accent-light);
    font-weight: 600;
    font-family: var(--font-display);
    
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* 滚动指示器 */
.banner-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.banner-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.banner-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% { top: 8px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* 客户与合作伙伴：Logo 滚动墙（images/partners/ 下的实拍 logo） */
.partner-wall {
    padding: 100px 0 96px;
}

.partner-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.partner-marquee-track {
    display: flex;
    width: max-content;
    animation: partnerMarquee 38s linear infinite;
}

.partner-wall:hover .partner-marquee-track {
    animation-play-state: paused;
}

.partner-marquee-group {
    display: flex;
    align-items: center;
    gap: 72px;
    padding-right: 72px;
}

.partner-marquee-group img {
    height: 44px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
}

@keyframes partnerMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .partner-marquee-track {
        animation: none;
    }
}

@media (max-width: 768px) {
    .partner-wall {
        padding: 48px 0 72px;
    }

    .partner-marquee-group {
        gap: 48px;
        padding-right: 48px;
    }

    .partner-marquee-group img {
        height: 32px;
        max-width: 140px;
    }
}

/* ---------- 通用 Section 样式 ---------- */
.section {
    padding: 108px 0;
    position: relative;
}

.section-alt {
    background: var(--bg-section-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* 区块标题慢速上浮 + 分隔线延展（进入视口后触发，.in 由 JS 添加） */
.js .section-header > *,
.js .page-banner .breadcrumb,
.js .page-banner .page-title,
.js .page-banner .page-subtitle {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.js section.in .section-header > *,
.js .page-banner.in .breadcrumb,
.js .page-banner.in .page-title,
.js .page-banner.in .page-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.js .section-header .section-title { transition-delay: 0.05s; }
.js .section-header .section-divider { transition-delay: 0.15s; }
.js .section-header .section-desc { transition-delay: 0.22s; }
.js .section-header .section-more { transition-delay: 0.3s; }
.js .page-banner .breadcrumb { transition-delay: 0.05s; }
.js .page-banner .page-title { transition-delay: 0.15s; }
.js .page-banner .page-subtitle { transition-delay: 0.25s; }

.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-divider {
    width: 48px;
    height: 2px;
    background: var(--brand);
    margin: 0 auto 16px;
    border-radius: 1px;
}

.section-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* 区块标题链接 */
.title-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.title-link:hover {
    color: var(--accent-light);
}

/* 了解更多链接 */
.section-more {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--accent-light);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.section-more:hover {
    color: var(--accent);
    transform: translateX(4px);
}

/* ---------- 关于我们 Section ---------- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    
    transition: var(--transition);
}

.about-card:hover {
    border-color: var(--accent-dark);
    box-shadow: var(--shadow);
}

.about-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(24, 24, 27, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent-light);
}

.about-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.about-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- 产品服务 Section ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 36px;
    
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.service-block:hover {
    border-color: var(--accent-dark);
    box-shadow: var(--shadow);
}

.service-block:hover::before {
    opacity: 1;
}

.service-block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.service-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-mono);
    background: rgba(24, 24, 27, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius);
}

.service-block h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
}

.service-block p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-list li {
    font-size: 13px;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 5px 12px;
    border-radius: var(--radius);
}

/* ---------- 基础设施 Section ---------- */
.infra-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

/* 中国地图轮廓 SVG 作为背景 */
.map-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 700'%3E%3Cpath d='M200,150 L250,120 L300,100 L350,110 L400,90 L450,100 L500,80 L550,95 L600,85 L650,100 L700,90 L750,110 L780,140 L760,170 L720,190 L680,210 L650,240 L620,270 L600,300 L580,330 L550,360 L520,390 L500,420 L480,450 L450,480 L420,500 L390,520 L360,540 L330,530 L300,500 L280,470 L260,440 L240,410 L220,380 L200,350 L180,320 L170,290 L160,260 L170,230 L180,200 Z' fill='%231a1a1a' stroke='%232a2a2a' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.map-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-lines line {
    stroke: var(--accent-dark);
    stroke-width: 0.3;
    stroke-dasharray: 1 0.5;
    opacity: 0.5;
}

.map-dot {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: translate(-50%, -50%);
    cursor: default;
}

.map-dot .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    transition: var(--transition);
}

.map-dot .dot-core {
    width: 12px;
    height: 12px;
    background: var(--accent-light);
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 12px rgba(24, 24, 27, 0.4);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 12px rgba(24, 24, 27, 0.4); }
    50% { box-shadow: 0 0 20px rgba(24, 24, 27, 0.7); }
}

.map-dot .dot-label {
    font-size: 11px;
    color: var(--text-secondary);
    white-space: nowrap;
    background: var(--bg-card);
    padding: 2px 8px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.map-dot .dot-label small {
    color: var(--accent);
    font-size: 10px;
    margin-left: 2px;
}

.map-dot:hover .dot {
    transform: scale(1.4);
    background: var(--accent-light);
}

.infra-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.infra-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    
    transition: var(--transition);
}

.infra-card:hover {
    border-color: var(--accent-dark);
}

.infra-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 8px;
}

.infra-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- 可得财务 Section ---------- */
.kedai-section {
    background: var(--bg-section-alt);
}

.kedai-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
}

.kedai-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(24, 24, 27, 0.1);
    border: 1px solid rgba(24, 24, 27, 0.2);
    padding: 4px 14px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.kedai-main h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.kedai-main p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.kedai-main strong {
    color: var(--accent-light);
    font-weight: 700;
}

.kedai-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.kedai-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(24, 24, 27, 0.15);
    color: var(--accent-light);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
}

.feature-check::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid var(--accent-light);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.kedai-data {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.data-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid var(--accent-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(24, 24, 27, 0.03);
    transition: var(--transition);
}

.data-circle:hover {
    border-color: var(--accent);
    background: rgba(24, 24, 27, 0.06);
}

.data-num {
    font-size: 38px;
    font-weight: 700;
    color: var(--accent-light);
    font-family: var(--font-display);
    
}

.data-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---------- 乐雨丸 Section ---------- */
.leyuwan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.leyuwan-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.leyuwan-info p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.leyuwan-highlights {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.highlight-num {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-light);
    font-family: var(--font-display);
    
}

.highlight-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.leyuwan-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leyuwan-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.leyuwan-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 1px;
}

/* 控制台模拟 */
.leyuwan-card-visual {
    background: var(--bg-void);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    font-family: var(--font-mono);
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border);
}

.visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
}

.visual-dot:nth-child(1) { background: #4a4a4a; }
.visual-dot:nth-child(2) { background: #3a3a3a; }
.visual-dot:nth-child(3) { background: #2a2a2a; }

.visual-title {
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    color: var(--text-muted);
}

.visual-body {
    padding: 20px;
    min-height: 240px;
}

.console-line {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.6;
}

.console-line .prompt {
    color: var(--accent);
    margin-right: 8px;
    font-weight: 600;
}

.console-line .prompt.ok {
    color: var(--accent-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    position: relative;
}

.console-line .prompt.ok::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid var(--accent-light);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.console-line .accent {
    color: var(--accent-light);
    font-weight: 600;
}

/* ---------- 合作伙伴 Section ---------- */
.partners-section {
    background: var(--bg-section-alt);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partner-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--accent-dark);
}

.partner-logo-placeholder {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(24, 24, 27, 0.08);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    padding: 4px;
}

.partner-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.partner-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- 联系我们 Section ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--accent-dark);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(24, 24, 27, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-light);
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* 表单 */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%236b6b6b' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* ---------- 页脚 ---------- */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 56px 0 24px;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    height: 55px;
    margin-bottom: 16px;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--brand);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

/* 页脚备案信息（ICP / 增值电信） */
.footer-legal {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    text-align: center;
}

.legal-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    transition: var(--transition);
}

.legal-item:hover {
    color: var(--brand);
}

/* ---------- 动画 ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ---------- 响应式：平板 ---------- */
@media (max-width: 1024px) {
    .banner-content {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .infra-layout {
        grid-template-columns: 1fr;
    }

    .kedai-content {
        grid-template-columns: 1fr;
    }

    .leyuwan-content {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-layout {
        grid-template-columns: 1fr;
    }
}

/* ---------- 响应式：手机 ---------- */
@media (max-width: 768px) {
    :root {
        --nav-height: 56px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-darker);
        border-bottom: 1px solid var(--border);
        padding: 16px;
        gap: 4px;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 12px 16px;
        width: 100%;
        text-align: center;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > .nav-link::after {
        display: none;
    }

    .nav-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 6px 10px;
        margin-top: 0;
    }

    .nav-submenu a {
        text-align: center;
    }

    .section {
        padding: 72px 0;
    }

    .banner {
        padding: 80px 16px 40px;
        min-height: auto;
    }

    .banner-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 16px 12px;
    }

    .stat-number {
        font-size: 34px;
    }

    .fx-ring {
        display: none;
    }

    .fx-dot {
        --s: 2px !important;
        opacity: 0.15;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .kedai-features {
        grid-template-columns: 1fr;
    }

    .leyuwan-highlights {
        gap: 20px;
    }

    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .banner-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .data-circle {
        width: 130px;
        height: 130px;
    }

    .data-num {
        font-size: 24px;
    }
}

/* ===== Qupper's Forge 首页板块 ===== */
.qf-img-card {
    background: var(--bg-void);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.qf-img-card img {
    display: block;
    width: 100%;
    height: auto;
}
.quppersforge-cta {
    margin-top: 24px;
}
