/* roulang page: index */
:root {
            --bg-deep: #1C120A;
            --bg-dark: #2C1E16;
            --bg-card: rgba(44, 30, 22, 0.7);
            --bg-card-light: rgba(232, 220, 200, 0.08);
            --bg-card-lighter: rgba(232, 220, 200, 0.12);
            --accent-green: #6D8C3F;
            --accent-green-dark: #5A7A2F;
            --accent-green-light: rgba(109, 140, 63, 0.25);
            --gold: #C9A96E;
            --gold-light: rgba(201, 169, 110, 0.4);
            --gold-dim: rgba(201, 169, 110, 0.2);
            --text-light: #E8DCC8;
            --text-muted: #B8A890;
            --text-dark: #1A120A;
            --text-body: #D4C8B0;
            --border-subtle: rgba(109, 140, 63, 0.3);
            --border-gold: rgba(201, 169, 110, 0.35);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
            --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.45);
            --radius-sm: 4px;
            --radius-md: 6px;
            --radius-lg: 8px;
            --radius-pill: 12px;
            --font-heading: 'PingFang SC', 'MiSans', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            --font-body: 'PingFang SC', 'MiSans', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            --font-mono: 'Courier New', 'Fira Code', 'SF Mono', monospace;
            --nav-height: 64px;
            --container-max: 1200px;
            --transition-fast: 0.2s ease;
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --line-height: 1.8;
            --paragraph-spacing: 1.5em;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-deep);
            color: var(--text-body);
            line-height: var(--line-height);
            min-height: 100vh;
            background-image:
                radial-gradient(ellipse at 50% 0%, rgba(109, 140, 63, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.03) 0%, transparent 50%),
                url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 60 0 L 0 0 0 60' fill='none' stroke='rgba(232,220,200,0.03)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='60' height='60' fill='url(/%23grid)'/%3E%3C/svg%3E");
            background-attachment: fixed;
        }

        a {
            color: var(--gold);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--accent-green);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
            background: none;
            color: inherit;
        }
        button {
            cursor: pointer;
        }
        ul,
        ol {
            list-style: none;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--text-light);
            line-height: 1.3;
        }
        h1 {
            font-size: 2.5rem;
        }
        h2 {
            font-size: 1.75rem;
        }
        h3 {
            font-size: 1.25rem;
        }
        p {
            margin-bottom: var(--paragraph-spacing);
        }
        p:last-child {
            margin-bottom: 0;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--nav-height);
            background: rgba(28, 18, 10, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(109, 140, 63, 0.3);
            transition: background var(--transition-smooth);
        }
        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }
        .nav-logo {
            display: flex;
            align-items: baseline;
            gap: 4px;
            flex-shrink: 0;
            text-decoration: none;
            color: var(--gold);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.35rem;
            letter-spacing: 0.02em;
            transition: opacity var(--transition-fast);
        }
        .nav-logo:hover {
            opacity: 0.85;
            color: var(--gold);
        }
        .nav-logo .logo-sub {
            font-size: 0.75rem;
            font-weight: 400;
            color: var(--text-muted);
            letter-spacing: 0.04em;
            margin-left: 2px;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .nav-links a {
            color: var(--text-light);
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            padding: 4px 0;
            transition: color var(--transition-fast);
            white-space: nowrap;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-green);
            transition: width var(--transition-smooth);
        }
        .nav-links a:hover {
            color: var(--accent-green);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.active {
            color: var(--accent-green);
        }
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-badge {
            display: inline-flex;
            align-items: center;
            background: var(--gold);
            color: var(--text-dark);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: var(--radius-pill);
            margin-left: 6px;
            letter-spacing: 0.03em;
            animation: badgePulse 2s ease-in-out infinite;
        }
        @keyframes badgePulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--gold);
            color: var(--text-dark);
            font-weight: 700;
            padding: 10px 20px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            transition: all var(--transition-fast);
            white-space: nowrap;
            border: 1px solid transparent;
        }
        .nav-cta:hover {
            background: #D4B87A;
            color: var(--text-dark);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }
        .nav-cta:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--accent-green);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            transition: color var(--transition-fast);
        }
        .mobile-toggle:hover {
            color: var(--gold);
        }

        /* Mobile Nav */
        .mobile-nav {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(28, 18, 10, 0.98);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 60px;
            gap: 20px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--text-light);
            font-size: 1.15rem;
            font-weight: 600;
            padding: 12px 24px;
            transition: color var(--transition-fast);
        }
        .mobile-nav a:hover {
            color: var(--accent-green);
        }
        .mobile-nav .nav-cta {
            margin-top: 16px;
            font-size: 1rem;
            padding: 14px 32px;
        }
        .mobile-nav .nav-badge {
            font-size: 0.75rem;
            padding: 3px 10px;
        }

        /* Hero Section - 白皮书获客风格 */
        .hero {
            padding-top: calc(var(--nav-height) + 48px);
            padding-bottom: 60px;
            position: relative;
            overflow: hidden;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image: url('/assets/images/backpic/back-1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.35;
            filter: brightness(0.6) saturate(0.8);
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(180deg, rgba(28, 18, 10, 0.75) 0%, rgba(28, 18, 10, 0.9) 60%, rgba(28, 18, 10, 0.95) 100%);
        }
        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201, 169, 110, 0.15);
            border: 1px solid var(--gold-light);
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: var(--radius-pill);
            width: fit-content;
            letter-spacing: 0.04em;
        }
        .hero-label i {
            font-size: 0.9rem;
        }
        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-light);
            line-height: 1.25;
            letter-spacing: 0.02em;
            margin: 0;
        }
        .hero h1 .highlight {
            color: var(--gold);
            position: relative;
        }
        .hero-desc {
            font-size: 1.05rem;
            color: var(--text-muted);
            line-height: 1.9;
            max-width: 520px;
        }
        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            align-items: center;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-green);
            color: var(--text-dark);
            font-weight: 700;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
            letter-spacing: 0.03em;
        }
        .btn-primary:hover {
            background: var(--accent-green-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--text-dark);
        }
        .btn-primary:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.35);
        }
        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--accent-green);
            font-weight: 600;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            font-size: 1rem;
            border: 2px solid var(--accent-green);
            transition: all var(--transition-fast);
            letter-spacing: 0.03em;
        }
        .btn-outline:hover {
            background: rgba(109, 140, 63, 0.1);
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .btn-outline:active {
            transform: translateY(0);
        }
        .hero-stats-mini {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 8px;
        }
        .hero-stat-mini {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .hero-stat-mini strong {
            color: var(--accent-green);
            font-size: 1.1rem;
            font-family: var(--font-mono);
        }
        .hero-visual {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }
        .hero-guide-card {
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            width: 100%;
            max-width: 380px;
            position: relative;
            overflow: hidden;
        }
        .hero-guide-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-green), var(--gold));
        }
        .hero-guide-card .guide-cover {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            margin-bottom: 16px;
            border: 1px solid var(--border-subtle);
        }
        .hero-guide-card h3 {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 6px;
        }
        .hero-guide-card .guide-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 14px;
        }
        .hero-guide-card .btn-primary {
            width: 100%;
            justify-content: center;
            padding: 12px 20px;
            font-size: 0.9rem;
        }

        /* Section Common */
        section {
            padding: 70px 0;
            position: relative;
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header h2 {
            font-size: 1.75rem;
            color: var(--text-light);
            margin-bottom: 12px;
            letter-spacing: 0.03em;
        }
        .section-header p {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.9;
        }
        .section-divider {
            width: 50px;
            height: 3px;
            background: var(--accent-green);
            margin: 16px auto 0;
            border-radius: 2px;
        }

        /* Section 2: 指标看板 */
        .stats-dashboard {
            background: rgba(28, 18, 10, 0.5);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
            padding: 36px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .stat-card {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--gold-light);
            border-radius: var(--radius-md);
            padding: 24px;
            text-align: center;
            transition: all var(--transition-fast);
            position: relative;
            overflow: hidden;
        }
        .stat-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-green);
            opacity: 0;
            transition: opacity var(--transition-fast);
        }
        .stat-card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .stat-card:hover::after {
            opacity: 1;
        }
        .stat-number {
            font-family: var(--font-mono);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-green);
            line-height: 1;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }
        .stat-unit {
            font-size: 0.875rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 0.04em;
        }

        /* Section 3: 服务矩阵 */
        .service-matrix {
            background: transparent;
        }
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            padding: 24px;
            position: relative;
            overflow: hidden;
            transition: all var(--transition-fast);
            border-left: 4px solid var(--accent-green);
        }
        .service-card:nth-child(even) {
            border-left-color: var(--gold);
        }
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-left-color: var(--gold);
        }
        .service-card:nth-child(even):hover {
            border-left-color: var(--accent-green);
        }
        .service-card .card-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-sm);
            background: rgba(109, 140, 63, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--accent-green);
            margin-bottom: 14px;
        }
        .service-card h3 {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 6px;
            font-weight: 700;
        }
        .service-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .service-card .status-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            background: rgba(109, 140, 63, 0.2);
            color: var(--accent-green);
            letter-spacing: 0.04em;
        }
        .service-card .status-tag.hot {
            background: rgba(201, 169, 110, 0.2);
            color: var(--gold);
        }

        /* Section 4: 竖屏种草 */
        .spotlight-scroll {
            background: rgba(28, 18, 10, 0.4);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .spotlight-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .spotlight-card {
            background: var(--bg-card-light);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .spotlight-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: var(--gold);
        }
        .spotlight-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid var(--border-subtle);
        }
        .spotlight-card .spotlight-info {
            padding: 16px;
        }
        .spotlight-card h3 {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 4px;
        }
        .spotlight-card .spotlight-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Section 5: 爆款清单 */
        .hot-list {
            background: transparent;
        }
        .hot-list-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .hot-item {
            display: flex;
            align-items: center;
            gap: 16px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            transition: all var(--transition-fast);
            cursor: pointer;
        }
        .hot-item:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-md);
            transform: translateX(4px);
        }
        .hot-item .hot-rank {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent-green);
            color: var(--text-dark);
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-family: var(--font-mono);
        }
        .hot-item:nth-child(1) .hot-rank {
            background: var(--gold);
        }
        .hot-item:nth-child(2) .hot-rank {
            background: #B8956A;
        }
        .hot-item .hot-info h3 {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 2px;
        }
        .hot-item .hot-info .hot-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .hot-item .hot-price {
            margin-left: auto;
            font-weight: 700;
            color: var(--gold);
            font-size: 1.05rem;
            white-space: nowrap;
        }

        /* Section 6: 结果对比 */
        .compare-section {
            background: rgba(28, 18, 10, 0.5);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .compare-table-wrap {
            overflow-x: auto;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-gold);
        }
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
            font-size: 0.95rem;
        }
        .compare-table thead th {
            background: var(--bg-dark);
            color: var(--gold);
            font-weight: 700;
            padding: 16px 20px;
            text-align: left;
            border-bottom: 2px solid var(--gold-light);
            letter-spacing: 0.03em;
        }
        .compare-table tbody td {
            padding: 14px 20px;
            border-bottom: 1px solid var(--gold-dim);
            color: var(--text-body);
            vertical-align: middle;
        }
        .compare-table tbody tr:nth-child(odd) {
            background: rgba(232, 220, 200, 0.05);
        }
        .compare-table tbody tr:nth-child(even) {
            background: transparent;
        }
        .compare-table tbody tr:hover {
            background: rgba(109, 140, 63, 0.06);
        }
        .badge-win {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: rgba(201, 169, 110, 0.2);
            color: var(--gold);
            font-weight: 700;
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: var(--radius-pill);
            letter-spacing: 0.04em;
        }
        .badge-win::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
            display: inline-block;
            flex-shrink: 0;
        }
        .text-muted-cell {
            color: var(--text-muted);
        }

        /* Section 7: 评价墙 */
        .reviews-wall {
            background: transparent;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 24px;
            transition: all var(--transition-fast);
            position: relative;
        }
        .review-card::before {
            content: '\201C';
            position: absolute;
            top: 12px;
            right: 20px;
            font-size: 3rem;
            color: rgba(201, 169, 110, 0.2);
            font-family: Georgia, serif;
            line-height: 1;
            pointer-events: none;
        }
        .review-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .review-card .review-stars {
            color: var(--gold);
            font-size: 0.9rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .review-card .review-text {
            font-size: 0.9rem;
            color: var(--text-body);
            line-height: 1.7;
            margin-bottom: 14px;
        }
        .review-card .review-author {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* Section 8: 入口矩阵 */
        .entry-matrix {
            background: rgba(28, 18, 10, 0.4);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .entry-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .entry-card {
            background: var(--bg-card-light);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px 20px;
            text-align: center;
            transition: all var(--transition-fast);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        .entry-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            background: var(--bg-card);
        }
        .entry-card .entry-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(109, 140, 63, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent-green);
            transition: all var(--transition-fast);
        }
        .entry-card:hover .entry-icon {
            background: rgba(109, 140, 63, 0.3);
            color: var(--gold);
        }
        .entry-card h3 {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 700;
        }
        .entry-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* Section 9: 资讯 */
        .news-section {
            background: transparent;
        }
        .news-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 32px;
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .news-item {
            display: flex;
            align-items: baseline;
            gap: 12px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition-fast);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }
        .news-item:hover {
            padding-left: 8px;
            border-bottom-color: var(--gold);
        }
        .news-item .news-date {
            font-size: 0.8rem;
            color: var(--text-muted);
            white-space: nowrap;
            font-family: var(--font-mono);
            flex-shrink: 0;
        }
        .news-item .news-title {
            font-size: 0.95rem;
            color: var(--text-light);
            font-weight: 600;
            transition: color var(--transition-fast);
            line-height: 1.5;
        }
        .news-item:hover .news-title {
            color: var(--accent-green);
        }
        .news-item .news-tag {
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: var(--radius-pill);
            background: rgba(109, 140, 63, 0.2);
            color: var(--accent-green);
            white-space: nowrap;
            flex-shrink: 0;
        }
        .news-sidebar {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 24px;
            height: fit-content;
            position: sticky;
            top: calc(var(--nav-height) + 20px);
        }
        .news-sidebar h3 {
            font-size: 1.05rem;
            color: var(--text-light);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-green);
        }
        .news-sidebar ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .news-sidebar li a {
            display: block;
            font-size: 0.9rem;
            color: var(--text-body);
            padding: 8px 0;
            border-bottom: 1px solid rgba(109, 140, 63, 0.15);
            transition: all var(--transition-fast);
        }
        .news-sidebar li a:hover {
            color: var(--accent-green);
            padding-left: 6px;
        }

        /* Section 10: 安全体系 */
        .safety-section {
            background: rgba(28, 18, 10, 0.5);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .safety-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .safety-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-md);
            padding: 28px 20px;
            text-align: center;
            transition: all var(--transition-fast);
        }
        .safety-card:hover {
            border-color: var(--accent-green);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .safety-card .safety-icon {
            font-size: 2rem;
            color: var(--accent-green);
            margin-bottom: 14px;
        }
        .safety-card h3 {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 6px;
        }
        .safety-card p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* Section 11: FAQ */
        .faq-section {
            background: transparent;
        }
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--border-subtle);
            overflow: hidden;
        }
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 18px 16px;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-light);
            cursor: pointer;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            transition: all var(--transition-fast);
            background: none;
            border: none;
            font-family: var(--font-heading);
        }
        .faq-question:hover {
            color: var(--accent-green);
            background: rgba(109, 140, 63, 0.04);
        }
        .faq-question .faq-icon {
            font-size: 0.8rem;
            color: var(--accent-green);
            transition: transform var(--transition-smooth);
            flex-shrink: 0;
            margin-top: 3px;
            display: inline-block;
        }
        .faq-item.active .faq-question .faq-icon {
            transform: rotate(90deg);
            color: var(--gold);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
            padding: 0 16px 0 36px;
            font-size: 0.9rem;
            color: var(--text-body);
            line-height: 1.8;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 16px 18px 36px;
        }

        /* Section 12: 转化表单 */
        .cta-form-section {
            background: linear-gradient(180deg, rgba(28, 18, 10, 0.6) 0%, rgba(28, 18, 10, 0.9) 100%);
            border-top: 1px solid var(--border-gold);
            padding: 60px 0;
        }
        .cta-form-card {
            max-width: 560px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            box-shadow: var(--shadow-lg);
            text-align: center;
        }
        .cta-form-card h2 {
            font-size: 1.5rem;
            color: var(--text-light);
            margin-bottom: 8px;
        }
        .cta-form-card .cta-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 28px;
        }
        .form-group {
            margin-bottom: 18px;
            text-align: left;
        }
        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 6px;
            letter-spacing: 0.03em;
        }
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            background: rgba(0, 0, 0, 0.35);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            color: var(--text-light);
            font-size: 0.95rem;
            transition: all var(--transition-fast);
        }
        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--accent-green);
            box-shadow: 0 0 0 3px rgba(109, 140, 63, 0.2);
            outline: none;
            background: rgba(0, 0, 0, 0.5);
        }
        .form-group select {
            appearance: none;
            -webkit-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='M6 8L1 3h10z' fill='%23C9A96E'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            cursor: pointer;
        }
        .form-group select option {
            background: var(--bg-dark);
            color: var(--text-light);
        }
        .btn-submit {
            width: 100%;
            padding: 16px 24px;
            background: var(--accent-green);
            color: var(--text-dark);
            font-weight: 700;
            font-size: 1.05rem;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1px solid transparent;
            letter-spacing: 0.04em;
            margin-top: 8px;
        }
        .btn-submit:hover {
            background: var(--accent-green-dark);
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .btn-submit:active {
            transform: translateY(0);
            box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.35);
        }
        .form-disclaimer {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 14px;
            line-height: 1.6;
        }

        /* Footer */
        .site-footer {
            background: var(--bg-dark);
            border-top: 2px solid var(--border-subtle);
            padding: 48px 0 24px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        .footer-col h3 {
            font-size: 1.05rem;
            color: var(--text-light);
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: 0.03em;
        }
        .footer-col p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin: 0;
        }
        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-col ul li a {
            font-size: 0.85rem;
            color: var(--text-muted);
            transition: color var(--transition-fast);
        }
        .footer-col ul li a:hover {
            color: var(--accent-green);
        }
        .footer-bottom {
            border-top: 1px solid rgba(109, 140, 63, 0.2);
            padding-top: 20px;
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .footer-bottom a {
            color: var(--text-muted);
        }
        .footer-bottom a:hover {
            color: var(--accent-green);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .hero {
                min-height: auto;
                padding-top: calc(var(--nav-height) + 32px);
                padding-bottom: 40px;
            }
            .hero-visual {
                order: -1;
            }
            .hero-guide-card {
                max-width: 100%;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .spotlight-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .hot-list-grid {
                grid-template-columns: 1fr 1fr;
            }
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .entry-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-layout {
                grid-template-columns: 1fr;
            }
            .news-sidebar {
                position: static;
            }
            .safety-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .nav-cta.desktop-only {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .hero h1 {
                font-size: 1.75rem;
            }
            .hero-desc {
                font-size: 0.95rem;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .hero-actions .btn-primary,
            .hero-actions .btn-outline {
                width: 100%;
                justify-content: center;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .stat-number {
                font-size: 1.8rem;
            }
            .service-grid {
                grid-template-columns: 1fr;
            }
            .spotlight-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hot-list-grid {
                grid-template-columns: 1fr;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .entry-grid {
                grid-template-columns: 1fr 1fr;
            }
            .safety-grid {
                grid-template-columns: 1fr 1fr;
            }
            section {
                padding: 40px 0;
            }
            .section-header {
                margin-bottom: 28px;
            }
            .cta-form-card {
                padding: 28px 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .hero-stats-mini {
                gap: 14px;
            }
            .compare-table-wrap {
                border-radius: var(--radius-sm);
            }
            .compare-table {
                font-size: 0.8rem;
            }
            .compare-table thead th,
            .compare-table tbody td {
                padding: 10px 12px;
            }
        }

        @media (max-width: 520px) {
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .stat-card {
                padding: 16px 12px;
            }
            .stat-number {
                font-size: 1.5rem;
            }
            .spotlight-grid {
                grid-template-columns: 1fr;
            }
            .entry-grid {
                grid-template-columns: 1fr;
            }
            .safety-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.5rem;
            }
            .hero-guide-card {
                padding: 20px 16px;
            }
            .hero-guide-card .guide-cover {
                height: 140px;
            }
            h1 {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 14px;
            }
            .nav-logo {
                font-size: 1.1rem;
            }
        }
