/* roulang page: index */
/* ===== 设计变量 ===== */
        :root {
            --color-primary: #8C5A2C;
            --color-primary-dark: #6B3F1B;
            --color-primary-light: #E8DDD0;
            --color-secondary: #C9A96E;
            --color-secondary-light: #F0E6D8;
            --color-accent: #7C9A6D;
            --color-bg: #FAF6F1;
            --color-bg-alt: #F2EBE2;
            --color-bg-deep: #2E2015;
            --color-text: #2D2418;
            --color-text-weak: #7A6E5F;
            --color-border: #DED2C4;
            --color-white: #FFFFFF;
            --color-dark-card: #3D2C1E;
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 28px;
            --shadow-sm: 0 2px 8px rgba(45, 36, 24, 0.06);
            --shadow-md: 0 8px 30px rgba(45, 36, 24, 0.1);
            --shadow-lg: 0 20px 50px rgba(45, 36, 24, 0.14);
            --font-size-xs: 0.75rem;
            --font-size-sm: 0.875rem;
            --font-size-base: 1rem;
            --font-size-md: 1.125rem;
            --font-size-lg: 1.375rem;
            --font-size-xl: 1.75rem;
            --font-size-2xl: 2.25rem;
            --font-size-3xl: 2.75rem;
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2.5rem;
            --space-xl: 4rem;
            --space-2xl: 6rem;
            --container-max: 1200px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ===== Reset / Base ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            font-size: var(--font-size-base);
            line-height: 1.7;
            background-color: var(--color-bg);
            color: var(--color-text);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition);
        }

        button {
            font-family: inherit;
            border: none;
            background: none;
            cursor: pointer;
        }

        input,
        textarea {
            font-family: inherit;
        }

        ul,
        ol {
            list-style: none;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 1.25rem;
        }

        section {
            padding: var(--space-xl) 0;
        }

        /* ===== 按钮 ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            font-size: var(--font-size-base);
            font-weight: 600;
            line-height: 1.4;
            transition: all var(--transition);
            cursor: pointer;
            border: 2px solid transparent;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--color-primary);
            color: var(--color-white);
            box-shadow: 0 4px 15px rgba(140, 90, 44, 0.3);
        }

        .btn-primary:hover {
            background: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(140, 90, 44, 0.4);
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(140, 90, 44, 0.3);
        }

        .btn-outline {
            background: transparent;
            border-color: var(--color-primary);
            color: var(--color-primary);
        }

        .btn-outline:hover {
            background: var(--color-primary);
            color: var(--color-white);
            transform: translateY(-2px);
        }

        .btn-outline:active {
            transform: translateY(0);
        }

        .btn-light {
            background: var(--color-white);
            color: var(--color-primary-dark);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .btn-light:hover {
            background: var(--color-secondary-light);
            transform: translateY(-2px);
        }

        .btn-light:active {
            transform: translateY(0);
        }

        .btn:focus-visible {
            outline: 3px solid var(--color-secondary);
            outline-offset: 2px;
        }

        /* ===== 徽章 / 标签 ===== */
        .badge {
            display: inline-block;
            padding: 0.3rem 0.9rem;
            border-radius: 50px;
            font-size: var(--font-size-xs);
            font-weight: 600;
            letter-spacing: 0.05em;
            background: var(--color-primary-light);
            color: var(--color-primary-dark);
            border: 1px solid rgba(140, 90, 44, 0.15);
        }

        .badge-gold {
            background: linear-gradient(135deg, #E8D5B5, #C9A96E);
            color: #4A3000;
            border: none;
        }

        .badge-green {
            background: rgba(124, 154, 109, 0.15);
            color: #5A7A4D;
            border-color: rgba(124, 154, 109, 0.2);
        }

        /* ===== Header / 导航 ===== */
        .site-header {
            background: rgba(250, 246, 241, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
            gap: 2rem;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            font-size: var(--font-size-lg);
            font-weight: 800;
            color: var(--color-primary-dark);
            letter-spacing: 0.02em;
            line-height: 1.2;
            flex-shrink: 0;
        }

        .navbar-logo i {
            margin-right: 0.5rem;
            font-size: 1.5rem;
            color: var(--color-secondary);
        }

        .navbar-logo span {
            background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar-menu {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .navbar-menu .nav-item {
            position: relative;
        }

        .navbar-menu .nav-link {
            display: block;
            padding: 0.6rem 0.95rem;
            font-size: var(--font-size-sm);
            font-weight: 500;
            color: var(--color-text);
            border-radius: 50px;
            transition: all var(--transition);
            letter-spacing: 0.01em;
        }

        .navbar-menu .nav-link:hover {
            background: var(--color-primary-light);
            color: var(--color-primary-dark);
        }

        .navbar-menu .nav-link.active {
            background: var(--color-primary);
            color: var(--color-white);
            box-shadow: 0 4px 12px rgba(140, 90, 44, 0.25);
        }

        .navbar-cta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
        }

        .navbar-cta .btn {
            padding: 0.55rem 1.4rem;
            font-size: var(--font-size-sm);
        }

        .navbar-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: var(--color-primary-light);
        }

        .navbar-toggle span {
            width: 20px;
            height: 2px;
            background: var(--color-primary-dark);
            border-radius: 4px;
            transition: var(--transition);
        }

        /* ===== Hero ===== */
        .hero {
            background: linear-gradient(135deg, #F4EDE4 0%, #FBF7F2 60%, #EFE6DA 100%);
            border-bottom: 1px solid var(--color-border);
            padding: var(--space-xl) 0 var(--space-lg);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-banner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.25rem;
            position: relative;
            z-index: 1;
        }

        .hero-banner-text {
            max-width: 640px;
        }

        .hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 1.1rem;
            background: rgba(140, 90, 44, 0.1);
            border: 1px solid rgba(140, 90, 44, 0.18);
            border-radius: 50px;
            font-size: var(--font-size-xs);
            font-weight: 600;
            color: var(--color-primary-dark);
            margin-bottom: 1.2rem;
        }

        .hero-banner h1 {
            font-size: clamp(1.7rem, 4vw, 2.5rem);
            font-weight: 800;
            line-height: 1.3;
            color: var(--color-text);
            margin-bottom: 1.1rem;
            letter-spacing: 0.01em;
        }

        .hero-banner h1 .highlight {
            color: var(--color-primary);
            position: relative;
            display: inline-block;
        }

        .hero-banner p {
            font-size: var(--font-size-md);
            color: var(--color-text-weak);
            line-height: 1.8;
            margin-bottom: 1.8rem;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1.2rem;
        }

        .hero-tags .tag {
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: var(--font-size-xs);
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid var(--color-border);
            color: var(--color-text-weak);
            font-weight: 500;
        }

        .hero-feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            margin-bottom: 1.8rem;
        }

        .hero-feature-list li {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: var(--font-size-sm);
            color: var(--color-text);
        }

        .hero-feature-list li i {
            color: var(--color-primary);
        }

        /* ===== 券面网格 / 精选推荐 ===== */
        .voucher-section {
            background: var(--color-bg);
            padding: var(--space-xl) 0;
        }

        .section-head {
            text-align: center;
            max-width: 700px;
            margin: 0 auto var(--space-lg);
        }

        .section-head .section-subtitle {
            display: inline-block;
            font-size: var(--font-size-xs);
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

        .section-head h2 {
            font-size: var(--font-size-2xl);
            font-weight: 800;
            color: var(--color-text);
            margin-bottom: 0.9rem;
        }

        .section-head p {
            color: var(--color-text-weak);
            font-size: var(--font-size-md);
            line-height: 1.7;
        }

        .voucher-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .voucher-card {
            background: var(--color-white);
            border-radius: var(--radius-md);
            padding: 2rem;
            position: relative;
            border: 1px solid var(--color-border);
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .voucher-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .voucher-card .card-ribbon {
            position: absolute;
            top: 0;
            right: 1.8rem;
            background: var(--color-secondary);
            color: #4A3000;
            font-size: var(--font-size-xs);
            font-weight: 600;
            padding: 0.3rem 1rem;
            border-radius: 0 0 8px 8px;
        }

        .voucher-card .card-icon {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--color-primary);
        }

        .voucher-card h3 {
            font-size: var(--font-size-lg);
            font-weight: 700;
            margin-bottom: 0.6rem;
            color: var(--color-text);
        }

        .voucher-card p {
            color: var(--color-text-weak);
            font-size: var(--font-size-sm);
            line-height: 1.7;
            margin-bottom: 1.2rem;
        }

        .voucher-card .card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1rem;
            border-top: 1px dashed var(--color-border);
        }

        .voucher-card .price {
            font-size: var(--font-size-xl);
            font-weight: 800;
            color: var(--color-primary);
        }

        .voucher-card .price small {
            font-size: var(--font-size-xs);
            font-weight: 400;
            color: var(--color-text-weak);
            margin-left: 0.2rem;
        }

        /* ===== 使用规则 / 流程步骤 ===== */
        .rules-section {
            background: var(--color-bg-alt);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .rules-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .rules-content h2 {
            font-size: var(--font-size-2xl);
            font-weight: 800;
            margin-bottom: 1.2rem;
        }

        .rules-content p {
            color: var(--color-text-weak);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .rules-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .rules-list li {
            display: flex;
            gap: 0.8rem;
            padding: 1rem 1.25rem;
            background: var(--color-white);
            border-radius: var(--radius-sm);
            border-left: 4px solid var(--color-secondary);
            box-shadow: var(--shadow-sm);
            font-size: var(--font-size-sm);
            line-height: 1.6;
        }

        .rules-list li i {
            color: var(--color-primary);
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .rules-number-box {
            background: var(--color-bg-deep);
            color: var(--color-white);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            min-height: 420px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .rules-number-box::after {
            content: '🍵';
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 120px;
            opacity: 0.1;
        }

        .rules-number-box h3 {
            font-size: var(--font-size-xl);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .step-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .step-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .step-num {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--color-secondary);
            color: #4A3000;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .step-text {
            font-size: var(--font-size-base);
            line-height: 1.6;
        }

        .step-text strong {
            display: block;
            font-size: var(--font-size-md);
            color: var(--color-white);
            margin-bottom: 0.2rem;
        }

        .step-text span {
            color: rgba(255, 255, 255, 0.75);
            font-size: var(--font-size-sm);
        }

        /* ===== 茶室亮点 / 服务范围 ===== */
        .features-section {
            background: var(--color-white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .feature-card {
            padding: 2rem 1.75rem;
            background: var(--color-bg);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
            text-align: center;
            transition: all var(--transition);
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--color-secondary);
        }

        .feature-card i {
            font-size: 2.5rem;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: var(--font-size-lg);
            margin-bottom: 0.6rem;
        }

        .feature-card p {
            color: var(--color-text-weak);
            font-size: var(--font-size-sm);
            line-height: 1.7;
        }

        /* ===== 资讯区 ===== */
        .news-section {
            background: var(--color-bg);
        }

        .news-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 2.5rem;
            margin-top: 2.5rem;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }

        .news-item {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--color-white);
            border-radius: var(--radius-sm);
            border: 1px solid var(--color-border);
            transition: all var(--transition);
            align-items: center;
        }

        .news-item:hover {
            border-color: var(--color-primary);
            box-shadow: var(--shadow-sm);
            transform: translateX(4px);
        }

        .news-item .news-date {
            font-size: var(--font-size-xs);
            color: var(--color-text-weak);
            white-space: nowrap;
            background: var(--color-bg-alt);
            padding: 0.2rem 0.8rem;
            border-radius: 50px;
        }

        .news-item a {
            font-size: var(--font-size-base);
            font-weight: 600;
            color: var(--color-text);
            line-height: 1.6;
        }

        .news-item a:hover {
            color: var(--color-primary);
        }

        .news-aside {
            background: var(--color-bg-alt);
            border-radius: var(--radius-md);
            padding: 1.8rem;
            border: 1px solid var(--color-border);
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .news-aside h3 {
            font-size: var(--font-size-md);
            color: var(--color-primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--color-secondary);
        }

        .aside-item {
            display: block;
            padding: 0.9rem 0;
            border-bottom: 1px dashed var(--color-border);
            font-size: var(--font-size-sm);
            color: var(--color-text);
            transition: all var(--transition);
        }

        .aside-item:hover {
            color: var(--color-primary);
            padding-left: 6px;
        }

        .aside-item:last-child {
            border-bottom: none;
        }

        /* ===== 数据指标 ===== */
        .stats-section {
            background: var(--color-bg-deep);
            color: var(--color-white);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(201, 169, 110, 0.2) 0%, transparent 60%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat-item .stat-num {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #F0E0C0, var(--color-secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .stat-item .stat-label {
            font-size: var(--font-size-sm);
            color: rgba(255, 255, 255, 0.7);
            margin-top: 0.4rem;
        }

        /* ===== 用户评价 ===== */
        .reviews-section {
            background: var(--color-white);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .review-card {
            background: var(--color-bg);
            border-radius: var(--radius-md);
            padding: 2rem;
            border: 1px solid var(--color-border);
            transition: var(--transition);
            position: relative;
        }

        .review-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .review-card .review-stars {
            color: var(--color-secondary);
            font-size: var(--font-size-sm);
            margin-bottom: 0.8rem;
        }

        .review-card blockquote {
            font-size: var(--font-size-base);
            line-height: 1.8;
            color: var(--color-text);
            margin-bottom: 1rem;
            font-style: normal;
        }

        .review-card .review-user {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: var(--font-size-sm);
            color: var(--color-text-weak);
        }

        .review-card .review-user i {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            font-size: 0.8rem;
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--color-bg-alt);
        }

        .faq-container {
            max-width: 800px;
            margin: 2rem auto 0;
        }

        .faq-item {
            background: var(--color-white);
            border-radius: var(--radius-sm);
            border: 1px solid var(--color-border);
            margin-bottom: 0.8rem;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--color-secondary);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            font-size: var(--font-size-base);
            font-weight: 600;
            color: var(--color-text);
            background: transparent;
            text-align: left;
            transition: var(--transition);
            cursor: pointer;
        }

        .faq-question i {
            color: var(--color-primary);
            transition: transform var(--transition);
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-item.active .faq-question {
            color: var(--color-primary);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-inner {
            padding: 0 1.5rem 1.5rem;
            color: var(--color-text-weak);
            line-height: 1.8;
            font-size: var(--font-size-base);
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-secondary) 120%);
            color: var(--color-white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'%3E%3Cpath d='M30 0v60M0 30h60'/%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: var(--font-size-2xl);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: var(--font-size-md);
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--color-bg-deep);
            color: rgba(255, 255, 255, 0.8);
            padding: 3rem 0 1.5rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            margin-bottom: 2.5rem;
        }

        .footer-brand .footer-logo {
            font-size: var(--font-size-xl);
            font-weight: 800;
            color: var(--color-white);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-brand .footer-logo i {
            color: var(--color-secondary);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            font-size: var(--font-size-sm);
            line-height: 1.7;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer-links h4 {
            color: var(--color-white);
            font-size: var(--font-size-base);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            font-size: var(--font-size-sm);
            transition: all var(--transition);
        }

        .footer-links a:hover {
            color: var(--color-secondary);
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: var(--font-size-xs);
            color: rgba(255, 255, 255, 0.5);
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.65);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .voucher-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .news-layout {
                grid-template-columns: 1fr;
            }

            .news-aside {
                position: static;
            }
        }

        @media (max-width: 768px) {
            :root {
                --space-xl: 3rem;
                --space-2xl: 4rem;
            }

            .navbar-toggle {
                display: flex;
            }

            .navbar-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--color-bg);
                flex-direction: column;
                padding: 1rem 1.25rem;
                border-bottom: 1px solid var(--color-border);
                box-shadow: var(--shadow-md);
                align-items: stretch;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                border-radius: 0 0 var(--radius-md) var(--radius-md);
            }

            .navbar-menu.open {
                max-height: 500px;
            }

            .navbar-menu .nav-link {
                border-radius: var(--radius-sm);
            }

            .navbar-cta .btn:first-child {
                display: none;
            }

            .hero-banner {
                flex-direction: column;
                text-align: center;
            }

            .hero-tags {
                justify-content: center;
            }

            .hero-feature-list {
                justify-content: center;
            }

            .rules-container {
                grid-template-columns: 1fr;
            }

            .rules-number-box {
                min-height: auto;
            }

            .footer-top {
                grid-template-columns: 1fr;
            }

            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }

            .voucher-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .news-item {
                grid-template-columns: 1fr;
                gap: 0.4rem;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 1rem;
            }

            .navbar {
                gap: 0.75rem;
            }

            .navbar-logo {
                font-size: var(--font-size-base);
            }

            .navbar-logo i {
                font-size: 1.2rem;
            }

            .navbar-cta .btn {
                padding: 0.5rem 1rem;
                font-size: var(--font-size-xs);
            }

            .section-head h2 {
                font-size: 1.6rem;
            }

            .rules-number-box {
                padding: 1.8rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-buttons .btn {
                width: 100%;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

/* roulang page: category2 */
:root {
  --primary: #1a3c34;
  --primary-dark: #0e1f1a;
  --primary-light: #2a5c50;
  --accent: #c9a96e;
  --accent-deep: #a88648;
  --accent-light: #e8d5b5;
  --bg: #f7f4ef;
  --bg-white: #ffffff;
  --text: #1f2a26;
  --text-light: #6b7a74;
  --border: #e8e2d9;
  --shadow: 0 10px 40px rgba(18, 38, 32, 0.08);
  --shadow-lg: 0 20px 60px rgba(18, 38, 32, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
input, textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}
textarea {
  resize: vertical;
  min-height: 80px;
}
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: inline-block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--accent);
  color: #1f2a26;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
  box-shadow: 0 8px 24px rgba(169, 134, 72, 0.3);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 31, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
}
.navbar-logo i {
  color: var(--accent);
  font-size: 22px;
}
.navbar-logo:hover {
  color: var(--accent-light);
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: var(--transition);
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.nav-link.active {
  color: #fff;
  background: rgba(201, 169, 110, 0.22);
  font-weight: 600;
}
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.navbar-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-toggle:hover span {
  background: var(--accent);
}
@media (max-width: 1080px) {
  .navbar-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  .navbar-menu.open {
    transform: translateY(0);
  }
  .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
  }
  .navbar-cta {
    display: none;
  }
  .navbar-toggle {
    display: flex;
  }
}

/* Hero */
.hero-business {
  background: linear-gradient(135deg, #0e1f1a 0%, #1a3c34 55%, #2a5c50 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.hero-business::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-business::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.4), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.hero-title span {
  color: var(--accent);
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  font-weight: 400;
}
.hero-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Panel */
.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
.panel-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.panel-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.panel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.panel-row i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 10px;
  color: var(--accent);
  font-size: 15px;
}
.panel-row strong {
  color: #fff;
  margin-left: auto;
  font-weight: 600;
}
.panel-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 12px;
}

/* Metrics */
.metrics {
  background: var(--primary-dark);
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.metric-item {
  text-align: center;
  padding: 20px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}
.metric-item:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.25);
}
.metric-value {
  display: block;
  font-size: 38px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  letter-spacing: 1px;
}
.metric-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Section Head */
.section-head {
  margin-bottom: 48px;
}
.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--primary-dark);
}
.section-head p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 480px;
}

/* Service Matrix */
.matrix {
  background: var(--bg);
}
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.matrix-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.matrix-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.matrix-card.featured {
  background: linear-gradient(145deg, #1a3c34 0%, #0e1f1a 100%);
  color: #fff;
  border-color: transparent;
}
.matrix-card.featured .matrix-tag {
  background: rgba(201, 169, 110, 0.2);
  color: var(--accent-light);
}
.matrix-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}
.matrix-card.featured ul li {
  color: rgba(255, 255, 255, 0.8);
}
.matrix-card.featured ul li::before {
  background: var(--accent);
}
.matrix-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(201, 169, 110, 0.12);
  color: var(--accent-deep);
  font-size: 22px;
  margin-bottom: 20px;
}
.matrix-card.featured .matrix-icon {
  background: rgba(201, 169, 110, 0.2);
  color: var(--accent);
}
.matrix-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-deep);
  background: rgba(201, 169, 110, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.featured-label {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #1f2a26;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}
.matrix-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 14px 0 12px;
}
.matrix-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.matrix-card ul li {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.matrix-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* Comparison */
.compare {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compare .section-head {
  text-align: center;
}
.compare .section-head p {
  margin: 0 auto;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.compare-col {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.compare-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.compare-col.highlight {
  background: var(--primary);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.compare-col.highlight:hover {
  transform: scale(1.02) translateY(-4px);
}
.compare-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.compare-head i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-light);
  font-size: 16px;
}
.compare-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.compare-col.highlight .compare-head i {
  background: rgba(201, 169, 110, 0.2);
  color: var(--accent);
}
.compare-col.highlight .compare-head h3 {
  color: #fff;
}
.compare-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}
.compare-col ul li i {
  margin-top: 4px;
  font-size: 12px;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.compare-col ul li .fa-times {
  color: #b91c1c;
}
.compare-col ul li .fa-check {
  color: #16a34a;
}
.compare-col.highlight ul li {
  color: rgba(255, 255, 255, 0.8);
}
.compare-col.highlight ul li .fa-check {
  color: var(--accent);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.faq-intro h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.faq-intro p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 24px;
}
.faq-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  transition: var(--transition);
}
.faq-tel:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.faq-tel i {
  color: var(--accent-deep);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--accent);
}
.faq-item.open {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--primary);
}
.faq-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  color: var(--accent-deep);
  font-size: 12px;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 22px 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 0;
}

/* Reservation */
.reservation {
  background: linear-gradient(145deg, #0e1f1a 0%, #1a3c34 100%);
  color: #fff;
}
.reservation-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.reservation-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.reservation-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 28px;
}
.reservation-info ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}
.reservation-info ul li i {
  color: var(--accent);
  font-size: 15px;
  width: 22px;
  text-align: center;
}
.reservation-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.reservation-form label {
  color: rgba(255, 255, 255, 0.9);
}
.reservation-form input,
.reservation-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.reservation-form input:focus,
.reservation-form textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.14);
}
.reservation-form textarea {
  color: #fff;
}
.reservation-form .btn-primary {
  margin-top: 4px;
}
.form-tip {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
}
.form-success {
  text-align: center;
  color: var(--accent-light);
  font-size: 14px;
  padding: 12px;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 10px;
  margin-top: 10px;
  display: none;
}

/* Footer */
.site-footer {
  background: #0d1c17;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.footer-logo i {
  color: var(--accent);
  font-size: 20px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-links h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }
  .hero-title {
    font-size: 36px;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .matrix-card.featured {
    order: -1;
  }
  .compare-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .compare-col.highlight {
    transform: scale(1);
  }
  .compare-col.highlight:hover {
    transform: translateY(-4px);
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .reservation-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  .hero-business {
    padding: 64px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 30px;
  }
  .hero-panel {
    padding: 24px;
  }
  .matrix-grid {
    grid-template-columns: 1fr;
  }
  .section-head.split {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .reservation-form {
    padding: 24px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .metric-item {
    padding: 16px;
  }
  .metric-value {
    font-size: 32px;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .panel-row {
    flex-wrap: wrap;
  }
  .panel-row strong {
    width: 100%;
    margin-left: 50px;
  }
}

/* roulang page: category2 */
:root {
            --color-primary: #2d5d4b;
            --color-primary-dark: #1e4033;
            --color-accent: #c9a063;
            --color-accent-dark: #a97e2f;
            --color-bg: #f7f5f0;
            --color-surface: #ffffff;
            --color-text: #2a2f2c;
            --color-text-dark: #1d2521;
            --color-muted: #6b7570;
            --color-border: #e5e0d6;
            --color-soft: #f0ede7;
            --radius: 16px;
            --radius-sm: 10px;
            --radius-lg: 24px;
            --shadow: 0 10px 30px rgba(45, 93, 75, .08);
            --shadow-lg: 0 18px 44px rgba(45, 93, 75, .14);
            --transition: .25s ease;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            background: var(--color-bg);
            color: var(--color-text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul,
        ol {
            list-style: none;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }

        input,
        select,
        textarea {
            font-family: inherit;
        }

        ::selection {
            background: var(--color-primary);
            color: #fff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.4;
            transition: all var(--transition);
            border: 1px solid transparent;
        }

        .btn-primary {
            background: var(--color-primary);
            color: #fff;
            box-shadow: 0 6px 18px rgba(45, 93, 75, .22);
        }

        .btn-primary:hover {
            background: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(45, 93, 75, .3);
        }

        .btn-primary:focus-visible {
            outline: 3px solid var(--color-accent);
            outline-offset: 2px;
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-outline {
            border-color: var(--color-primary);
            color: var(--color-primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: rgba(45, 93, 75, .08);
            border-color: var(--color-primary-dark);
            color: var(--color-primary-dark);
        }

        .btn-outline:focus-visible {
            outline: 3px solid rgba(45, 93, 75, .35);
            outline-offset: 2px;
        }

        .btn-block {
            width: 100%;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, .92);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
            gap: 24px;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--color-primary);
            white-space: nowrap;
        }

        .navbar-logo i {
            font-size: 22px;
            color: var(--color-accent);
        }

        .navbar-menu {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-link {
            position: relative;
            display: inline-block;
            padding: 10px 14px;
            font-size: 15px;
            font-weight: 500;
            color: var(--color-text);
            border-radius: var(--radius-sm);
            transition: color .2s, background .2s;
        }

        .nav-link:hover {
            color: var(--color-primary);
            background: rgba(45, 93, 75, .06);
        }

        .nav-link.active {
            color: var(--color-primary);
            font-weight: 600;
            background: rgba(45, 93, 75, .08);
        }

        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 5px;
            height: 2px;
            background: var(--color-accent);
            border-radius: 2px;
        }

        .navbar-cta {
            display: flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
        }

        .navbar-cta .btn {
            padding: 9px 20px;
            font-size: 14px;
        }

        .navbar-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 42px;
            height: 42px;
            padding: 10px;
            border-radius: 10px;
            background: rgba(45, 93, 75, .08);
            transition: background .2s;
        }

        .navbar-toggle:hover {
            background: rgba(45, 93, 75, .15);
        }

        .navbar-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--color-primary);
            border-radius: 4px;
        }

        .flash-bar {
            background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
            color: #fff;
            padding: 12px 0;
            font-size: 14px;
        }

        .flash-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
        }

        .flash-inner i {
            color: var(--color-accent);
            margin-right: 6px;
        }

        .flash-count {
            font-weight: 500;
        }

        #countdown {
            font-weight: 700;
            letter-spacing: 1px;
            background: rgba(255, 255, 255, .14);
            padding: 2px 10px;
            border-radius: 8px;
            margin-left: 6px;
        }

        .hero {
            position: relative;
            padding: 72px 0 88px;
            background:
                radial-gradient(1100px 420px at 88% -10%, rgba(201, 160, 99, .16) 0%, transparent 60%),
                linear-gradient(180deg, #fbfaf7 0%, var(--color-bg) 100%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.05fr .95fr;
            gap: 48px;
            align-items: center;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(45, 93, 75, .1);
            color: var(--color-primary);
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 999px;
            margin-bottom: 20px;
        }

        .hero-content h1 {
            font-size: 44px;
            line-height: 1.25;
            font-weight: 800;
            color: var(--color-text-dark);
            margin-bottom: 20px;
            letter-spacing: -.5px;
        }

        .hero-content p {
            font-size: 17px;
            color: var(--color-muted);
            max-width: 540px;
            margin-bottom: 30px;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            color: var(--color-muted);
            font-size: 14px;
        }

        .hero-trust i {
            color: var(--color-primary);
            margin-right: 6px;
        }

        .deal-card {
            position: relative;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .deal-card::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -60px;
            width: 160px;
            height: 160px;
            background: rgba(201, 160, 99, .15);
            border-radius: 50%;
        }

        .deal-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--color-accent);
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 999px;
            z-index: 1;
        }

        .deal-card h3 {
            font-size: 24px;
            margin-bottom: 6px;
            color: var(--color-text-dark);
        }

        .deal-room {
            color: var(--color-muted);
            font-size: 14px;
            margin-bottom: 18px;
        }

        .deal-card ul {
            display: grid;
            gap: 10px;
            margin-bottom: 24px;
        }

        .deal-card li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
        }

        .deal-card li i {
            color: var(--color-primary);
            width: 16px;
            text-align: center;
        }

        .deal-price {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 22px;
        }

        .price-original {
            font-size: 15px;
            color: var(--color-muted);
            text-decoration: line-through;
        }

        .price-now {
            font-size: 34px;
            font-weight: 800;
            color: var(--color-primary);
        }

        .metrics {
            background: var(--color-surface);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            padding: 36px 0;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .metric-item {
            position: relative;
            padding-left: 18px;
        }

        .metric-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            bottom: 8px;
            width: 3px;
            border-radius: 4px;
            background: var(--color-accent);
        }

        .metric-num {
            font-size: 36px;
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1.2;
        }

        .metric-label {
            font-size: 14px;
            color: var(--color-muted);
            margin-top: 6px;
        }

        .section-heading {
            margin-bottom: 40px;
        }

        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--color-accent-dark);
            background: rgba(201, 160, 99, .12);
            padding: 6px 14px;
            border-radius: 999px;
            margin-bottom: 12px;
        }

        .section-heading h2 {
            font-size: 34px;
            line-height: 1.3;
            color: var(--color-text-dark);
            margin-bottom: 14px;
        }

        .section-heading p {
            max-width: 640px;
            color: var(--color-muted);
            font-size: 16px;
        }

        .service-section {
            padding: 88px 0;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .service-card {
            position: relative;
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            padding: 28px;
            display: flex;
            flex-direction: column;
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 18px;
        }

        .service-primary-tint .service-icon {
            background: rgba(45, 93, 75, .1);
            color: var(--color-primary);
        }

        .service-gold-tint .service-icon {
            background: rgba(201, 160, 99, .16);
            color: var(--color-accent-dark);
        }

        .service-card h3 {
            font-size: 21px;
            margin-bottom: 10px;
            color: var(--color-text-dark);
        }

        .service-card p {
            font-size: 14px;
            color: var(--color-muted);
            margin-bottom: 16px;
            flex: 1;
        }

        .service-card ul {
            display: grid;
            gap: 8px;
            margin-bottom: 20px;
        }

        .service-card li {
            font-size: 14px;
            color: var(--color-text);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-card li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--color-primary);
            font-size: 12px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--color-primary);
            transition: gap .2s ease;
        }

        .service-link:hover {
            gap: 12px;
        }

        .compare-section {
            padding: 88px 0;
            background: var(--color-soft);
        }

        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .compare-panel {
            border-radius: 20px;
            padding: 36px 32px;
        }

        .compare-other {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
        }

        .compare-fav {
            background: var(--color-primary);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .compare-fav::after {
            content: "";
            position: absolute;
            right: -50px;
            bottom: -50px;
            width: 180px;
            height: 180px;
            background: rgba(255, 255, 255, .08);
            border-radius: 50%;
        }

        .compare-panel h3 {
            font-size: 22px;
            margin-bottom: 20px;
        }

        .compare-fav h3 {
            color: #fff;
        }

        .compare-panel ul {
            display: grid;
            gap: 16px;
        }

        .compare-panel li {
            display: flex;
            gap: 10px;
            font-size: 15px;
            line-height: 1.6;
        }

        .compare-panel li i {
            margin-top: 4px;
        }

        .compare-other li i {
            color: #929d97;
        }

        .compare-fav li i {
            color: #e6c78a;
        }

        .process-section {
            padding: 88px 0;
            background: var(--color-surface);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            counter-reset: step;
        }

        .process-steps li {
            position: relative;
            padding: 28px 20px 20px;
            background: var(--color-bg);
            border-radius: var(--radius);
            border: 1px solid transparent;
            transition: border-color .2s ease, transform .2s ease;
        }

        .process-steps li:hover {
            border-color: var(--color-accent);
            transform: translateY(-4px);
        }

        .process-steps li::before {
            counter-increment: step;
            content: "0" counter(step);
            display: block;
            font-size: 30px;
            font-weight: 800;
            color: var(--color-accent);
            margin-bottom: 14px;
            line-height: 1;
        }

        .process-steps h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--color-text-dark);
        }

        .process-steps p {
            font-size: 14px;
            color: var(--color-muted);
        }

        .faq-section {
            padding: 88px 0;
        }

        .faq-wrap {
            max-width: 880px;
            margin: 0 auto;
        }

        .faq-wrap h2 {
            text-align: center;
            font-size: 34px;
            color: var(--color-text-dark);
            margin-bottom: 12px;
        }

        .faq-wrap .faq-desc {
            text-align: center;
            color: var(--color-muted);
            margin-bottom: 40px;
        }

        .faq-list {
            display: grid;
            gap: 16px;
        }

        .faq-item {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 14px;
            overflow: hidden;
            transition: border-color .2s ease, box-shadow .2s ease;
        }

        .faq-item.open {
            border-color: var(--color-primary);
            box-shadow: var(--shadow);
        }

        .faq-q {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 22px;
            background: transparent;
            font-size: 16px;
            font-weight: 600;
            color: var(--color-text);
            text-align: left;
            transition: color .2s ease;
        }

        .faq-q:hover {
            color: var(--color-primary);
        }

        .faq-q i {
            transition: transform .3s ease;
            color: var(--color-accent);
            font-size: 14px;
        }

        .faq-item.open .faq-q i {
            transform: rotate(180deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease, padding .35s ease;
            padding: 0 22px;
            color: var(--color-muted);
            font-size: 15px;
        }

        .faq-item.open .faq-a {
            max-height: 300px;
            padding: 0 22px 20px;
        }

        .booking-section {
            padding: 88px 0;
            background: linear-gradient(135deg, #1e4033, #2d5d4b);
            color: #fff;
        }

        .booking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .booking-info h2 {
            font-size: 34px;
            line-height: 1.3;
            margin-bottom: 18px;
        }

        .booking-info p {
            color: rgba(255, 255, 255, .8);
            font-size: 16px;
            margin-bottom: 28px;
        }

        .booking-contact {
            display: grid;
            gap: 14px;
        }

        .booking-contact li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: rgba(255, 255, 255, .9);
        }

        .booking-contact i {
            color: var(--color-accent);
            font-size: 16px;
            width: 18px;
            text-align: center;
        }

        .booking-form-card {
            background: var(--color-surface);
            border-radius: 20px;
            padding: 32px;
            color: var(--color-text);
            box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
        }

        .form-row {
            margin-bottom: 16px;
        }

        .form-row input,
        .form-row select,
        .form-row textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--color-border);
            border-radius: 12px;
            background: #faf9f6;
            font-size: 15px;
            color: var(--color-text);
            transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
        }

        .form-row input:focus,
        .form-row select:focus,
        .form-row textarea:focus {
            outline: none;
            border-color: var(--color-primary);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(45, 93, 75, .12);
        }

        .form-row textarea {
            resize: vertical;
            min-height: 80px;
        }

        .form-tip {
            font-size: 13px;
            color: var(--color-muted);
            text-align: center;
            margin-top: 12px;
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 30px 10px;
        }

        .form-success.show {
            display: block;
        }

        .form-success i {
            font-size: 44px;
            color: var(--color-primary);
            margin-bottom: 12px;
        }

        .form-success h3 {
            font-size: 20px;
            color: var(--color-text-dark);
            margin-bottom: 8px;
        }

        .form-success p {
            font-size: 15px;
            color: var(--color-muted);
        }

        .site-footer {
            background: #1c2a25;
            color: rgba(255, 255, 255, .8);
            padding: 64px 0 28px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.4fr 2fr;
            gap: 48px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }

        .footer-brand .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }

        .footer-brand .footer-logo i {
            color: var(--color-accent);
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, .65);
            max-width: 360px;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .footer-links h4 {
            color: #fff;
            font-size: 15px;
            margin-bottom: 14px;
        }

        .footer-links ul {
            display: grid;
            gap: 10px;
        }

        .footer-links a {
            transition: color .2s ease;
        }

        .footer-links a:hover {
            color: var(--color-accent);
        }

        .footer-links li {
            font-size: 14px;
            color: rgba(255, 255, 255, .65);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            padding-top: 20px;
            font-size: 13px;
            color: rgba(255, 255, 255, .45);
        }

        @media (max-width: 1024px) {
            .navbar-menu {
                position: absolute;
                top: 76px;
                left: 0;
                right: 0;
                background: var(--color-surface);
                flex-direction: column;
                align-items: stretch;
                padding: 16px 24px;
                gap: 6px;
                display: none;
                box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
                border-bottom: 1px solid var(--color-border);
            }

            .navbar-menu.open {
                display: flex;
            }

            .nav-link.active::after {
                left: 14px;
                right: auto;
                width: 30px;
            }

            .navbar-cta {
                display: none;
            }

            .navbar-toggle {
                display: flex;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .booking-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-top {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 34px;
            }

            .section-heading h2,
            .faq-wrap h2,
            .booking-info h2 {
                font-size: 28px;
            }

            .compare-grid {
                grid-template-columns: 1fr;
            }

            .flash-inner {
                justify-content: center;
                text-align: center;
            }

            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 18px;
            }

            .hero {
                padding: 48px 0 64px;
            }

            .hero-content h1 {
                font-size: 29px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .deal-card {
                padding: 24px;
            }

            .price-now {
                font-size: 28px;
            }

            .service-grid,
            .metrics-grid,
            .process-steps {
                grid-template-columns: 1fr;
            }

            .metrics-grid {
                gap: 20px;
            }

            .footer-links {
                grid-template-columns: 1fr;
            }

            .booking-form-card {
                padding: 24px;
            }
        }

/* roulang page: category3 */
:root {
        --primary: #1a3c34;
        --primary-light: #2d5a45;
        --accent: #b48c52;
        --accent-light: #d4a96a;
        --bg: #f9f7f4;
        --card-bg: #ffffff;
        --text: #2c2c2c;
        --text-light: #6b7b6e;
        --border: #e8e2d9;
        --radius: 16px;
        --radius-sm: 10px;
        --shadow: 0 4px 20px rgba(26, 60, 52, 0.08);
        --shadow-lg: 0 8px 40px rgba(26, 60, 52, 0.14);
        --transition: all 0.3s ease;
    }
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.7;
        -webkit-font-smoothing: antialiased;
    }
    img {
        max-width: 100%;
        display: block;
    }
    a {
        color: var(--primary);
        text-decoration: none;
        transition: color 0.2s ease;
    }
    a:hover {
        color: var(--accent);
    }
    button,
    input,
    select,
    textarea {
        font-family: inherit;
        font-size: inherit;
    }
    .container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .site-header {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 78px;
        gap: 24px;
    }
    .navbar-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 700;
        color: var(--primary);
        flex-shrink: 0;
    }
    .navbar-logo i {
        color: var(--accent);
        font-size: 24px;
    }
    .navbar-logo span {
        white-space: nowrap;
    }
    .navbar-menu {
        display: flex;
        list-style: none;
        gap: 6px;
        flex-wrap: wrap;
    }
    .navbar-menu .nav-link {
        display: inline-block;
        padding: 8px 14px;
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
        border-radius: 8px;
        transition: var(--transition);
        white-space: nowrap;
    }
    .navbar-menu .nav-link:hover {
        color: var(--primary);
        background: rgba(26, 60, 52, 0.06);
    }
    .navbar-menu .nav-link.active {
        color: var(--primary);
        background: rgba(26, 60, 52, 0.1);
        font-weight: 600;
    }
    .navbar-cta {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: none;
        border-radius: 10px;
        padding: 10px 22px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        text-decoration: none;
        line-height: 1.4;
    }
    .btn:focus-visible {
        outline: 3px solid rgba(180, 140, 82, 0.5);
        outline-offset: 2px;
    }
    .btn-primary {
        background: var(--primary);
        color: #fff;
    }
    .btn-primary:hover {
        background: var(--primary-light);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(26, 60, 52, 0.25);
    }
    .btn-primary:active {
        transform: translateY(0);
    }
    .btn-outline {
        background: transparent;
        border: 1.5px solid var(--border);
        color: var(--text);
    }
    .btn-outline:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(180, 140, 82, 0.06);
    }
    .btn-outline-light {
        background: transparent;
        border: 1.5px solid rgba(255, 255, 255, 0.5);
        color: #fff;
    }
    .btn-outline-light:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        border-color: #fff;
    }
    .btn-lg {
        padding: 14px 32px;
        font-size: 16px;
        border-radius: 12px;
    }
    .navbar-toggle {
        display: none;
        background: none;
        border: none;
        width: 42px;
        height: 42px;
        border-radius: 8px;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 0;
    }
    .navbar-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        transition: var(--transition);
    }
    .navbar-toggle:hover {
        background: rgba(26, 60, 52, 0.06);
    }
    .navbar-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hero */
    .hero {
        position: relative;
        background: linear-gradient(145deg, #142e27 0%, #1a3c34 55%, #22513d 100%);
        color: #fff;
        padding: 80px 0 90px;
        overflow: hidden;
    }
    .hero::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(180, 140, 82, 0.2), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    .hero::after {
        content: "";
        position: absolute;
        bottom: -150px;
        left: -50px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    .hero .container {
        position: relative;
        z-index: 2;
    }
    .hero-top {
        text-align: center;
        margin-bottom: 56px;
    }
    .hero-chip {
        display: inline-block;
        background: rgba(180, 140, 82, 0.18);
        border: 1px solid rgba(180, 140, 82, 0.35);
        color: var(--accent-light);
        padding: 6px 18px;
        border-radius: 40px;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    .hero-top h1 {
        font-size: 44px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 16px;
        color: #fff;
        line-height: 1.3;
    }
    .hero-top p {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.8);
        max-width: 720px;
        margin: 0 auto;
        line-height: 1.8;
    }
    .hero-main {
        display: grid;
        grid-template-columns: 1fr 460px 1fr;
        align-items: center;
        gap: 40px;
        margin-bottom: 56px;
    }
    .hero-stage {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .stage-glow {
        position: absolute;
        width: 360px;
        height: 360px;
        background: radial-gradient(circle, rgba(180, 140, 82, 0.3), transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }
    .product-card {
        position: relative;
        z-index: 1;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 24px;
        padding: 36px 40px;
        text-align: center;
        width: 360px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        transition: var(--transition);
    }
    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
    }
    .product-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--accent), var(--accent-light));
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 30px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    .product-icon {
        width: 90px;
        height: 90px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 38px;
        color: var(--accent-light);
    }
    .product-card h3 {
        font-size: 24px;
        color: #fff;
        margin-bottom: 6px;
        letter-spacing: 1px;
    }
    .product-card p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 13px;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }
    .product-meta {
        display: flex;
        justify-content: center;
        gap: 18px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.9);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 16px;
    }
    .product-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .product-meta i {
        color: var(--accent-light);
    }
    .float-tag {
        position: absolute;
        z-index: 2;
        background: rgba(255, 255, 255, 0.95);
        color: var(--primary);
        font-size: 13px;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        animation: floatTag 3s ease-in-out infinite alternate;
    }
    .float-tag i {
        color: var(--accent);
    }
    .float-tag.tag-1 {
        top: 8%;
        left: 8%;
    }
    .float-tag.tag-2 {
        top: 20%;
        right: 4%;
        animation-delay: 0.8s;
    }
    .float-tag.tag-3 {
        bottom: 12%;
        left: -4%;
        animation-delay: 1.4s;
    }
    .float-tag.tag-4 {
        bottom: 0;
        right: 12%;
        animation-delay: 0.4s;
    }
    @keyframes floatTag {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-12px);
        }
    }
    .hero-side {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }
    .hero-side.right {
        align-items: flex-start;
    }
    .hero-side.left {
        align-items: flex-end;
        text-align: right;
    }
    .value-point {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        max-width: 260px;
    }
    .hero-side.left .value-point {
        flex-direction: row-reverse;
        text-align: right;
    }
    .value-point i {
        color: var(--accent-light);
        font-size: 22px;
        margin-top: 3px;
        flex-shrink: 0;
    }
    .value-point h4 {
        font-size: 16px;
        color: #fff;
        margin-bottom: 2px;
        letter-spacing: 0.5px;
    }
    .value-point p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }
    .hero-actions {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    /* Stats */
    .stats-section {
        padding: 80px 0;
        background: var(--bg);
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .stat-card {
        background: var(--card-bg);
        border-radius: var(--radius);
        padding: 36px 30px;
        text-align: center;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }
    .stat-icon {
        width: 56px;
        height: 56px;
        background: rgba(26, 60, 52, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        font-size: 24px;
        color: var(--primary);
    }
    .stat-number {
        font-size: 40px;
        font-weight: 700;
        color: var(--primary);
        line-height: 1.2;
    }
    .stat-number span {
        font-size: 24px;
        font-weight: 400;
        color: var(--accent);
    }
    .stat-label {
        font-size: 14px;
        color: var(--text-light);
        margin-top: 6px;
        letter-spacing: 0.5px;
    }

    /* Section Header */
    .section-header {
        text-align: center;
        margin-bottom: 56px;
    }
    .section-header .section-tag {
        display: inline-block;
        color: var(--accent);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }
    .section-header h2 {
        font-size: 36px;
        color: var(--text);
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 14px;
        line-height: 1.3;
    }
    .section-header p {
        font-size: 16px;
        color: var(--text-light);
        max-width: 680px;
        margin: 0 auto;
        line-height: 1.7;
    }

    /* Services */
    .services-section {
        padding: 80px 0;
        background: #fff;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .service-card {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 32px 32px 28px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }
    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--accent);
        border-radius: 0 4px 4px 0;
        opacity: 0;
        transition: var(--transition);
    }
    .service-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
        border-color: transparent;
    }
    .service-card:hover::before {
        opacity: 1;
    }
    .service-card-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }
    .service-icon {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #fff;
    }
    .service-time {
        font-size: 12px;
        color: var(--text-light);
        background: rgba(180, 140, 82, 0.1);
        padding: 4px 12px;
        border-radius: 20px;
        font-weight: 500;
    }
    .service-card h3 {
        font-size: 20px;
        color: var(--text);
        margin-bottom: 6px;
    }
    .service-card .service-desc {
        font-size: 14px;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 14px;
    }
    .service-list {
        list-style: none;
        margin: 0 0 14px;
    }
    .service-list li {
        font-size: 13px;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 3px 0;
    }
    .service-list li i {
        color: var(--accent);
        font-size: 12px;
        flex-shrink: 0;
    }
    .service-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
    }
    .service-tags span {
        font-size: 12px;
        background: #fff;
        border: 1px solid var(--border);
        padding: 3px 10px;
        border-radius: 20px;
        color: var(--text-light);
    }

    /* Compare */
    .compare-section {
        padding: 80px 0;
        background: var(--bg);
    }
    .compare-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        align-items: stretch;
    }
    .compare-card {
        border-radius: var(--radius);
        padding: 40px 36px;
        transition: var(--transition);
        border: 1px solid var(--border);
    }
    .compare-before {
        background: #f0ede8;
        border-color: #e8e2d9;
    }
    .compare-after {
        background: linear-gradient(145deg, var(--primary), var(--primary-light));
        border-color: transparent;
        color: #fff;
        box-shadow: 0 12px 36px rgba(26, 60, 52, 0.22);
    }
    .compare-card h4 {
        font-size: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
        font-weight: 700;
    }
    .compare-before h4 {
        color: #777;
    }
    .compare-after h4 {
        color: #fff;
    }
    .compare-card h4 i {
        font-size: 20px;
    }
    .compare-card .compare-list {
        list-style: none;
        margin: 0;
    }
    .compare-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        font-size: 14px;
        color: #777;
        line-height: 1.5;
    }
    .compare-after .compare-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        color: rgba(255, 255, 255, 0.9);
    }
    .compare-list li:last-child {
        border-bottom: none;
    }
    .compare-list li i {
        color: var(--accent);
        margin-top: 3px;
        flex-shrink: 0;
        font-size: 16px;
    }
    .compare-after .compare-list li i {
        color: var(--accent-light);
    }
    .compare-list li strong {
        font-weight: 600;
        color: var(--text);
    }
    .compare-after .compare-list li strong {
        color: #fff;
    }

    /* FAQ */
    .faq-section {
        padding: 80px 0;
        background: #fff;
        border-top: 1px solid var(--border);
    }
    .faq-layout {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 48px;
        align-items: start;
    }
    .faq-side .section-header {
        text-align: left;
        margin-bottom: 24px;
    }
    .faq-side .section-header p {
        margin: 0;
    }
    .faq-side .faq-contact-card {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 24px;
        margin-top: 24px;
    }
    .faq-contact-card h4 {
        font-size: 16px;
        color: var(--text);
        margin-bottom: 12px;
    }
    .faq-contact-card p {
        font-size: 14px;
        color: var(--text-light);
        line-height: 1.7;
    }
    .faq-contact-card a {
        color: var(--accent);
        font-weight: 600;
    }
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .faq-item {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        transition: var(--transition);
    }
    .faq-item:hover {
        border-color: rgba(180, 140, 82, 0.4);
    }
    .faq-item.active {
        border-color: rgba(180, 140, 82, 0.6);
        box-shadow: var(--shadow);
    }
    .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        font-size: 16px;
        font-weight: 600;
        color: var(--text);
        cursor: pointer;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
        gap: 12px;
        transition: var(--transition);
    }
    .faq-question:hover {
        color: var(--primary);
    }
    .faq-question .faq-icon {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(26, 60, 52, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        transition: var(--transition);
    }
    .faq-item.active .faq-icon {
        background: var(--primary);
        color: #fff;
        transform: rotate(45deg);
    }
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0 24px;
        font-size: 14px;
        color: var(--text-light);
        line-height: 1.8;
        border-top: 0 solid transparent;
    }
    .faq-item.active .faq-answer {
        max-height: 300px;
        padding: 0 24px 20px;
        border-top: 1px solid var(--border);
        margin-top: 0;
    }

    /* Booking */
    .booking-section {
        padding: 80px 0;
        background: linear-gradient(145deg, #142e27, #1a3c34 60%, #22513d);
        color: #fff;
    }
    .booking-grid {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 56px;
        align-items: center;
    }
    .booking-info h2 {
        font-size: 34px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    .booking-info p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    .booking-info .feature-list {
        list-style: none;
        margin: 0;
    }
    .booking-info .feature-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        padding: 8px 0;
    }
    .booking-info .feature-list li i {
        color: var(--accent-light);
        font-size: 16px;
        flex-shrink: 0;
    }
    .booking-info .contact-line {
        margin-top: 24px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .booking-info .contact-line a {
        color: var(--accent-light);
        font-size: 18px;
        font-weight: 600;
    }
    .booking-form-wrap {
        background: #fff;
        border-radius: var(--radius);
        padding: 36px;
        color: var(--text);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    .booking-form-wrap h3 {
        font-size: 22px;
        color: var(--text);
        margin-bottom: 6px;
    }
    .booking-form-wrap p {
        font-size: 13px;
        color: var(--text-light);
        margin-bottom: 24px;
    }
    .booking-form .form-group {
        margin-bottom: 16px;
    }
    .booking-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .booking-form label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--text);
        margin-bottom: 6px;
    }
    .booking-form label .req {
        color: #e07a5f;
    }
    .booking-form .form-control {
        width: 100%;
        padding: 12px 14px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        font-size: 14px;
        color: var(--text);
        background: #fafaf8;
        transition: var(--transition);
    }
    .booking-form .form-control:focus {
        outline: none;
        border-color: var(--accent);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(180, 140, 82, 0.15);
    }
    .booking-form .form-control::placeholder {
        color: #aaa;
    }
    .booking-form .form-select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7b6e' d='M1 1l5 5 5-5H1z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
    }
    .booking-form textarea.form-control {
        min-height: 80px;
        resize: vertical;
    }
    .booking-form .btn-submit {
        width: 100%;
        margin-top: 8px;
        padding: 14px;
        font-size: 16px;
    }
    .form-success {
        display: none;
        text-align: center;
        padding: 20px;
    }
    .form-success.show {
        display: block;
    }
    .form-success i {
        font-size: 48px;
        color: var(--accent);
        margin-bottom: 12px;
    }
    .form-success h4 {
        font-size: 18px;
        color: var(--text);
        margin-bottom: 8px;
    }
    .form-success p {
        font-size: 14px;
        color: var(--text-light);
    }

    /* Footer */
    .site-footer {
        background: #14211d;
        color: rgba(255, 255, 255, 0.7);
        padding: 60px 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .footer-top {
        display: grid;
        grid-template-columns: 1.4fr 2fr;
        gap: 48px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .footer-brand .footer-logo {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
    }
    .footer-brand .footer-logo i {
        color: var(--accent);
    }
    .footer-brand p {
        font-size: 14px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.6);
        margin: 0;
        max-width: 420px;
    }
    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .footer-links h4 {
        font-size: 16px;
        color: #fff;
        margin-bottom: 16px;
        font-weight: 600;
    }
    .footer-links ul {
        list-style: none;
        margin: 0;
    }
    .footer-links ul li {
        padding: 4px 0;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.6;
    }
    .footer-links ul li a {
        color: rgba(255, 255, 255, 0.6);
        transition: var(--transition);
    }
    .footer-links ul li a:hover {
        color: var(--accent-light);
        padding-left: 4px;
    }
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.4);
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .navbar-menu {
            display: none;
            position: absolute;
            top: 78px;
            left: 0;
            right: 0;
            background: #fff;
            border-bottom: 1px solid var(--border);
            padding: 16px 24px;
            flex-direction: column;
            gap: 8px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }
        .navbar-menu.open {
            display: flex;
        }
        .navbar-toggle {
            display: flex;
        }
        .navbar-cta .btn-outline {
            display: none;
        }
        .hero-main {
            grid-template-columns: 1fr;
            gap: 48px;
            max-width: 560px;
            margin: 0 auto 48px;
        }
        .hero-side {
            flex-direction: row !important;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            max-width: 560px;
        }
        .hero-side.left,
        .hero-side.right {
            align-items: center;
            text-align: center;
        }
        .hero-side.left .value-point {
            flex-direction: column;
            text-align: center;
            align-items: center;
        }
        .hero-side .value-point {
            flex-direction: column;
            text-align: center;
            align-items: center;
            max-width: 200px;
        }
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .services-grid {
            grid-template-columns: 1fr;
        }
        .faq-layout {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .booking-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .footer-top {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 768px) {
        .container {
            padding: 0 18px;
        }
        .navbar-logo span {
            font-size: 18px;
        }
        .navbar-cta .btn {
            padding: 8px 16px;
            font-size: 13px;
        }
        .hero {
            padding: 56px 0 60px;
        }
        .hero-top h1 {
            font-size: 28px;
        }
        .hero-top p {
            font-size: 15px;
        }
        .hero-main {
            gap: 36px;
        }
        .product-card {
            width: 100%;
            max-width: 320px;
            padding: 28px 20px;
        }
        .float-tag {
            font-size: 12px;
            padding: 6px 12px;
        }
        .float-tag.tag-1 {
            left: 0;
        }
        .float-tag.tag-2 {
            right: 0;
        }
        .float-tag.tag-3 {
            left: 0;
        }
        .float-tag.tag-4 {
            right: 4%;
        }
        .stats-section {
            padding: 60px 0;
        }
        .stats-grid {
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }
        .stat-card {
            padding: 24px 16px;
        }
        .stat-number {
            font-size: 30px;
        }
        .stat-number span {
            font-size: 18px;
        }
        .section-header {
            margin-bottom: 36px;
        }
        .section-header h2 {
            font-size: 26px;
        }
        .services-section {
            padding: 60px 0;
        }
        .service-card {
            padding: 24px 20px;
        }
        .compare-section {
            padding: 60px 0;
        }
        .compare-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .compare-card {
            padding: 28px 22px;
        }
        .faq-section {
            padding: 60px 0;
        }
        .faq-question {
            font-size: 15px;
            padding: 16px 18px;
        }
        .faq-answer {
            font-size: 13px;
            padding: 0 18px;
        }
        .faq-item.active .faq-answer {
            padding: 0 18px 18px;
        }
        .booking-section {
            padding: 60px 0;
        }
        .booking-info h2 {
            font-size: 28px;
        }
        .booking-form-wrap {
            padding: 24px 20px;
        }
        .booking-form .form-row {
            grid-template-columns: 1fr;
        }
        .footer-links {
            grid-template-columns: 1fr 1fr;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }
    @media (max-width: 520px) {
        .navbar-logo span {
            font-size: 15px;
        }
        .navbar-cta .btn-primary {
            padding: 6px 12px;
            font-size: 12px;
        }
        .stats-grid {
            grid-template-columns: 1fr 1fr;
        }
        .footer-links {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .hero-actions {
            flex-direction: column;
            align-items: stretch;
            gap: 12px;
        }
        .btn-lg {
            padding: 13px 24px;
            font-size: 15px;
            width: 100%;
        }
    }

/* roulang page: category4 */
:root {
  --primary: #A67C48;
  --primary-dark: #8A6338;
  --primary-light: #D8BD96;
  --secondary: #3E5C50;
  --dark: #1E2A25;
  --dark-light: #29392F;
  --bg: #F7F4EE;
  --card-bg: #FFFFFF;
  --text: #2C2822;
  --text-light: #7E7568;
  --border: #EAE0D2;
  --gold: #C9A862;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 18px 50px rgba(0,0,0,0.10);
  --transition: 0.3s ease;
  --font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn i { font-size: 14px; }
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(166, 124, 72, 0.32);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: #D8CEBE;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(166, 124, 72, 0.04);
}
.btn-gold {
  background: var(--gold);
  color: #1E2A25;
}
.btn-gold:hover {
  background: #B8934F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 98, 0.36);
}
.btn-block { width: 100%; }
.btn:focus-visible {
  outline: 3px solid rgba(166, 124, 72, 0.4);
  outline-offset: 2px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.navbar-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.navbar-logo i {
  color: var(--primary);
  font-size: 24px;
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--primary); font-weight: 600; }
.nav-link.active::after { width: 100%; }
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}
.navbar-cta .btn { padding: 9px 20px; font-size: 14px; }
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.navbar-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
  background: linear-gradient(135deg, #F7F4EE 0%, #F0EBDF 60%, #E8DFCE 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(201, 168, 98, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(62, 92, 80, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(166, 124, 72, 0.10);
  border: 1px solid rgba(166, 124, 72, 0.22);
  border-radius: 50px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 13px; }
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero h1 span {
  display: block;
  color: var(--primary);
}
.hero-desc {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-route {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 44px;
}
.route-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.route-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--primary-light);
}
.route-dot.alt { background: var(--secondary); border-color: #fff; box-shadow: 0 0 0 2px rgba(62, 92, 80, 0.3); }
.route-step span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}
.route-line {
  flex: 1;
  height: 0;
  border-top: 2px dashed #D8CEBE;
  margin: 0 8px;
  max-width: 90px;
  min-width: 24px;
}
.hero-visual { position: relative; }
.member-card {
  background: linear-gradient(145deg, #2A342E, #1E2A25);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: #F4EDE2;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.member-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 168, 98, 0.24) 0%, transparent 70%);
  border-radius: 50%;
}
.member-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.member-card-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(201, 168, 98, 0.18);
  border: 1px solid rgba(201, 168, 98, 0.35);
  border-radius: 50px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}
.member-card-header > i {
  font-size: 28px;
  color: var(--gold);
}
.member-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}
.member-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.member-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #D9D2C5;
}
.member-card ul li i {
  color: var(--gold);
  font-size: 13px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 98, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}
.member-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 20px;
}
.member-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.member-card-price small {
  font-size: 13px;
  font-weight: 400;
  color: #AFA698;
}

/* Section common */
.section {
  padding: 80px 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(166, 124, 72, 0.08);
  border: 1px solid rgba(166, 124, 72, 0.18);
  border-radius: 50px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 680px;
  line-height: 1.8;
}
.section-head {
  margin-bottom: 48px;
}

/* Stats */
.stats-section {
  background: var(--dark);
  color: #EADFCB;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 98, 0.3), transparent);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-card {
  position: relative;
  padding: 24px 12px;
}
.stat-card::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
}
.stat-card:last-child::after { display: none; }
.stat-number {
  font-size: 46px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-number i {
  font-size: 28px;
  font-style: normal;
  vertical-align: super;
  margin-left: 2px;
}
.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

/* Benefits */
.benefits-section {
  background: var(--bg);
  padding: 84px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.benefit-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(166, 124, 72, 0.25);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(166, 124, 72, 0.08);
  border: 1px dashed var(--primary-light);
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}
.benefit-card:nth-child(even) .benefit-num {
  background: rgba(62, 92, 80, 0.08);
  border-color: rgba(62, 92, 80, 0.25);
  color: var(--secondary);
}
.benefit-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.benefit-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}
.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(166, 124, 72, 0.06);
  border: 1px solid rgba(166, 124, 72, 0.14);
  border-radius: 50px;
  font-size: 13px;
  color: var(--primary-dark);
  font-weight: 500;
}

/* Compare */
.compare-section {
  background: linear-gradient(180deg, #F7F4EE 0%, #F0EADF 100%);
  padding: 84px 0;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.compare-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.compare-card.highlight {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  position: relative;
  background: linear-gradient(165deg, #FFFFFF 0%, #FCFAF5 100%);
}
.compare-card.highlight::before {
  content: "推荐";
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--gold);
  color: #1E2A25;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}
.compare-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.compare-title i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  background: rgba(126, 117, 104, 0.1);
  color: var(--text-light);
}
.highlight .compare-title i {
  background: rgba(201, 168, 98, 0.15);
  color: var(--gold);
}
.compare-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.compare-list li i {
  margin-top: 4px;
  font-size: 13px;
  flex-shrink: 0;
}
.compare-list li.false i { color: #C0B6A6; }
.compare-list li.true { color: var(--dark); }
.compare-list li.true i { color: var(--gold); }

/* Testimonials */
.testimonial-section {
  background: var(--dark);
  padding: 80px 0;
  color: #E8E0D2;
}
.testimonial-section .section-title { color: #fff; }
.testimonial-section .section-subtitle { color: rgba(255, 255, 255, 0.6); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: #fff; }
.testimonial-meta { font-size: 13px; color: rgba(255, 255, 255, 0.5); }

/* FAQ */
.faq-section {
  background: var(--bg);
  padding: 84px 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.faq-side {
  position: sticky;
  top: 100px;
}
.faq-side .section-label { margin-bottom: 14px; }
.faq-side .section-title { margin-bottom: 16px; }
.faq-side .section-subtitle { margin-bottom: 24px; }
.faq-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
}
.faq-contact i { font-size: 16px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active {
  border-color: rgba(166, 124, 72, 0.3);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question .faq-icon {
  flex-shrink: 0;
  transition: transform 0.4s ease;
  color: var(--primary);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
}
.faq-item.active .faq-answer {
  max-height: 240px;
  padding: 0 24px 20px;
}

/* CTA */
.cta-section {
  padding: 84px 0 96px;
  background: linear-gradient(135deg, #1E2A25 0%, #2A3830 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 98, 0.4), transparent);
}
.cta-section::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201, 168, 98, 0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-content .section-label {
  background: rgba(201, 168, 98, 0.12);
  border-color: rgba(201, 168, 98, 0.25);
  color: var(--gold);
}
.cta-content .section-title { color: #fff; }
.cta-content .section-subtitle { color: rgba(255, 255, 255, 0.62); margin-bottom: 28px; }
.cta-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.cta-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}
.cta-points li i {
  color: var(--gold);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 98, 0.15);
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}
.cta-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  box-shadow: var(--shadow-lg);
}
.cta-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.cta-form-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label span {
  color: #C75646;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #FBF9F5;
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(166, 124, 72, 0.12);
  background: #fff;
}
.form-hint {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-hint i { font-size: 12px; }

/* Footer */
.site-footer {
  background: #1A2420;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo i {
  color: var(--gold);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 380px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-links h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.footer-links ul li a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 38px; }
  .hero .container { gap: 36px; }
  .stats-inner { gap: 24px; }
  .stat-number { font-size: 38px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-side { position: static; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid .testimonial-card:last-child { grid-column: span 2; }
}
@media (max-width: 768px) {
  .navbar { height: auto; min-height: 72px; flex-wrap: wrap; padding: 12px 0; }
  .navbar-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 0 4px;
    border-top: 1px solid var(--border);
  }
  .navbar-menu.open { display: flex; }
  .nav-link { width: 100%; padding: 12px 0; font-size: 16px; }
  .nav-link::after { display: none; }
  .navbar-cta { margin-left: auto; }
  .navbar-cta .btn { padding: 8px 16px; font-size: 13px; }
  .navbar-toggle { display: flex; }
  .hero { padding: 48px 0 60px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 32px; }
  .hero-desc { font-size: 16px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 28px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-card::after { display: none; }
  .compare-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid .testimonial-card:last-child { grid-column: span 1; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-form-card { padding: 28px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 520px) {
  .navbar { gap: 8px; }
  .navbar-cta { display: none; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .hero-route { display: none; }
  .member-card { padding: 28px 24px; }
  .member-card-footer { flex-direction: column; align-items: flex-start; }
  .stats-inner { grid-template-columns: 1fr; gap: 20px; }
  .section-title { font-size: 26px; }
  .benefit-card { padding: 28px 22px; }
  .compare-card { padding: 28px 22px; }
  .footer-links { grid-template-columns: 1fr; }
  .faq-question { padding: 16px 18px; font-size: 15px; }
  .faq-answer { padding: 0 18px; }
  .faq-item.active .faq-answer { padding: 0 18px 16px; }
}

/* roulang page: category5 */
/* ========== 设计变量 ========== */
:root {
  --primary: #1e3a34;
  --primary-dark: #142824;
  --primary-light: #2d524a;
  --accent: #c8a96a;
  --accent-dark: #b08d4f;
  --accent-light: #e5d5b4;
  --bg: #f8f6f3;
  --bg-alt: #efece6;
  --bg-dark: #10201d;
  --text: #24332f;
  --text-light: #667772;
  --border: #e0d9cf;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(30, 58, 52, 0.1);
  --shadow-lg: 0 24px 60px rgba(30, 58, 52, 0.16);
  --shadow-accent: 0 12px 36px rgba(200, 169, 106, 0.35);
  --space-section: 96px;
  --space-section-sm: 64px;
  --font-body: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

/* ========== Reset / Base ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
a:focus-visible {
  outline: 3px solid rgba(200, 169, 106, 0.6);
  outline-offset: 2px;
  border-radius: 4px;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}
button:focus-visible {
  outline: 3px solid rgba(200, 169, 106, 0.6);
  outline-offset: 2px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section {
  padding: var(--space-section) 0;
}
.section-alt {
  background: var(--white);
}
.section-accent {
  background: var(--bg-alt);
}
.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(200, 169, 106, 0.14);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== Header / Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(20, 40, 36, 0.06);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.navbar-logo i {
  color: var(--accent);
  font-size: 24px;
}
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.navbar-menu .nav-link {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
  transition: color 0.25s, background 0.25s;
}
.navbar-menu .nav-link:hover {
  color: var(--primary);
  background: rgba(30, 58, 52, 0.06);
}
.navbar-menu .nav-link.active {
  color: var(--primary);
  background: rgba(30, 58, 52, 0.08);
  font-weight: 600;
}
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1.4;
}
.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(30, 58, 52, 0.2);
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30, 58, 52, 0.28);
}
.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 14px 34px;
  font-size: 15px;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(30, 58, 52, 0.06);
  padding: 8px;
  cursor: pointer;
}
.navbar-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== Hero / 优惠券墙 ========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 72px 0 88px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.14) 0%, transparent 70%);
  top: -160px;
  right: -120px;
}
.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  bottom: -120px;
  left: 10%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy {
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(200, 169, 106, 0.2);
  border: 1px solid rgba(200, 169, 106, 0.4);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-title span {
  color: var(--accent);
}
.hero-text {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 460px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 32px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.hero-points i {
  color: var(--accent);
  font-size: 14px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* 优惠券 */
.hero-voucher {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.voucher-card {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transform: rotate(1.5deg);
  transition: transform 0.4s ease;
}
.voucher-card:hover {
  transform: rotate(0deg) scale(1.02);
}
.voucher-card::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 2px dashed rgba(200, 169, 106, 0.6);
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
}
.voucher-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 16px;
  position: relative;
  z-index: 2;
}
.voucher-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}
.voucher-brand i {
  color: var(--accent);
  font-size: 20px;
}
.voucher-badge {
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.voucher-body {
  text-align: center;
  padding: 20px 28px 16px;
  position: relative;
  z-index: 2;
}
.voucher-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.voucher-subtitle {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.voucher-gift {
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.14), rgba(200, 169, 106, 0.06));
  border: 1px solid rgba(200, 169, 106, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
  text-align: left;
}
.voucher-gift p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.voucher-gift p + p {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}
.voucher-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-alt);
  border-radius: 14px;
  padding: 14px 20px;
  position: relative;
  z-index: 2;
  margin-top: 8px;
}
.voucher-meta .meta-left {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}
.voucher-meta .meta-left strong {
  display: block;
  color: var(--primary);
  font-size: 14px;
}
.btn-claim {
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 16px rgba(200, 169, 106, 0.35);
  white-space: nowrap;
}
.btn-claim:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.voucher-torn {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
  position: relative;
  z-index: 2;
}
.voucher-torn span {
  width: 26px;
  height: 26px;
  background: var(--bg);
  border-radius: 50%;
  transform: translateY(-50%);
  margin-top: -6px;
}

/* ========== 指标看板 ========== */
.stats-section {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.3s;
}
.stat-item:hover {
  background: var(--bg);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-number .suffix {
  font-size: 22px;
  color: var(--accent);
}
.stat-label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
  font-weight: 500;
}

/* ========== 服务矩阵 ========== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-card:hover::before {
  opacity: 1;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(30, 58, 52, 0.18);
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-light);
}
.service-capacity {
  display: inline-block;
  background: rgba(200, 169, 106, 0.14);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ========== 结果对比 ========== */
.compare-section {
  background: var(--bg-alt);
}
.compare-wrap {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow-x: auto;
  padding: 28px;
}
.compare-grid {
  display: grid;
  grid-template-columns: 140px repeat(3, 1fr);
  gap: 0;
  min-width: 660px;
}
.compare-grid .col {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.6;
}
.compare-grid .col-head {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--border);
}
.compare-grid .col-head i {
  margin-right: 6px;
  color: var(--accent);
}
.compare-grid .col-label {
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.compare-grid .col-label.subhead {
  font-weight: 700;
  color: var(--text);
  font-size: 16px;
}
.compare-grid .col.featured {
  background: rgba(200, 169, 106, 0.06);
  border-radius: 12px;
  border: 1.5px solid var(--accent);
  margin: -1px;
}
.compare-grid .col:last-child {
  border-bottom: none;
}
.compare-check {
  color: var(--primary);
  font-weight: 700;
}
.compare-minus {
  color: var(--text-light);
  font-weight: 400;
}

/* ========== 流程 ========== */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  border-top: 4px solid var(--accent);
  box-shadow: 0 8px 24px rgba(30, 58, 52, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.process-step {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.process-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.process-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open {
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: none;
  width: 100%;
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover {
  color: var(--primary);
}
.faq-question .icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 14px;
  transition: transform 0.35s;
}
.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-light);
}

/* ========== CTA / 表单 ========== */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--bg-dark), var(--primary) 70%, var(--primary-light));
  overflow: hidden;
  padding: var(--space-section) 0;
}
.cta-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.08);
  top: -80px;
  left: -80px;
}
.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-copy {
  color: var(--white);
}
.cta-copy h2 {
  font-size: 34px;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 18px;
}
.cta-copy h2 span {
  color: var(--accent);
}
.cta-copy p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  margin-bottom: 28px;
  font-size: 15px;
}
.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.cta-contacts i {
  color: var(--accent);
  font-size: 18px;
  width: 24px;
  text-align: center;
}
.cta-form {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.cta-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.cta-form .form-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.15);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-submit {
  grid-column: 1 / -1;
  margin-top: 6px;
}
.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 48px;
  padding: 56px 0 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo i {
  color: var(--accent);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  font-size: 14px;
}
.footer-links h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s, padding-left 0.25s;
}
.footer-links ul a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-voucher {
    order: 2;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 900px) {
  .navbar-menu {
    position: fixed;
    top: 74px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 24px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    border-radius: 0 0 16px 16px;
    z-index: 999;
  }
  .navbar-menu.open {
    transform: translateY(0);
  }
  .navbar-menu .nav-link {
    width: 100%;
    padding: 12px 10px;
    font-size: 15px;
    border-radius: 8px;
  }
  .navbar-cta {
    display: none;
  }
  .navbar-toggle {
    display: flex;
  }
  .hero {
    padding: 52px 0 64px;
  }
  .hero-title {
    font-size: 34px;
  }
  .compare-grid {
    grid-template-columns: 110px repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  :root {
    --space-section: 56px;
    --space-section-sm: 40px;
  }
  .section-title {
    font-size: 26px;
  }
  .hero-title {
    font-size: 30px;
  }
  .voucher-card {
    transform: none;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .process-list {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .cta-form {
    padding: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .navbar-logo {
    font-size: 17px;
  }
  .navbar-logo i {
    font-size: 20px;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-points {
    flex-direction: column;
    gap: 10px;
  }
  .voucher-title {
    font-size: 24px;
  }
  .voucher-body {
    padding: 16px 18px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-number {
    font-size: 32px;
  }
  .compare-grid {
    min-width: 520px;
  }
  .section-tag {
    font-size: 12px;
  }
}

/* 优惠券领取成功浮动提示 */
.claim-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 12px 36px rgba(30, 58, 52, 0.3);
  z-index: 9999;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.claim-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.claim-toast i {
  color: var(--accent);
}

/* roulang page: category1 */
/* ===== 设计变量 ===== */
        :root {
            --primary: #3d5a45;
            --primary-dark: #2b4233;
            --primary-light: #5a7d64;
            --accent: #c9a86a;
            --accent-light: #f0e8db;
            --accent-dark: #a88953;
            --bg: #faf8f4;
            --bg-deep: #1e2d26;
            --bg-bright: #ffffff;
            --text-main: #2d2d2d;
            --text-light: #6b6b6b;
            --text-mute: #8f897f;
            --border: #e6ddd0;
            --border-light: #f0eae0;
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-sm: 8px;
            --shadow-card: 0 4px 20px rgba(45, 55, 50, 0.08);
            --shadow-hover: 0 14px 36px rgba(45, 55, 50, 0.14);
            --shadow-hero: 0 16px 48px rgba(0, 0, 0, 0.22);
            --transition: all 0.3s ease;
            --font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
        }

        /* ===== 基础 Reset ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        ul,
        ol {
            list-style: none;
        }

        /* ===== 容器 ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 按钮 ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 15px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.5px;
            text-align: center;
        }

        .btn-lg {
            padding: 14px 36px;
            font-size: 16px;
        }

        .btn-block {
            width: 100%;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(61, 90, 69, 0.3);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(61, 90, 69, 0.22);
        }

        .btn-accent {
            background: var(--accent);
            color: var(--text-main);
            border-color: var(--accent);
        }

        .btn-accent:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
            transform: translateY(-2px);
            color: #fff;
            box-shadow: 0 10px 28px rgba(201, 168, 106, 0.35);
        }

        .btn:focus-visible,
        .nav-link:focus-visible,
        a:focus-visible {
            outline: 3px solid rgba(201, 168, 106, 0.55);
            outline-offset: 2px;
        }

        /* ===== Header / 导航 ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-light);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 74px;
            gap: 24px;
        }

        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
        }

        .navbar-logo i {
            font-size: 22px;
            color: var(--accent);
        }

        .navbar-menu {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .navbar-menu .nav-link {
            display: inline-block;
            padding: 10px 16px;
            border-radius: 40px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
            transition: var(--transition);
        }

        .navbar-menu .nav-link:hover {
            background: var(--accent-light);
            color: var(--primary-dark);
        }

        .navbar-menu .nav-link.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
        }

        .navbar-cta {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-cta .btn {
            padding: 9px 22px;
            font-size: 14px;
        }

        .navbar-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: var(--radius-sm);
        }

        .navbar-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-main);
            border-radius: 2px;
            transition: var(--transition);
        }

        .navbar-toggle:hover span {
            background: var(--primary);
        }

        .navbar-toggle[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .navbar-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggle[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            background: var(--bg-deep);
            background-image: radial-gradient(circle at 15% 20%, rgba(201, 168, 106, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 85% 75%, rgba(90, 125, 100, 0.12) 0%, transparent 50%);
            color: #fff;
            padding: 96px 0 88px;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 26px 26px;
            pointer-events: none;
        }

        .hero::after {
            content: "";
            position: absolute;
            bottom: -80px;
            right: -60px;
            width: 400px;
            height: 400px;
            border: 2px dashed rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 56px;
            align-items: center;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.16);
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 13px;
            font-weight: 500;
            color: var(--accent);
            margin-bottom: 28px;
            backdrop-filter: blur(4px);
        }

        .hero h1 {
            font-size: 42px;
            line-height: 1.3;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }

        .hero-copy>p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.82);
            margin-bottom: 32px;
            max-width: 520px;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 32px;
        }

        .hero-actions .btn-outline {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.6);
        }

        .hero-actions .btn-outline:hover {
            background: #fff;
            color: var(--primary-dark);
            border-color: #fff;
        }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
        }

        .hero-trust .stars {
            color: var(--accent);
            font-size: 14px;
        }

        /* ===== 表单卡片 ===== */
        .form-card {
            background: var(--bg-bright);
            border-radius: var(--radius-lg);
            padding: 32px;
            box-shadow: var(--shadow-hero);
            color: var(--text-main);
        }

        .form-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--primary-dark);
        }

        .form-card>p {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 11px 14px;
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 14px;
            background: var(--bg);
            transition: var(--transition);
            color: var(--text-main);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(61, 90, 69, 0.12);
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 16px;
            padding-right: 38px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .form-note {
            text-align: center;
            font-size: 12px;
            color: var(--text-mute);
            margin-top: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .form-note i {
            color: var(--primary-light);
        }

        /* ===== 通用板块 ===== */
        .section {
            padding: 96px 0;
        }

        .section-alt {
            background: var(--bg-bright);
        }

        .section-head {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 56px;
        }

        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-dark);
            background: var(--accent-light);
            padding: 6px 16px;
            border-radius: 40px;
            margin-bottom: 14px;
            letter-spacing: 1px;
        }

        .section-head h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.35;
            margin-bottom: 14px;
        }

        .section-head p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.75;
        }

        /* ===== 指标看板 ===== */
        .stats {
            background: var(--bg-bright);
            border-bottom: 1px solid var(--border-light);
            padding: 56px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .stat-item {
            text-align: center;
            padding: 28px 16px;
            border-radius: var(--radius-md);
            background: var(--bg);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
            border-color: var(--accent);
        }

        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            display: block;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-light);
            margin-top: 6px;
            display: block;
        }

        /* ===== 服务矩阵 ===== */
        .services {
            padding: 96px 0;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }

        .service-card {
            position: relative;
            background: var(--bg-bright);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-card);
            transition: var(--transition);
            overflow: hidden;
        }

        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            opacity: 0;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: transparent;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-num {
            font-size: 13px;
            font-weight: 700;
            color: var(--accent-dark);
            letter-spacing: 2px;
            margin-bottom: 12px;
            display: block;
        }

        .service-icon {
            width: 52px;
            height: 52px;
            background: var(--accent-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 18px;
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .service-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .service-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--text-light);
            background: var(--bg);
            padding: 5px 12px;
            border-radius: 30px;
        }

        .service-meta i {
            color: var(--accent-dark);
        }

        /* ===== 结果对比 ===== */
        .compare {
            background: var(--bg-deep);
            color: #fff;
            padding: 96px 0;
            position: relative;
        }

        .compare::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 22px 22px;
        }

        .compare .section-head h2 {
            color: #fff;
        }

        .compare .section-head p {
            color: rgba(255, 255, 255, 0.72);
        }

        .compare .section-tag {
            background: rgba(201, 168, 106, 0.16);
            color: var(--accent);
        }

        .compare-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: start;
        }

        .compare-col {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 36px;
            backdrop-filter: blur(6px);
        }

        .compare-col.better {
            background: rgba(201, 168, 106, 0.08);
            border-color: rgba(201, 168, 106, 0.2);
        }

        .compare-col h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .compare-col.better h3 {
            color: var(--accent);
        }

        .compare-col:not(.better) h3 {
            color: rgba(255, 255, 255, 0.7);
        }

        .compare-list li {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 14px;
            line-height: 1.6;
        }

        .compare-list li:last-child {
            border-bottom: none;
        }

        .compare-list .icon {
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .compare-col:not(.better) .icon {
            color: #8a7d6d;
        }

        .compare-col.better .icon {
            color: var(--accent);
        }

        .compare-list .disc {
            color: rgba(255, 255, 255, 0.65);
        }

        .compare-list .text {
            color: rgba(255, 255, 255, 0.85);
        }

        .compare-col.better .text {
            color: rgba(255, 255, 255, 0.95);
        }

        /* ===== 预约流程 ===== */
        .process {
            padding: 96px 0;
            background: var(--bg);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            counter-reset: step;
        }

        .step-item {
            position: relative;
            text-align: center;
            padding: 32px 20px;
            background: var(--bg-bright);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .step-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .step-item::before {
            counter-increment: step;
            content: counter(step, decimal-leading-zero);
            position: absolute;
            top: 20px;
            left: 22px;
            font-size: 16px;
            font-weight: 800;
            color: var(--accent-dark);
            background: var(--accent-light);
            padding: 6px 12px;
            border-radius: 30px;
            line-height: 1;
        }

        .step-icon {
            width: 56px;
            height: 56px;
            margin: 20px auto 18px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #fff;
            box-shadow: 0 8px 20px rgba(61, 90, 69, 0.3);
        }

        .step-item h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .step-item p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.65;
        }

        /* ===== FAQ ===== */
        .faq {
            padding: 96px 0;
            background: var(--bg-bright);
        }

        .faq-list {
            max-width: 760px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            margin-bottom: 14px;
            background: var(--bg);
            transition: var(--transition);
            overflow: hidden;
        }

        .faq-item:hover {
            border-color: var(--accent);
        }

        .faq-item summary {
            padding: 22px 26px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            list-style: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 14px;
            color: var(--accent-dark);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .faq-item[open] summary::after {
            transform: rotate(180deg);
        }

        .faq-item .faq-answer {
            padding: 0 26px 22px;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.75;
        }

        /* ===== CTA 转化表单 ===== */
        .cta {
            position: relative;
            background: var(--primary-dark);
            background-image: radial-gradient(circle at 70% 20%, rgba(201, 168, 106, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 10% 80%, rgba(90, 125, 100, 0.2) 0%, transparent 40%);
            color: #fff;
            padding: 96px 0;
        }

        .cta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
        }

        .cta-copy h2 {
            font-size: 34px;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .cta-copy p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .cta-points {
            margin-bottom: 32px;
        }

        .cta-points li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 7px 0;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.88);
        }

        .cta-points i {
            color: var(--accent);
        }

        .cta-form-wrap {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-lg);
            padding: 36px;
            backdrop-filter: blur(8px);
        }

        .cta-form-wrap h3 {
            font-size: 19px;
            margin-bottom: 6px;
        }

        .cta-form-wrap>p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 22px;
        }

        .cta-form-wrap .form-group label {
            color: rgba(255, 255, 255, 0.9);
        }

        .cta-form-wrap .form-group input,
        .cta-form-wrap .form-group select,
        .cta-form-wrap .form-group textarea {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.18);
            color: #fff;
        }

        .cta-form-wrap .form-group input::placeholder,
        .cta-form-wrap .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .cta-form-wrap .form-group input:focus,
        .cta-form-wrap .form-group select:focus,
        .cta-form-wrap .form-group textarea:focus {
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.2);
        }

        .cta-form-wrap .form-group select {
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        }

        .cta-form-wrap .btn {
            width: 100%;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: #19241f;
            color: rgba(255, 255, 255, 0.65);
            padding: 64px 0 0;
            font-size: 14px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 48px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }

        .footer-logo i {
            color: var(--accent);
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.55);
            max-width: 320px;
        }

        .footer-links h4 {
            font-size: 15px;
            color: #fff;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.55);
            font-size: 13px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 22px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .hero {
                padding: 76px 0 72px;
            }

            .hero h1 {
                font-size: 34px;
            }

            .service-grid {
                gap: 20px;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr 1fr;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 992px) {
            .navbar-toggle {
                display: flex;
            }

            .navbar-menu {
                display: none;
                position: absolute;
                top: 74px;
                left: 0;
                right: 0;
                background: var(--bg-bright);
                flex-direction: column;
                padding: 16px 24px 20px;
                box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
                border-bottom: 1px solid var(--border-light);
                align-items: stretch;
                gap: 6px;
            }

            .navbar-menu.open {
                display: flex;
            }

            .navbar-menu .nav-link {
                padding: 12px 16px;
                border-radius: var(--radius-sm);
            }

            .navbar-cta {
                display: none;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-copy {
                text-align: left;
            }

            .form-card {
                max-width: 480px;
                margin: 0 auto;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .compare-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .cta-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 72px 0;
            }

            .section-head {
                margin-bottom: 40px;
            }

            .section-head h2 {
                font-size: 27px;
            }

            .hero {
                padding: 60px 0;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero-copy>p {
                font-size: 15px;
            }

            .hero-actions .btn {
                width: 100%;
                justify-content: center;
            }

            .cta-copy h2 {
                font-size: 27px;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 18px;
            }

            .navbar-logo span {
                max-width: 180px;
                white-space: normal;
                line-height: 1.3;
                font-size: 15px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .service-card {
                padding: 26px 22px;
            }

            .compare-col,
            .cta-form-wrap {
                padding: 24px 20px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
