/* roulang page: index */
/* ===== 设计变量 ===== */
        :root {
            --primary: #c39a4e;
            --primary-dark: #a67c34;
            --primary-light: #e8d5b5;
            --accent: #d9663b;
            --accent-dark: #b84f2c;
            --dark: #1f1b16;
            --dark-soft: #2e2820;
            --text: #2d2822;
            --text-muted: #6f675e;
            --text-light: #9a9187;
            --bg: #faf7f2;
            --bg-warm: #f5efe6;
            --surface: #ffffff;
            --surface-warm: #fdfbf7;
            --border: #e8e0d5;
            --border-strong: #d5c9ba;
            --radius-sm: 8px;
            --radius: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --shadow-sm: 0 2px 8px rgba(31,27,22,0.05);
            --shadow: 0 6px 24px rgba(31,27,22,0.08);
            --shadow-lg: 0 12px 40px rgba(31,27,22,0.12);
            --shadow-primary: 0 8px 28px rgba(195,154,78,0.28);
            --transition: 0.28s cubic-bezier(0.25,0.46,0.45,0.94);
            --font-base: -apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Hiragino Sans GB','Microsoft YaHei',sans-serif;
            --font-serif: 'Georgia','Noto Serif SC','Songti SC',serif;
            --container-max: 1200px;
            --section-pad: 76px;
        }

        /* ===== 基础 Reset ===== */
        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
        body {
            font-family: var(--font-base);
            color: var(--text);
            background: var(--bg);
            line-height: 1.75;
            margin: 0;
            padding: 0;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        img { max-width: 100%; height: auto; display: block; }
        a { color: var(--primary-dark); text-decoration: none; transition: color var(--transition); }
        a:hover { color: var(--accent); }
        button, input, textarea, select { font-family: inherit; font-size: inherit; }
        h1, h2, h3, h4, h5, h6 {
            margin-top: 0;
            font-weight: 700;
            line-height: 1.3;
            color: var(--dark);
        }
        ul, ol { padding-left: 1.2em; }
        section { scroll-margin-top: 80px; }

        /* ===== 容器 ===== */
        .container-custom {
            max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        @media (max-width: 768px) {
            .container-custom { padding-left: 16px; padding-right: 16px; }
        }

        /* ===== 页头 / 杂志刊头导航 ===== */
        .site-header {
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-sm);
        }
        .masthead {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0 10px;
            gap: 20px;
        }
        .masthead-logo {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            letter-spacing: 0.02em;
            white-space: nowrap;
            line-height: 1.2;
        }
        .masthead-logo a {
            color: var(--dark);
            transition: color var(--transition);
        }
        .masthead-logo a:hover { color: var(--primary-dark); }
        .masthead-logo .logo-accent {
            color: var(--primary-dark);
            font-style: italic;
        }
        .masthead-divider {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, var(--border-strong), transparent);
            margin: 0 8px;
        }
        .masthead-search {
            display: flex;
            align-items: center;
            background: var(--bg-warm);
            border: 1px solid var(--border);
            border-radius: 40px;
            padding: 6px 16px;
            gap: 8px;
            min-width: 240px;
            transition: border-color var(--transition), box-shadow var(--transition);
        }
        .masthead-search:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(195,154,78,0.15);
        }
        .masthead-search i { color: var(--text-light); font-size: 0.9rem; }
        .masthead-search input {
            border: none;
            background: transparent;
            outline: none;
            color: var(--text);
            font-size: 0.9rem;
            width: 100%;
        }
        .masthead-search input::placeholder { color: var(--text-light); }
        .nav-row {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 0 14px;
            gap: 4px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        .nav-row::-webkit-scrollbar { display: none; }
        .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-muted);
            border-radius: 30px;
            white-space: nowrap;
            transition: all var(--transition);
            position: relative;
        }
        .nav-link:hover {
            color: var(--primary-dark);
            background: rgba(195,154,78,0.08);
        }
        .nav-link.active {
            color: var(--surface);
            background: var(--dark);
            font-weight: 600;
        }
        .nav-link.active:hover { color: var(--surface); background: var(--dark-soft); }
        .nav-toggle-mobile {
            display: none;
            background: none;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 8px 12px;
            color: var(--text);
            cursor: pointer;
            font-size: 1.1rem;
            transition: all var(--transition);
        }
        .nav-toggle-mobile:hover { background: var(--bg-warm); border-color: var(--border-strong); }
        .nav-mobile-collapse { display: none; }
        @media (max-width: 768px) {
            .masthead { flex-wrap: wrap; padding: 14px 0 8px; }
            .masthead-logo { font-size: 1.35rem; }
            .masthead-divider { display: none; }
            .masthead-search { min-width: auto; flex: 1; padding: 5px 12px; }
            .nav-toggle-mobile { display: inline-flex; align-items: center; gap: 6px; }
            .nav-row { display: none; padding: 0; flex-direction: column; align-items: stretch; gap: 4px; padding-bottom: 12px; }
            .nav-row.open { display: flex; }
            .nav-link { border-radius: 8px; padding: 10px 14px; }
        }
        @media (max-width: 520px) {
            .masthead-logo { font-size: 1.15rem; letter-spacing: 0; }
            .masthead-search { min-width: 0; }
        }

        /* ===== Hero Bento 首屏 ===== */
        .hero-bento {
            padding: var(--section-pad) 0 40px;
        }
        .bento-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            grid-template-rows: auto auto auto;
            gap: 18px;
        }
        .bento-main {
            grid-row: span 3;
            background: linear-gradient(135deg, rgba(31,27,22,0.82) 0%, rgba(31,27,22,0.62) 55%, rgba(195,154,78,0.35) 100%),
                        url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            border-radius: var(--radius-lg);
            padding: 48px 42px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 420px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .bento-main::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, rgba(31,27,22,0.55), transparent);
            pointer-events: none;
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        }
        .bento-main-content { position: relative; z-index: 2; }
        .bento-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255,255,255,0.18);
            backdrop-filter: blur(8px);
            color: #fff;
            font-size: 0.82rem;
            padding: 6px 14px;
            border-radius: 30px;
            margin-bottom: 18px;
            font-weight: 500;
            letter-spacing: 0.04em;
        }
        .bento-main h1 {
            color: #fff;
            font-size: 2.3rem;
            margin-bottom: 18px;
            font-weight: 700;
            letter-spacing: 0.01em;
            text-shadow: 0 2px 12px rgba(0,0,0,0.35);
            line-height: 1.25;
        }
        .bento-main .hero-desc {
            color: rgba(255,255,255,0.88);
            max-width: 540px;
            font-size: 0.98rem;
            line-height: 1.85;
            margin-bottom: 26px;
        }
        .bento-main-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .bento-panel {
            border-radius: var(--radius-lg);
            padding: 28px 26px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: var(--shadow);
            transition: transform var(--transition), box-shadow var(--transition);
            position: relative;
            overflow: hidden;
        }
        .bento-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
        .bento-panel-warm {
            background: var(--surface-warm);
            border: 1px solid var(--border);
        }
        .bento-panel-dark {
            background: var(--dark);
            color: #fff;
            border: none;
        }
        .bento-panel-accent {
            background: linear-gradient(135deg, #e8d5b5 0%, #c39a4e 100%);
            border: none;
        }
        .bento-panel-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 14px;
            background: rgba(195,154,78,0.15);
            color: var(--primary-dark);
        }
        .bento-panel-dark .bento-panel-icon {
            background: rgba(255,255,255,0.12);
            color: var(--primary-light);
        }
        .bento-panel-accent .bento-panel-icon {
            background: rgba(255,255,255,0.35);
            color: var(--dark);
        }
        .bento-panel h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .bento-panel-dark h3 { color: #fff; }
        .bento-panel p {
            font-size: 0.86rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.65;
        }
        .bento-panel-dark p { color: rgba(255,255,255,0.72); }
        .bento-panel-accent p { color: rgba(31,27,22,0.75); }
        .bento-cta-strip {
            grid-column: 1 / -1;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            box-shadow: var(--shadow-sm);
        }
        .bento-cta-strip .strip-text {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .bento-cta-strip .strip-text strong {
            color: var(--dark);
            font-weight: 700;
        }
        .bento-cta-strip .strip-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        @media (max-width: 1024px) {
            .bento-grid { grid-template-columns: 1fr; }
            .bento-main { grid-row: auto; min-height: 360px; padding: 36px 30px; }
            .bento-main h1 { font-size: 1.8rem; }
            .bento-cta-strip { grid-column: auto; }
        }
        @media (max-width: 520px) {
            .bento-main { min-height: 300px; padding: 26px 20px; border-radius: var(--radius); }
            .bento-main h1 { font-size: 1.4rem; }
            .bento-main .hero-desc { font-size: 0.88rem; }
            .bento-panel { padding: 22px 18px; }
            .bento-cta-strip { padding: 16px 18px; border-radius: var(--radius); }
        }

        /* ===== 按钮 ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 30px;
            font-size: 0.92rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
            line-height: 1.4;
            letter-spacing: 0.02em;
        }
        .btn:focus { outline: 3px solid rgba(195,154,78,0.35); outline-offset: 2px; }
        .btn:active { transform: scale(0.97); }
        .btn-primary {
            background: var(--primary-dark);
            color: #fff;
            box-shadow: var(--shadow-primary);
        }
        .btn-primary:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(195,154,78,0.4);
        }
        .btn-dark {
            background: var(--dark);
            color: #fff;
        }
        .btn-dark:hover { background: var(--dark-soft); color: #fff; transform: translateY(-2px); }
        .btn-outline {
            background: transparent;
            color: var(--dark);
            border: 1.5px solid var(--border-strong);
        }
        .btn-outline:hover {
            background: var(--bg-warm);
            border-color: var(--primary);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }
        .btn-light {
            background: rgba(255,255,255,0.16);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(6px);
        }
        .btn-light:hover {
            background: rgba(255,255,255,0.28);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-accent {
            background: var(--accent);
            color: #fff;
        }
        .btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
        .btn-sm { padding: 9px 18px; font-size: 0.85rem; }
        .btn-lg { padding: 15px 32px; font-size: 1rem; }
        .btn-block { width: 100%; justify-content: center; }

        /* ===== 板块通用 ===== */
        .section {
            padding: var(--section-pad) 0;
        }
        .section-alt {
            background: var(--bg-warm);
        }
        .section-dark {
            background: var(--dark);
        }
        .section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 36px;
            flex-wrap: wrap;
        }
        .section-header-left h2 {
            font-size: 1.75rem;
            margin-bottom: 10px;
            letter-spacing: 0.01em;
        }
        .section-header-left p {
            color: var(--text-muted);
            font-size: 0.95rem;
            max-width: 620px;
            margin: 0;
            line-height: 1.8;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--primary-dark);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 10px;
        }
        .section-tag::before {
            content: '';
            width: 24px;
            height: 2px;
            background: var(--primary);
            display: inline-block;
        }
        .section-dark .section-header-left h2 { color: #fff; }
        .section-dark .section-header-left p { color: rgba(255,255,255,0.65); }
        .section-dark .section-tag { color: var(--primary-light); }
        @media (max-width: 768px) {
            .section { padding: 50px 0; }
            .section-header { flex-direction: column; align-items: flex-start; }
            .section-header-left h2 { font-size: 1.4rem; }
        }

        /* ===== 数据指标看板 ===== */
        .metrics-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .metric-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 26px 22px;
            text-align: center;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .metric-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: var(--primary-light);
        }
        .metric-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1.2;
            margin-bottom: 6px;
            font-family: var(--font-serif);
        }
        .metric-label {
            font-size: 0.88rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .metric-sub {
            font-size: 0.78rem;
            color: var(--text-light);
            margin-top: 4px;
        }
        @media (max-width: 768px) {
            .metrics-strip { grid-template-columns: repeat(2, 1fr); }
            .metric-number { font-size: 1.6rem; }
        }
        @media (max-width: 420px) {
            .metrics-strip { grid-template-columns: 1fr 1fr; gap: 10px; }
            .metric-card { padding: 18px 14px; }
        }

        /* ===== 热门汤泉精选（横滑卡片轨） ===== */
        .scroll-track {
            display: flex;
            gap: 18px;
            overflow-x: auto;
            padding: 8px 4px 20px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--border-strong) transparent;
        }
        .scroll-track::-webkit-scrollbar { height: 6px; }
        .scroll-track::-webkit-scrollbar-track { background: transparent; }
        .scroll-track::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 10px; }
        .scroll-card {
            flex: 0 0 300px;
            scroll-snap-align: start;
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
        }
        .scroll-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }
        .scroll-card-img {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        .scroll-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .scroll-card:hover .scroll-card-img img { transform: scale(1.06); }
        .scroll-card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.04em;
        }
        .scroll-card-body {
            padding: 18px 18px 20px;
        }
        .scroll-card-body h4 {
            font-size: 1rem;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .scroll-card-body p {
            font-size: 0.84rem;
            color: var(--text-muted);
            margin-bottom: 14px;
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .scroll-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .scroll-card-price {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary-dark);
        }
        .scroll-card-price span {
            font-size: 0.78rem;
            color: var(--text-light);
            font-weight: 400;
        }
        @media (max-width: 520px) {
            .scroll-card { flex: 0 0 260px; }
            .scroll-card-img { height: 150px; }
        }

        /* ===== 预约热度提示（库存提示） ===== */
        .stock-strip {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            box-shadow: var(--shadow-sm);
        }
        .stock-info {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }
        .stock-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        .stock-dot.hot { background: var(--accent); }
        .stock-dot.busy { background: #e8a13c; }
        .stock-dot.available { background: #4c9a6a; }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.45; }
        }
        .stock-text {
            font-size: 0.95rem;
            color: var(--text-muted);
        }
        .stock-text strong { color: var(--dark); }
        .stock-legend {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            font-size: 0.82rem;
            color: var(--text-muted);
        }
        .stock-legend span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .stock-legend .legend-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }
        .leg-hot { background: var(--accent); }
        .leg-busy { background: #e8a13c; }
        .leg-avail { background: #4c9a6a; }
        @media (max-width: 768px) {
            .stock-strip { padding: 18px 16px; }
        }

        /* ===== 资讯区块 ===== */
        .news-layout {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 28px;
        }
        .news-list {
            background: var(--surface);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 28px;
            box-shadow: var(--shadow-sm);
        }
        .news-list h3 {
            font-size: 1.1rem;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .news-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            transition: all var(--transition);
        }
        .news-item:last-child { border-bottom: none; }
        .news-item:hover { padding-left: 4px; }
        .news-num {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--primary-dark);
            background: rgba(195,154,78,0.12);
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .news-item-content h4 {
            font-size: 0.95rem;
            margin-bottom: 4px;
            font-weight: 600;
        }
        .news-item-content h4 a { color: var(--dark); }
        .news-item-content h4 a:hover { color: var(--primary-dark); }
        .news-item-content p {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }
        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .news-side-card {
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            flex: 1;
        }
        .news-side-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
        .news-side-card img {
            height: 150px;
            width: 100%;
            object-fit: cover;
        }
        .news-side-card-body {
            padding: 16px 18px;
        }
        .news-side-card-body h4 {
            font-size: 0.95rem;
            margin-bottom: 6px;
            font-weight: 600;
        }
        .news-side-card-body p {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .news-layout { grid-template-columns: 1fr; }
            .news-list { padding: 20px 16px; }
            .news-sidebar { flex-direction: column; }
        }

        /* ===== 服务矩阵 ===== */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .service-card {
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }
        .service-card-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .service-card:hover .service-card-img img { transform: scale(1.05); }
        .service-card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(31,27,22,0.3), transparent 50%);
        }
        .service-card-body {
            padding: 22px 22px 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .service-card-body h3 {
            font-size: 1.05rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .service-card-body p {
            font-size: 0.87rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 16px;
            flex: 1;
        }
        .service-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 16px;
        }
        .service-tag {
            font-size: 0.72rem;
            background: var(--bg-warm);
            color: var(--text-muted);
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 500;
            border: 1px solid var(--border);
        }
        @media (max-width: 900px) {
            .service-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .service-grid { grid-template-columns: 1fr; }
            .service-card-img { height: 160px; }
        }

        /* ===== 结果对比 ===== */
        .compare-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .compare-col {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 28px 24px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            position: relative;
        }
        .compare-col:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
        .compare-col.featured {
            border-color: var(--primary);
            box-shadow: var(--shadow-primary);
            background: linear-gradient(180deg, #fdfaf4 0%, #ffffff 100%);
        }
        .compare-col.featured::before {
            content: '热门选择';
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--primary-dark);
            color: #fff;
            font-size: 0.75rem;
            padding: 4px 14px;
            border-radius: 20px;
            font-weight: 600;
            letter-spacing: 0.04em;
        }
        .compare-col h3 {
            font-size: 1.1rem;
            margin-bottom: 14px;
            font-weight: 600;
        }
        .compare-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .compare-col ul li {
            padding: 8px 0;
            font-size: 0.88rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px dashed var(--border);
        }
        .compare-col ul li:last-child { border-bottom: none; }
        .compare-col ul li i {
            color: var(--primary);
            font-size: 0.8rem;
        }
        .compare-col ul li.not i {
            color: var(--text-light);
        }
        @media (max-width: 900px) {
            .compare-grid { grid-template-columns: 1fr; }
        }

        /* ===== CTA 抢购按钮组 ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--dark) 0%, #2e2820 45%, #3d3228 100%);
            border-radius: var(--radius-lg);
            padding: 52px 44px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(195,154,78,0.18), transparent 65%);
        }
        .cta-section-content {
            position: relative;
            z-index: 2;
            flex: 1;
            min-width: 260px;
        }
        .cta-section-content h2 {
            color: #fff;
            font-size: 1.6rem;
            margin-bottom: 12px;
        }
        .cta-section-content p {
            color: rgba(255,255,255,0.72);
            font-size: 0.95rem;
            margin: 0;
            max-width: 480px;
            line-height: 1.75;
        }
        .cta-section-actions {
            position: relative;
            z-index: 2;
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        @media (max-width: 768px) {
            .cta-section { padding: 36px 24px; border-radius: var(--radius); flex-direction: column; align-items: flex-start; }
            .cta-section-content h2 { font-size: 1.3rem; }
        }

        /* ===== 转化表单 ===== */
        .form-card {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 36px 32px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }
        .form-card h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        .form-card > p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 24px;
            line-height: 1.7;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }
        .form-group label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark);
            display: block;
            margin-bottom: 6px;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 0.92rem;
            background: var(--surface-warm);
            color: var(--text);
            transition: all var(--transition);
            outline: none;
            -webkit-appearance: none;
            appearance: none;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(195,154,78,0.12);
            background: #fff;
        }
        .form-group textarea { resize: vertical; min-height: 100px; }
        .form-note {
            font-size: 0.78rem;
            color: var(--text-light);
            margin-top: 12px;
            line-height: 1.6;
        }
        @media (max-width: 600px) {
            .form-card { padding: 24px 18px; }
            .form-row { grid-template-columns: 1fr; }
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 820px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 12px;
            overflow: hidden;
            transition: all var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .faq-item:hover { border-color: var(--primary-light); }
        .faq-question {
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--dark);
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            transition: background var(--transition);
        }
        .faq-question:hover { background: rgba(195,154,78,0.05); }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--bg-warm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--primary-dark);
            transition: transform var(--transition);
        }
        .faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 22px;
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding-bottom: 20px;
        }
        .faq-answer p {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.75;
            margin: 0;
            padding-top: 4px;
            border-top: 1px solid var(--border);
            padding-top: 14px;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--dark);
            color: rgba(255,255,255,0.7);
            padding: 50px 0 0;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 36px;
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-brand .footer-logo {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }
        .footer-brand p {
            font-size: 0.86rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.7;
            margin-bottom: 18px;
        }
        .footer-social {
            display: flex;
            gap: 10px;
        }
        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            transition: all var(--transition);
        }
        .footer-social a:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-3px);
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.04em;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: rgba(255,255,255,0.55);
            font-size: 0.86rem;
            transition: color var(--transition);
        }
        .footer-col ul li a:hover { color: var(--primary-light); }
        .footer-bottom {
            padding: 18px 0;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
            letter-spacing: 0.02em;
        }
        .footer-bottom a {
            color: rgba(255,255,255,0.5);
        }
        .footer-bottom a:hover { color: var(--primary-light); }
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
        }

        /* ===== Foundation 覆盖 ===== */
        .foundation-form-custom input,
        .foundation-form-custom select,
        .foundation-form-custom textarea {
            border: 1.5px solid var(--border) !important;
            border-radius: 10px !important;
            box-shadow: none !important;
            background: var(--surface-warm) !important;
        }
        .foundation-form-custom input:focus,
        .foundation-form-custom select:focus,
        .foundation-form-custom textarea:focus {
            border-color: var(--primary) !important;
            box-shadow: 0 0 0 3px rgba(195,154,78,0.12) !important;
        }
        .foundation-form-custom label {
            font-size: 0.85rem !important;
            font-weight: 600 !important;
            color: var(--dark) !important;
        }

        /* ===== 辅助类 ===== */
        .text-center { text-align: center; }
        .mt-10 { margin-top: 10px; }
        .mt-20 { margin-top: 20px; }
        .mt-30 { margin-top: 30px; }
        .mb-10 { margin-bottom: 10px; }
        .mb-20 { margin-bottom: 20px; }
        .mb-30 { margin-bottom: 30px; }
        .gap-10 { gap: 10px; }
        .flex-wrap { flex-wrap: wrap; }
        .d-flex { display: flex; }
        .align-center { align-items: center; }

        @media (max-width: 1024px) {
            :root { --section-pad: 60px; }
        }
        @media (max-width: 520px) {
            :root { --section-pad: 44px; }
            body { font-size: 15px; }
        }
