/* roulang page: index */
/* ===== 设计变量 ===== */
        :root {
            --brand-deep: #341A0E;
            --brand-brown: #5A3220;
            --brand-gold: #B57A3A;
            --brand-light: #E7C392;
            --tea-green: #6B7F5E;
            --cream: #F6EFE4;
            --ink: #241812;
            --ink-weak: #6B5B4D;
            --white: #FFFFFF;
            --radius-lg: 1.5rem;
            --radius-md: 1rem;
            --radius-sm: 0.75rem;
            --radius-pill: 9999px;
            --shadow-card: 0 16px 40px -18px rgba(52, 26, 14, .28);
            --shadow-hover: 0 24px 48px -16px rgba(52, 26, 14, .35);
            --shadow-glow: 0 0 24px rgba(181, 122, 58, .45);
            --border-card: 1px solid rgba(181, 122, 58, .16);
        }

        /* ===== 基础 reset ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', sans-serif;
            background-color: var(--cream);
            color: var(--ink);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        }

        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }

        ul,
        ol {
            list-style: none;
        }

        /* Tab 数字等宽 */
        .tabular-nums {
            font-variant-numeric: tabular-nums;
        }

        /* ===== 容器 ===== */
        .container-site {
            max-width: 80rem;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        @media (min-width: 768px) {
            .container-site {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }

        /* ===== 通用组件 ===== */
        .section-padding {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        @media (min-width: 768px) {
            .section-padding {
                padding-top: 7rem;
                padding-bottom: 7rem;
            }
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .5rem;
            background: linear-gradient(135deg, var(--brand-gold), var(--brand-brown));
            color: #fff;
            border-radius: var(--radius-pill);
            padding: .875rem 2rem;
            font-weight: 700;
            font-size: 1rem;
            line-height: 1.2;
            box-shadow: 0 8px 24px -8px rgba(181, 122, 58, .5);
            transition: all .25s cubic-bezier(.4, 0, .2, 1);
            border: 2px solid transparent;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 32px -12px rgba(181, 122, 58, .6);
            border-color: rgba(255, 255, 255, .2);
        }

        .btn-primary:active {
            transform: scale(.95);
        }

        .btn-primary:focus-visible {
            outline: 3px solid var(--brand-gold);
            outline-offset: 3px;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .5rem;
            background: var(--white);
            color: var(--brand-brown);
            border-radius: var(--radius-pill);
            padding: .875rem 2rem;
            font-weight: 700;
            font-size: 1rem;
            line-height: 1.2;
            border: 1.5px solid var(--brand-gold);
            transition: all .25s cubic-bezier(.4, 0, .2, 1);
        }

        .btn-secondary:hover {
            background: rgba(181, 122, 58, .12);
            border-color: var(--brand-gold);
            transform: translateY(-2px);
        }

        .btn-secondary:active {
            transform: scale(.95);
        }

        .btn-secondary:focus-visible {
            outline: 3px solid var(--brand-gold);
            outline-offset: 3px;
        }

        /* 文字链接 */
        .link-text {
            color: var(--ink-weak);
            position: relative;
        }

        .link-text:hover {
            color: var(--brand-gold);
        }

        .link-text:hover::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 100%;
            height: 1px;
            background: var(--brand-gold);
        }

        /* 导航链接渐变下划线 */
        .nav-link {
            position: relative;
            padding: .25rem 0;
            color: var(--ink-weak);
            font-weight: 600;
        }

        .nav-link:hover {
            color: var(--brand-gold);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--brand-gold), var(--brand-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .3s ease;
            border-radius: 9999px;
        }

        .nav-link:hover::after {
            transform: scaleX(1);
        }

        /* 焦点可见性 */
        :focus-visible {
            outline: 3px solid var(--brand-gold);
            outline-offset: 2px;
        }

        /* ===== 导航 ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(246, 239, 228, .8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(181, 122, 58, .2);
        }

        .site-header .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            gap: .75rem;
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--brand-deep);
            letter-spacing: -.02em;
        }

        .brand-logo .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--brand-gold), var(--brand-brown));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.25rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(181, 122, 58, .3);
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 1.75rem;
        }

        .desktop-nav .nav-btn {
            font-size: .875rem;
            padding: .5rem 1.25rem;
        }

        .mobile-only {
            display: none;
        }

        /* 移动底部 Tab */
        .mobile-tabbar {
            display: none;
        }

        @media (max-width: 767px) {
            .desktop-nav {
                display: none;
            }

            .site-header .header-inner {
                height: 60px;
            }

            .brand-logo {
                font-size: 1.05rem;
            }

            .brand-logo .logo-icon {
                width: 34px;
                height: 34px;
                font-size: 1rem;
            }

            .mobile-only {
                display: flex;
            }

            .mobile-tabbar {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 50;
                display: flex;
                background: rgba(255, 255, 255, .95);
                backdrop-filter: blur(10px);
                border-top: 1px solid rgba(181, 122, 58, .25);
                padding-bottom: env(safe-area-inset-bottom);
            }

            .mobile-tabbar .tab-item {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: .5rem 0 .4rem;
                gap: 2px;
                font-size: .6875rem;
                font-weight: 600;
                color: var(--ink-weak);
                position: relative;
                min-height: 56px;
                transition: color .2s ease;
            }

            .mobile-tabbar .tab-item svg {
                width: 22px;
                height: 22px;
                stroke: var(--ink-weak);
                transition: stroke .2s ease;
            }

            .mobile-tabbar .tab-item:hover,
            .mobile-tabbar .tab-item:active,
            .mobile-tabbar .tab-item.active {
                color: var(--brand-gold);
            }

            .mobile-tabbar .tab-item:hover svg,
            .mobile-tabbar .tab-item:active svg,
            .mobile-tabbar .tab-item.active svg {
                stroke: var(--brand-gold);
            }

            .mobile-tabbar .tab-item.active::before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 24px;
                height: 3px;
                border-radius: 0 0 4px 4px;
                background: var(--brand-gold);
            }

            body {
                padding-bottom: 56px;
            }
        }

        /* ===== Hero ===== */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 90px;
            padding-bottom: 60px;
            background: var(--brand-deep);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.jpg');
            background-size: cover;
            background-position: center;
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(52, 26, 14, .95), rgba(181, 122, 58, .55), rgba(52, 26, 14, .85));
        }

        .hero-content {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 3rem;
            align-items: center;
            width: 100%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .25);
            backdrop-filter: blur(8px);
            color: var(--brand-light);
            padding: .4rem 1rem;
            border-radius: var(--radius-pill);
            font-size: .8125rem;
            font-weight: 600;
            letter-spacing: .02em;
            margin-bottom: 1.25rem;
        }

        .hero-title {
            font-size: clamp(2rem, 5vw, 3.25rem);
            font-weight: 900;
            line-height: 1.12;
            letter-spacing: -.02em;
            color: var(--white);
            margin-bottom: 1.25rem;
        }

        .hero-title .gradient-text {
            background: linear-gradient(120deg, var(--brand-light), var(--brand-gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, .85);
            max-width: 34rem;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .hero-trust {
            font-size: .875rem;
            color: rgba(255, 255, 255, .6);
            display: flex;
            flex-wrap: wrap;
            gap: .5rem 1.25rem;
            align-items: center;
        }

        .hero-trust span {
            display: inline-flex;
            align-items: center;
            gap: .375rem;
        }

        /* 预约卡 */
        .booking-card {
            position: relative;
            background: rgba(255, 255, 255, .98);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            overflow: hidden;
            animation: float-card 4s ease-in-out infinite;
            width: 100%;
            max-width: 380px;
            margin-left: auto;
        }

        @keyframes float-card {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .booking-card .card-cover {
            height: 160px;
            overflow: hidden;
        }

        .booking-card .card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .booking-card .card-body {
            padding: 1.5rem;
        }

        .booking-card .card-title {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 1rem;
        }

        .time-badges {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem;
            margin-bottom: 1.25rem;
        }

        .time-badge {
            display: inline-flex;
            align-items: center;
            gap: .375rem;
            font-size: .8125rem;
            font-weight: 600;
            padding: .375rem .75rem;
            border-radius: var(--radius-pill);
            background: rgba(107, 127, 94, .12);
            color: var(--tea-green);
            border: 1px solid rgba(107, 127, 94, .2);
        }

        .time-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--tea-green);
        }

        .time-badge.alt {
            background: rgba(181, 122, 58, .12);
            color: var(--brand-gold);
            border-color: rgba(181, 122, 58, .2);
        }

        .time-badge.alt .dot {
            background: var(--brand-gold);
        }

        .booking-card .btn-book {
            display: block;
            width: 100%;
            text-align: center;
            padding: .875rem 1rem;
        }

        .card-footer-note {
            font-size: .75rem;
            color: var(--ink-weak);
            text-align: center;
            margin-top: .875rem;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .25rem;
            color: rgba(255, 255, 255, .6);
            font-size: .75rem;
            transition: color .2s ease;
        }

        .scroll-indicator:hover {
            color: var(--brand-light);
        }

        .scroll-indicator .arrow {
            width: 24px;
            height: 24px;
            border-left: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(-45deg);
            animation: scroll-bounce 2s infinite;
        }

        @keyframes scroll-bounce {
            0%,
            100% {
                transform: rotate(-45deg) translate(0, 0);
            }
            50% {
                transform: rotate(-45deg) translate(6px, 6px);
            }
        }

        /* ===== 痛点板块 ===== */
        .pain-section {
            background: var(--cream);
            border-bottom: 1px solid rgba(181, 122, 58, .12);
        }

        .pain-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: start;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: .375rem;
            background: rgba(181, 122, 58, .12);
            color: var(--brand-gold);
            font-size: .8125rem;
            font-weight: 700;
            padding: .375rem 1rem;
            border-radius: var(--radius-pill);
            margin-bottom: 1rem;
            letter-spacing: .02em;
        }

        .section-title {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -.01em;
            color: var(--ink);
            margin-bottom: 1rem;
        }

        .section-desc {
            font-size: 1rem;
            line-height: 1.75;
            color: var(--ink-weak);
            max-width: 28rem;
        }

        .pain-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }

        .pain-card {
            background: var(--white);
            border-radius: var(--radius-md);
            border: var(--border-card);
            padding: 1.5rem;
            transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
        }

        .pain-card:hover {
            box-shadow: var(--shadow-card);
            transform: translateY(-4px);
            border-color: rgba(181, 122, 58, .35);
        }

        .pain-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(181, 122, 58, .12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--brand-gold);
        }

        .pain-card h3 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: .375rem;
            color: var(--ink);
        }

        .pain-card p {
            font-size: .875rem;
            color: var(--ink-weak);
            line-height: 1.6;
        }

        /* ===== 解决方案 ===== */
        .solution-section {
            background: var(--white);
        }

        .solution-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1.25rem;
            margin-bottom: 1.25rem;
        }

        .solution-main-card {
            background: var(--cream);
            border-radius: var(--radius-lg);
            border: var(--border-card);
            display: grid;
            grid-template-columns: 1fr 1fr;
            overflow: hidden;
            transition: box-shadow .3s ease, border-color .3s ease;
        }

        .solution-main-card:hover {
            box-shadow: var(--shadow-card);
            border-color: rgba(181, 122, 58, .3);
        }

        .solution-main-card .card-img {
            min-height: 100%;
        }

        .solution-main-card .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .solution-main-card .card-content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .core-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(120deg, var(--brand-gold), var(--brand-brown));
            color: #fff;
            font-size: .75rem;
            font-weight: 700;
            padding: .25rem .75rem;
            border-radius: var(--radius-pill);
            width: fit-content;
            margin-bottom: 1rem;
            letter-spacing: .02em;
        }

        .solution-main-card h3 {
            font-size: 1.375rem;
            font-weight: 800;
            margin-bottom: .75rem;
            line-height: 1.3;
        }

        .solution-main-card .desc {
            font-size: .9375rem;
            color: var(--ink-weak);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: .625rem;
            font-size: .875rem;
            color: var(--ink);
            font-weight: 500;
        }

        .feature-list li .check-circle {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(107, 127, 94, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tea-green);
            flex-shrink: 0;
            font-size: .75rem;
        }

        .solution-side-card {
            background: linear-gradient(150deg, rgba(181, 122, 58, .08), rgba(181, 122, 58, .03));
            border-radius: var(--radius-lg);
            border: var(--border-card);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: box-shadow .3s ease, border-color .3s ease;
        }

        .solution-side-card:hover {
            box-shadow: var(--shadow-card);
            border-color: rgba(181, 122, 58, .3);
        }

        .solution-side-card .card-top-img {
            height: 120px;
            overflow: hidden;
        }

        .solution-side-card .card-top-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .solution-side-card .card-body {
            padding: 1.5rem;
            flex: 1;
        }

        .solution-side-card h4 {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: .75rem;
        }

        .env-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: .5rem;
        }

        .env-list li {
            display: flex;
            align-items: center;
            gap: .375rem;
            font-size: .875rem;
            color: var(--ink-weak);
        }

        .env-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand-gold);
            flex-shrink: 0;
        }

        .solution-bottom-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }

        .tag-chip-card,
        .step-card {
            background: var(--white);
            border: var(--border-card);
            border-radius: var(--radius-lg);
            padding: 2rem;
            transition: box-shadow .3s ease, border-color .3s ease;
        }

        .tag-chip-card:hover,
        .step-card:hover {
            box-shadow: var(--shadow-card);
            border-color: rgba(181, 122, 58, .3);
        }

        .chip-group {
            display: flex;
            flex-wrap: wrap;
            gap: .75rem;
            margin-top: 1rem;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            padding: .5rem 1.25rem;
            background: rgba(181, 122, 58, .08);
            color: var(--brand-brown);
            border-radius: var(--radius-pill);
            font-size: .875rem;
            font-weight: 600;
            border: 1px solid rgba(181, 122, 58, .2);
            transition: all .25s ease;
            cursor: default;
        }

        .chip:hover {
            background: rgba(181, 122, 58, .18);
            border-color: var(--brand-gold);
            transform: translateY(-2px);
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 1rem;
        }

        .step-item {
            display: flex;
            gap: 1rem;
            position: relative;
            padding-bottom: 1.5rem;
        }

        .step-item:last-child {
            padding-bottom: 0;
        }

        .step-item:not(:last-child)::before {
            content: '';
            position: absolute;
            top: 2.25rem;
            left: 1.15rem;
            width: 2px;
            height: calc(100% - 2.25rem);
            background: linear-gradient(180deg, var(--brand-gold), rgba(181, 122, 58, .2));
            border-radius: 9999px;
        }

        .step-num {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--brand-gold), var(--brand-brown));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.125rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(181, 122, 58, .35);
        }

        .step-content h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: .25rem;
        }

        .step-content p {
            font-size: .875rem;
            color: var(--ink-weak);
            line-height: 1.5;
        }

        /* ===== 数据成果 ===== */
        .stats-section {
            position: relative;
            background: linear-gradient(120deg, var(--brand-deep), var(--brand-gold));
            overflow: hidden;
            padding-top: 4.5rem;
            padding-bottom: 4.5rem;
        }

        @media (min-width: 768px) {
            .stats-section {
                padding-top: 6rem;
                padding-bottom: 6rem;
            }
        }

        .stats-section .bg-decor {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            opacity: .08;
            pointer-events: none;
        }

        .stats-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 20% 50%, transparent, rgba(52, 26, 14, .6));
            pointer-events: none;
        }

        .stats-header {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-bottom: 3rem;
        }

        .stats-header .section-title {
            color: #fff;
        }

        .stats-header .section-desc {
            color: rgba(255, 255, 255, .7);
            margin-left: auto;
            margin-right: auto;
        }

        .stats-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .stat-badge {
            background: rgba(255, 255, 255, .1);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: var(--radius-lg);
            padding: 2rem 1rem;
            text-align: center;
            transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 48px;
            height: 3px;
            border-radius: 0 0 4px 4px;
            background: linear-gradient(90deg, var(--brand-light), var(--brand-gold));
            opacity: .6;
        }

        .stat-badge:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-glow);
            border-color: rgba(255, 255, 255, .4);
        }

        .stat-number {
            font-size: clamp(2.5rem, 3vw, 3rem);
            font-weight: 900;
            background: linear-gradient(120deg, var(--brand-light), var(--brand-gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            font-variant-numeric: tabular-nums;
            line-height: 1.2;
            margin-bottom: .25rem;
        }

        .stat-label {
            font-size: .875rem;
            color: rgba(255, 255, 255, .75);
            font-weight: 500;
        }

        /* ===== 客户证言 ===== */
        .testimonial-section {
            background: var(--cream);
            border-bottom: 1px solid rgba(181, 122, 58, .12);
        }

        .testimonial-scroll {
            display: flex;
            gap: 1.25rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 1rem;
            scrollbar-width: thin;
            scrollbar-color: var(--brand-gold) transparent;
        }

        .testimonial-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .testimonial-scroll::-webkit-scrollbar-track {
            background: transparent;
        }

        .testimonial-scroll::-webkit-scrollbar-thumb {
            background: var(--brand-gold);
            border-radius: 9999px;
        }

        .testimonial-card {
            min-width: 85%;
            scroll-snap-align: start;
            background: var(--white);
            border: var(--border-card);
            border-radius: var(--radius-lg);
            padding: 2rem;
            position: relative;
            transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
        }

        @media (min-width: 640px) {
            .testimonial-card {
                min-width: 45%;
            }
        }

        @media (min-width: 1024px) {
            .testimonial-card {
                min-width: 31%;
            }
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-card);
            transform: translateY(-6px);
            border-color: rgba(181, 122, 58, .35);
        }

        .quote-mark {
            font-size: 3rem;
            font-weight: 900;
            color: var(--brand-gold);
            font-family: Georgia, serif;
            line-height: 1;
            height: 2rem;
            margin-bottom: .5rem;
        }

        .stars {
            display: flex;
            gap: .1875rem;
            margin-bottom: 1rem;
            color: var(--brand-gold);
        }

        .testimonial-card blockquote {
            font-size: .9375rem;
            line-height: 1.7;
            color: var(--ink);
            margin-bottom: 1.25rem;
            font-style: normal;
        }

        .testimonial-footer {
            display: flex;
            align-items: center;
            gap: .75rem;
            border-top: 1px solid rgba(181, 122, 58, .15);
            padding-top: 1rem;
        }

        .avatar-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-gold), var(--brand-brown));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: .875rem;
            flex-shrink: 0;
        }

        .testimonial-footer .name {
            font-size: .875rem;
            font-weight: 700;
        }

        .testimonial-footer .source {
            font-size: .6875rem;
            background: rgba(181, 122, 58, .1);
            color: var(--brand-gold);
            padding: .125rem .5rem;
            border-radius: var(--radius-pill);
            font-weight: 600;
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--white);
        }

        .faq-list {
            max-width: 48rem;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: var(--white);
            border: var(--border-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: border-color .3s ease, box-shadow .3s ease;
        }

        .faq-item.open {
            border-color: rgba(181, 122, 58, .4);
            box-shadow: var(--shadow-card);
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.25rem;
            min-height: 48px;
            cursor: pointer;
            user-select: none;
            transition: background-color .2s ease;
        }

        .faq-question:hover {
            background: rgba(181, 122, 58, .04);
        }

        .faq-q-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(181, 122, 58, .12);
            color: var(--brand-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: .9375rem;
            flex-shrink: 0;
        }

        .faq-question .question-text {
            flex: 1;
            font-weight: 600;
            font-size: 1rem;
            line-height: 1.4;
            color: var(--ink);
        }

        .faq-toggle {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--brand-gold);
            transition: transform .3s ease;
            flex-shrink: 0;
            font-weight: 400;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .3s cubic-bezier(.4, 0, .2, 1);
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        .faq-answer-inner {
            padding: 0 1.25rem 1.25rem 4.25rem;
            font-size: .9375rem;
            line-height: 1.7;
            color: var(--ink-weak);
        }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--cream);
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        @media (min-width: 768px) {
            .cta-section {
                padding-top: 7rem;
                padding-bottom: 7rem;
            }
        }

        .cta-card {
            background: linear-gradient(135deg, var(--brand-gold), var(--brand-deep));
            border-radius: 2.5rem;
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        @media (min-width: 768px) {
            .cta-card {
                padding: 4rem;
            }
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, .15), transparent 70%);
            pointer-events: none;
        }

        .cta-card::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -20%;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(231, 195, 146, .15), transparent 70%);
            pointer-events: none;
        }

        .cta-card>* {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: clamp(1.75rem, 3.5vw, 2.25rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .cta-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, .8);
            max-width: 36rem;
            margin: 0 auto 2rem;
            line-height: 1.7;
        }

        .cta-btn-large {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .625rem;
            background: #fff;
            color: var(--brand-brown);
            font-size: 1.125rem;
            font-weight: 800;
            padding: 1rem 2.5rem;
            border-radius: var(--radius-pill);
            box-shadow: 0 8px 24px rgba(52, 26, 14, .3);
            transition: all .25s ease;
            margin-bottom: 1.5rem;
            min-height: 56px;
        }

        .cta-btn-large::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: var(--radius-pill);
            background: rgba(255, 255, 255, .2);
            z-index: -1;
            animation: pulse-glow 2s cubic-bezier(.4, 0, .6, 1) infinite;
        }

        @keyframes pulse-glow {
            0%,
            100% {
                opacity: .4;
                transform: scale(1);
            }
            50% {
                opacity: .8;
                transform: scale(1.06);
            }
        }

        .cta-btn-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 40px rgba(52, 26, 14, .4);
        }

        .cta-btn-large:active {
            transform: scale(.95);
        }

        .cta-status-capsules {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: .75rem;
        }

        .status-capsule {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .3);
            padding: .375rem 1rem;
            border-radius: var(--radius-pill);
            font-size: .8125rem;
            color: rgba(255, 255, 255, .85);
            backdrop-filter: blur(4px);
        }

        .status-capsule .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--tea-green);
            box-shadow: 0 0 8px currentColor;
        }

        .status-capsule .status-dot.gold {
            background: var(--brand-light);
        }

        .status-capsule .status-dot.light-gold {
            background: var(--brand-gold);
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--brand-deep);
            color: rgba(255, 255, 255, .8);
            padding-top: 4rem;
            padding-bottom: 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, .6);
            font-size: .9375rem;
            line-height: 1.7;
            margin-top: 1rem;
            max-width: 28rem;
        }

        .footer-heading {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .6);
            font-size: .875rem;
            transition: color .2s ease;
            width: fit-content;
        }

        .footer-links a:hover {
            color: var(--brand-light);
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: .5rem;
            font-size: .875rem;
            color: rgba(255, 255, 255, .6);
            line-height: 1.6;
            margin-bottom: .75rem;
        }

        .footer-contact svg {
            flex-shrink: 0;
            color: var(--brand-gold);
            margin-top: 2px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: .8125rem;
            color: rgba(255, 255, 255, .4);
        }

        /* ===== 装饰分隔 ===== */
        .decor-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: .75rem;
            color: var(--brand-gold);
            font-size: .75rem;
            margin: 2rem auto;
            width: 100%;
        }

        .decor-divider::before,
        .decor-divider::after {
            content: '';
            width: 48px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--brand-gold));
        }

        .decor-divider::after {
            background: linear-gradient(90deg, var(--brand-gold), transparent);
        }

        /* ===== 响应式断点 ===== */
        @media (max-width: 1023px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .booking-card {
                margin-left: 0;
                margin-right: auto;
                max-width: 440px;
            }

            .pain-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .solution-grid {
                grid-template-columns: 1fr;
            }

            .solution-main-card {
                grid-template-columns: 1fr 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 767px) {
            .section-padding {
                padding-top: 4rem;
                padding-bottom: 4rem;
            }

            .hero-section {
                min-height: auto;
                padding-top: 84px;
                padding-bottom: 80px;
            }

            .hero-title {
                font-size: clamp(1.75rem, 7vw, 2.25rem);
            }

            .hero-subtitle {
                font-size: .9375rem;
                line-height: 1.6;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                width: 100%;
            }

            .pain-cards {
                grid-template-columns: 1fr;
            }

            .solution-main-card {
                grid-template-columns: 1fr;
            }

            .solution-main-card .card-img {
                height: 200px;
            }

            .solution-bottom-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                gap: 1rem;
            }

            .stat-badge {
                padding: 1.5rem .5rem;
            }

            .cta-card {
                border-radius: 1.75rem;
                padding: 2rem 1.25rem;
            }

            .cta-status-capsules {
                flex-direction: column;
                align-items: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: .5rem;
            }

            .hero-trust {
                justify-content: center;
            }
        }

        /* ===== 减少动效偏好 ===== */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation: none !important;
                transition: none !important;
                scroll-behavior: auto !important;
            }
        }
