/* roulang page: index */
:root {
            --gold-start: #E6B422;
            --gold-end: #C89B1A;
            --gold-grad: linear-gradient(135deg, #E6B422 0%, #C89B1A 100%);
            --gold-grad-bright: linear-gradient(135deg, #F0C94A 0%, #D4A520 100%);
            --red-accent: #C91A2C;
            --red-dark: #A31520;
            --bg-black: #0A0A0C;
            --bg-dark-1: #111114;
            --bg-dark-2: #1C1C1E;
            --bg-card: rgba(28, 28, 30, 0.85);
            --bg-card-lighter: rgba(42, 42, 45, 0.92);
            --text-white: #F5F5F7;
            --text-body: #B0B0B0;
            --text-muted: #8A8A8E;
            --border-gold: rgba(230, 180, 34, 0.25);
            --border-gold-strong: rgba(230, 180, 34, 0.6);
            --border-card: rgba(255, 255, 255, 0.06);
            --radius-xl: 20px;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-btn: 30px;
            --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.5);
            --shadow-hover: 0 16px 48px rgba(230, 180, 34, 0.15), 0 8px 32px rgba(0, 0, 0, 0.6);
            --transition-fast: 0.2s ease;
            --transition-med: 0.3s ease;
            --transition-slow: 0.5s ease;
            --font-title: 'PingFang SC', 'Microsoft YaHei', '微软雅黑', 'Helvetica Neue', sans-serif;
            --container-max: 1140px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-title);
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-body);
            background-color: var(--bg-black);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: var(--gold-start);
            text-decoration: none;
            transition: color var(--transition-fast);
        }
        a:hover {
            color: var(--gold-end);
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }
        button:focus,
        input:focus,
        select:focus,
        textarea:focus {
            outline: 3px solid rgba(230, 180, 34, 0.4);
            outline-offset: 2px;
        }
        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 24px;
        }
        section {
            margin: 80px 0;
            scroll-margin-top: 80px;
        }

        /* ===== 导航样式 ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(10, 10, 12, 0.92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--border-gold);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
        }
        .brand-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-white);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .brand-logo .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gold-grad);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 1.1rem;
            color: #0A0A0C;
            flex-shrink: 0;
            box-shadow: 0 2px 12px rgba(230, 180, 34, 0.4);
        }
        .brand-logo .logo-text-gold {
            color: var(--gold-start);
        }
        .brand-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .brand-phone {
            font-size: 0.9rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .brand-phone i {
            color: var(--gold-start);
            margin-right: 6px;
        }
        .btn-header-book {
            background: var(--gold-grad);
            color: #0A0A0C;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 8px 20px;
            border-radius: var(--radius-btn);
            border: none;
            letter-spacing: 0.5px;
            white-space: nowrap;
            transition: all var(--transition-med);
            box-shadow: 0 2px 10px rgba(230, 180, 34, 0.35);
        }
        .btn-header-book:hover {
            background: var(--gold-grad-bright);
            box-shadow: 0 6px 20px rgba(230, 180, 34, 0.55);
            transform: translateY(-1px);
            color: #0A0A0C;
        }
        .btn-header-book:active {
            transform: scale(0.96);
        }
        .navbar-toggler-custom {
            background: transparent;
            border: 1px solid var(--border-gold-strong);
            border-radius: 10px;
            padding: 8px 12px;
            color: var(--gold-start);
            font-size: 1.2rem;
            display: none;
            transition: all var(--transition-fast);
        }
        .navbar-toggler-custom:hover {
            background: rgba(230, 180, 34, 0.15);
            border-color: var(--gold-start);
        }
        .channel-row {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 0 14px;
            flex-wrap: wrap;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .channel-tag {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-muted);
            font-size: 0.88rem;
            font-weight: 500;
            padding: 6px 16px;
            border-radius: 20px;
            letter-spacing: 0.3px;
            transition: all var(--transition-med);
            border: 1px solid transparent;
            white-space: nowrap;
        }
        .channel-tag:hover {
            background: rgba(230, 180, 34, 0.18);
            color: var(--gold-start);
            border-color: var(--border-gold);
            transform: translateY(-1px);
        }
        .channel-tag.active {
            background: rgba(230, 180, 34, 0.2);
            color: var(--gold-start);
            border-color: var(--border-gold-strong);
            font-weight: 600;
        }

        /* ===== Offcanvas ===== */
        .offcanvas-custom {
            background: var(--bg-dark-1);
            color: var(--text-body);
            border-left: 1px solid var(--border-gold);
        }
        .offcanvas-custom .offcanvas-header {
            border-bottom: 1px solid var(--border-card);
            padding: 16px 20px;
        }
        .offcanvas-custom .offcanvas-title {
            color: var(--text-white);
            font-weight: 700;
            font-size: 1.1rem;
        }
        .offcanvas-custom .offcanvas-body {
            padding: 20px;
        }
        .offcanvas-custom .channel-tag {
            display: flex;
            width: 100%;
            margin-bottom: 8px;
            padding: 12px 16px;
            font-size: 0.95rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.04);
        }

        /* ===== Hero Bento ===== */
        .hero-section {
            margin: 0;
            padding: 60px 0 40px;
            position: relative;
            overflow: hidden;
            min-height: 85vh;
            display: flex;
            align-items: center;
            background:
                radial-gradient(ellipse at 20% 20%, rgba(230, 180, 34, 0.1) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 60%, rgba(201, 26, 44, 0.06) 0%, transparent 50%),
                var(--bg-black);
        }
        .hero-glow {
            position: absolute;
            top: -20%;
            left: -15%;
            width: 70%;
            height: 70%;
            background: radial-gradient(circle, rgba(230, 180, 34, 0.15) 0%, transparent 65%);
            border-radius: 50%;
            animation: heroGlowMove 8s ease-in-out infinite alternate;
            pointer-events: none;
            z-index: 0;
        }
        .hero-glow-2 {
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 60%;
            height: 60%;
            background: radial-gradient(circle, rgba(201, 26, 44, 0.08) 0%, transparent 60%);
            border-radius: 50%;
            animation: heroGlowMove2 10s ease-in-out infinite alternate;
            pointer-events: none;
            z-index: 0;
        }
        @keyframes heroGlowMove {
            0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
            50% { transform: translate(4%, 3%) scale(1.05); opacity: 0.9; }
            100% { transform: translate(-2%, -2%) scale(0.98); opacity: 0.6; }
        }
        @keyframes heroGlowMove2 {
            0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
            50% { transform: translate(-3%, -4%) scale(1.08); opacity: 0.7; }
            100% { transform: translate(2%, 3%) scale(1); opacity: 0.5; }
        }
        .hero-bento-grid {
            display: grid;
            grid-template-columns: 7fr 5fr;
            grid-template-rows: auto auto;
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        .hero-main-block {
            grid-row: span 2;
            background: rgba(28, 28, 30, 0.75);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-gold);
            padding: 48px 44px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background-image: linear-gradient(135deg, rgba(28, 28, 30, 0.88) 0%, rgba(20, 20, 22, 0.92) 100%), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
        }
        .hero-main-block::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: var(--radius-xl);
            border: 1px solid rgba(230, 180, 34, 0.15);
            pointer-events: none;
        }
        .hero-tag {
            display: inline-block;
            background: rgba(230, 180, 34, 0.15);
            color: var(--gold-start);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 18px;
            border: 1px solid var(--border-gold);
            width: fit-content;
        }
        .hero-title {
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--text-white);
            line-height: 1.3;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }
        .hero-title .highlight-gold {
            color: var(--gold-start);
        }
        .hero-subtitle {
            font-size: 1.05rem;
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 28px;
            max-width: 520px;
        }
        .hero-cta-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            align-items: center;
        }
        .hero-cta-bar {
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid rgba(230, 180, 34, 0.15);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }
        .hero-cta-bar-text {
            font-size: 0.85rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }
        .hero-cta-bar-text i {
            color: var(--gold-start);
            margin-right: 6px;
        }
        .hero-mini-card {
            background: rgba(28, 28, 30, 0.75);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-gold);
            padding: 24px 22px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
            transition: all var(--transition-med);
            position: relative;
            overflow: hidden;
        }
        .hero-mini-card:hover {
            border-color: var(--border-gold-strong);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .hero-mini-card .mini-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .hero-mini-card .mini-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--gold-start);
            line-height: 1.2;
            margin-bottom: 4px;
        }
        .hero-mini-card .mini-desc {
            font-size: 0.85rem;
            color: var(--text-body);
            line-height: 1.5;
        }

        /* ===== 按钮系统 ===== */
        .btn-gold {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--gold-grad);
            color: #0A0A0C;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 13px 32px;
            border-radius: var(--radius-btn);
            border: none;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all var(--transition-med);
            box-shadow: 0 4px 16px rgba(230, 180, 34, 0.35);
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-gold:hover {
            background: var(--gold-grad-bright);
            box-shadow: 0 8px 28px rgba(230, 180, 34, 0.55);
            transform: translateY(-2px);
            color: #0A0A0C;
        }
        .btn-gold:active {
            transform: scale(0.95);
            box-shadow: 0 2px 8px rgba(230, 180, 34, 0.3);
        }
        .btn-gold-lg {
            font-size: 1.05rem;
            padding: 16px 40px;
            border-radius: 36px;
            letter-spacing: 1px;
        }
        .btn-gold-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--gold-start);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 13px 32px;
            border-radius: var(--radius-btn);
            border: 1.5px solid var(--gold-start);
            cursor: pointer;
            transition: all var(--transition-med);
            text-decoration: none;
            white-space: nowrap;
        }
        .btn-gold-outline:hover {
            background: rgba(230, 180, 34, 0.15);
            border-color: var(--gold-end);
            color: var(--gold-end);
            transform: translateY(-2px);
        }
        .btn-gold-outline:active {
            transform: scale(0.95);
        }
        .btn-red {
            background: var(--red-accent);
            color: #fff;
            font-weight: 700;
            padding: 13px 32px;
            border-radius: var(--radius-btn);
            border: none;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all var(--transition-med);
            box-shadow: 0 4px 16px rgba(201, 26, 44, 0.35);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        .btn-red:hover {
            background: #E02A3C;
            box-shadow: 0 8px 24px rgba(201, 26, 44, 0.55);
            transform: translateY(-2px);
            color: #fff;
        }
        .btn-red:active {
            transform: scale(0.95);
        }
        .btn-pulse {
            animation: btnBreathe 2s ease-in-out infinite;
        }
        @keyframes btnBreathe {
            0% { box-shadow: 0 4px 16px rgba(230, 180, 34, 0.35); }
            50% { box-shadow: 0 8px 36px rgba(230, 180, 34, 0.65), 0 0 60px rgba(230, 180, 34, 0.2); }
            100% { box-shadow: 0 4px 16px rgba(230, 180, 34, 0.35); }
        }

        /* ===== 板块标题 ===== */
        .section-header {
            margin-bottom: 36px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--gold-start);
            margin-bottom: 10px;
            border-bottom: 2px solid var(--gold-start);
            padding-bottom: 4px;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-white);
            letter-spacing: 0.5px;
            line-height: 1.35;
            margin-bottom: 14px;
        }
        .section-desc {
            font-size: 1rem;
            color: var(--text-body);
            line-height: 1.8;
            max-width: 680px;
        }

        /* ===== 限时推荐 / 节日战役区 ===== */
        .hot-section {
            background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark-1) 100%);
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-card);
            padding: 40px 0;
            margin: 40px 0 80px;
        }
        .hot-section-inner {
            padding: 20px;
        }
        .hot-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(201, 26, 44, 0.2);
            color: #FF5A6A;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 16px;
            margin-bottom: 10px;
            border: 1px solid rgba(201, 26, 44, 0.35);
        }
        .hot-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-gold);
            padding: 20px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-med);
            text-align: left;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .hot-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-gold-strong);
            box-shadow: var(--shadow-hover);
        }
        .hot-card-img {
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 14px;
            aspect-ratio: 16/10;
            background: var(--bg-dark-2);
            position: relative;
        }
        .hot-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .hot-card:hover .hot-card-img img {
            transform: scale(1.05);
        }
        .hot-card-tag {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(10, 10, 12, 0.8);
            backdrop-filter: blur(6px);
            color: var(--gold-start);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            border: 1px solid var(--border-gold);
        }
        .hot-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
        }
        .hot-card-desc {
            font-size: 0.85rem;
            color: var(--text-body);
            line-height: 1.6;
            margin-bottom: 14px;
            flex-grow: 1;
        }
        .hot-card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            border-top: 1px solid var(--border-card);
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .hot-card-meta .price {
            color: var(--gold-start);
            font-weight: 700;
            font-size: 0.95rem;
        }

        /* ===== 数据指标带 ===== */
        .stats-section {
            background: var(--gold-grad);
            border-radius: var(--radius-xl);
            padding: 48px 36px;
            box-shadow: 0 16px 48px rgba(230, 180, 34, 0.25);
            position: relative;
            overflow: hidden;
        }
        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 60%;
            height: 200%;
            background: rgba(255, 255, 255, 0.08);
            transform: rotate(15deg);
            pointer-events: none;
        }
        .stats-section::after {
            content: '';
            position: absolute;
            bottom: -40%;
            right: -10%;
            width: 50%;
            height: 150%;
            background: rgba(0, 0, 0, 0.08);
            transform: rotate(-10deg);
            border-radius: 50%;
            pointer-events: none;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        .stat-item {
            text-align: center;
            color: #0A0A0C;
            padding: 16px 10px;
            border-radius: var(--radius-md);
            transition: all var(--transition-med);
        }
        .stat-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.04);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #0A0A0C;
            line-height: 1.2;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
        }
        .stat-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: rgba(10, 10, 12, 0.75);
            margin-top: 4px;
            letter-spacing: 0.5px;
        }

        /* ===== 资讯区 ===== */
        .news-section {
            background: var(--bg-dark-1);
            border-radius: var(--radius-xl);
            padding: 40px;
            border: 1px solid var(--border-card);
        }
        .news-layout {
            display: grid;
            grid-template-columns: 7fr 5fr;
            gap: 32px;
        }
        .news-list-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 18px 14px;
            border-bottom: 1px solid var(--border-card);
            transition: all var(--transition-fast);
            border-radius: var(--radius-sm);
            cursor: pointer;
        }
        .news-list-item:hover {
            background: rgba(230, 180, 34, 0.05);
            padding-left: 20px;
        }
        .news-list-item .news-date {
            font-size: 0.75rem;
            color: var(--text-muted);
            white-space: nowrap;
            padding-top: 2px;
            min-width: 60px;
            letter-spacing: 0.5px;
        }
        .news-list-item .news-content h4 {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 4px;
            line-height: 1.5;
            letter-spacing: 0.3px;
        }
        .news-list-item .news-content p {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.5;
        }
        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .news-sidebar-card {
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-gold);
            padding: 20px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-med);
        }
        .news-sidebar-card:hover {
            border-color: var(--border-gold-strong);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .news-sidebar-card img {
            border-radius: var(--radius-sm);
            margin-bottom: 12px;
            aspect-ratio: 16/9;
            object-fit: cover;
            width: 100%;
        }
        .news-sidebar-card .sb-label {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold-start);
            margin-bottom: 6px;
        }
        .news-sidebar-card h5 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 6px;
            line-height: 1.4;
        }
        .news-sidebar-card p {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin: 0;
        }

        /* ===== 客户证言 ===== */
        .testimonial-card {
            background: var(--bg-card-lighter);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-med);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .testimonial-card:hover {
            border-color: var(--border-gold);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }
        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gold-grad);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: #0A0A0C;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(230, 180, 34, 0.35);
        }
        .testimonial-meta .tm-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-white);
            letter-spacing: 0.3px;
        }
        .testimonial-meta .tm-role {
            font-size: 0.78rem;
            color: var(--text-muted);
        }
        .testimonial-stars {
            display: flex;
            gap: 3px;
            margin-bottom: 10px;
            color: var(--gold-start);
            font-size: 0.85rem;
        }
        .testimonial-quote {
            font-style: italic;
            font-size: 0.9rem;
            color: var(--text-body);
            line-height: 1.7;
            flex-grow: 1;
        }

        /* ===== 套餐对比 / 票种对比 ===== */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: stretch;
        }
        .plan-card {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-card);
            padding: 32px 28px;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-med);
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .plan-card:hover {
            border-color: var(--border-gold-strong);
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        .plan-card.featured {
            border: 2px solid var(--gold-start);
            box-shadow: 0 12px 40px rgba(230, 180, 34, 0.2);
            transform: scale(1.03);
        }
        .plan-card.featured:hover {
            transform: scale(1.04);
        }
        .plan-featured-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--gold-grad);
            color: #0A0A0C;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 16px;
            letter-spacing: 0.5px;
        }
        .plan-name {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }
        .plan-price {
            font-size: 2rem;
            font-weight: 800;
            color: var(--gold-start);
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .plan-price span {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
        }
        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
            flex-grow: 1;
        }
        .plan-features li {
            font-size: 0.85rem;
            color: var(--text-body);
            padding: 7px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .plan-features li i {
            color: var(--gold-start);
            font-size: 0.75rem;
            width: 16px;
            text-align: center;
            flex-shrink: 0;
        }

        /* ===== CTA 表单 ===== */
        .cta-section {
            background: linear-gradient(135deg, #0F0F11 0%, #1A1A1E 50%, #0D0D0F 100%);
            border-radius: var(--radius-xl);
            border: 2px solid var(--border-gold-strong);
            padding: 56px 44px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 80%;
            background: radial-gradient(ellipse, rgba(230, 180, 34, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -10%;
            width: 50%;
            height: 70%;
            background: radial-gradient(ellipse, rgba(201, 26, 44, 0.08) 0%, transparent 65%);
            pointer-events: none;
        }
        .cta-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .cta-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .cta-desc {
            font-size: 0.95rem;
            color: var(--text-body);
            line-height: 1.8;
        }
        .cta-form label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 6px;
            letter-spacing: 0.3px;
        }
        .cta-form input,
        .cta-form select {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border-gold);
            border-radius: var(--radius-md);
            padding: 12px 16px;
            color: var(--text-white);
            font-size: 0.9rem;
            transition: all var(--transition-fast);
            width: 100%;
            margin-bottom: 14px;
            -webkit-appearance: none;
            appearance: none;
        }
        .cta-form input:focus,
        .cta-form select:focus {
            border-color: var(--gold-start);
            background: rgba(255, 255, 255, 0.1);
            outline: none;
            box-shadow: 0 0 0 3px rgba(230, 180, 34, 0.2);
        }
        .cta-form input::placeholder {
            color: var(--text-muted);
        }
        .cta-form select option {
            background: var(--bg-dark-1);
            color: var(--text-white);
        }

        /* ===== FAQ ===== */
        .faq-item {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-card);
            padding: 20px 24px;
            margin-bottom: 12px;
            transition: all var(--transition-fast);
        }
        .faq-item:hover {
            border-color: var(--border-gold);
        }
        .faq-question {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 8px;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .faq-question .faq-icon {
            color: var(--gold-start);
            font-size: 1rem;
            flex-shrink: 0;
            width: 22px;
            text-align: center;
        }
        .faq-answer {
            font-size: 0.9rem;
            color: var(--text-body);
            line-height: 1.8;
            padding-left: 32px;
            margin: 0;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--bg-dark-1);
            border-top: 1px solid var(--border-gold);
            padding: 48px 0 28px;
            margin-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 36px;
        }
        .footer-brand .brand-logo {
            font-size: 1.2rem;
            margin-bottom: 12px;
        }
        .footer-brand p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .footer-links h5 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .footer-links a {
            display: block;
            font-size: 0.85rem;
            color: var(--text-muted);
            padding: 5px 0;
            transition: all var(--transition-fast);
            letter-spacing: 0.3px;
        }
        .footer-links a:hover {
            color: var(--gold-start);
            padding-left: 6px;
        }
        .footer-divider {
            border-top: 1px solid var(--border-card);
            padding-top: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-copy {
            font-size: 0.8rem;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }
        .footer-copy a {
            color: var(--text-muted);
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .footer-copy a:hover {
            color: var(--gold-start);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .hero-title { font-size: 2.2rem; }
            .hero-bento-grid { grid-template-columns: 1fr 1fr; }
            .hero-main-block { grid-row: span 1; grid-column: span 2; padding: 36px 30px; }
            .hero-mini-card { padding: 20px 18px; }
            .news-layout { grid-template-columns: 1fr; gap: 24px; }
            .cta-inner { grid-template-columns: 1fr; gap: 24px; }
            .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
            .plan-card.featured { transform: scale(1); }
            .plan-card.featured:hover { transform: translateY(-4px); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
            .stats-section { padding: 32px 24px; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
            .cta-section { padding: 40px 28px; }
            .news-section { padding: 28px 20px; }
        }

        @media (max-width: 768px) {
            .brand-row { padding: 10px 0; }
            .brand-logo { font-size: 1.1rem; }
            .brand-logo .logo-icon { width: 34px; height: 34px; font-size: 0.9rem; margin-right: 8px; }
            .brand-phone { display: none; }
            .channel-row { display: none; }
            .navbar-toggler-custom { display: inline-flex; }
            .hero-section { min-height: auto; padding: 32px 0 24px; }
            .hero-bento-grid { grid-template-columns: 1fr; gap: 14px; }
            .hero-main-block { grid-column: span 1; padding: 28px 20px; }
            .hero-title { font-size: 1.8rem; }
            .hero-subtitle { font-size: 0.9rem; }
            .hero-cta-bar { flex-direction: column; align-items: flex-start; }
            .hero-mini-card { padding: 18px 16px; }
            .hero-mini-card .mini-value { font-size: 1.5rem; }
            .section-title { font-size: 1.5rem; }
            .section-desc { font-size: 0.9rem; }
            section { margin: 48px 0; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .stat-number { font-size: 1.8rem; }
            .stat-label { font-size: 0.78rem; }
            .hot-section { padding: 24px 0; border-radius: var(--radius-lg); }
            .news-section { padding: 20px 14px; border-radius: var(--radius-lg); }
            .news-list-item { padding: 14px 10px; }
            .news-list-item .news-date { min-width: 45px; font-size: 0.68rem; }
            .cta-section { padding: 32px 18px; border-radius: var(--radius-lg); }
            .cta-title { font-size: 1.5rem; }
            .testimonial-card { padding: 22px 18px; }
            .plan-card { padding: 24px 20px; }
            .faq-item { padding: 16px 18px; }
            .faq-answer { padding-left: 0; margin-top: 6px; font-size: 0.85rem; }
            .footer-grid { grid-template-columns: 1fr; gap: 20px; }
            .footer-divider { flex-direction: column; text-align: center; }
            .container-custom { padding: 0 16px; }
            .btn-gold, .btn-gold-outline, .btn-red { padding: 11px 22px; font-size: 0.85rem; }
            .btn-gold-lg { padding: 13px 28px; font-size: 0.95rem; }
        }

        @media (max-width: 520px) {
            .hero-title { font-size: 1.5rem; }
            .hero-maint-block { padding: 22px 16px; }
            .hero-tag { font-size: 0.7rem; padding: 4px 12px; }
            .section-title { font-size: 1.3rem; }
            .stats-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
            .stat-number { font-size: 1.5rem; }
            .stat-label { font-size: 0.72rem; }
            .hot-card { padding: 16px; }
            .hot-card-title { font-size: 0.95rem; }
            .hot-card-desc { font-size: 0.78rem; }
            .news-list-item { flex-direction: column; gap: 4px; }
            .news-list-item .news-date { min-width: auto; }
            .cta-form input, .cta-form select { padding: 10px 14px; font-size: 0.85rem; }
            .plan-name { font-size: 0.95rem; }
            .plan-price { font-size: 1.6rem; }
        }
