:root {
            --primary: #2c5f4a;
            --primary-dark: #1d4233;
            --primary-light: #e3f0ea;
            --accent: #b5896e;
            --accent-light: #f3e8df;
            --bg: #faf8f5;
            --bg-soft: #f2efe9;
            --text: #2b2b2b;
            --text-light: #6f6a63;
            --border: #e6e0d8;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
            --radius: 18px;
            --radius-sm: 10px;
            --container: 1200px;
            --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-color: var(--bg);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
            height: auto;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul,
        ol {
            list-style: none;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            border: none;
            outline: none;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 32px;
        }

        /* 导航 */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 14px 0;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .logo {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: 0.5px;
            line-height: 1.4;
            white-space: nowrap;
        }

        .logo:hover {
            color: var(--primary);
        }

        .main-nav ul {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .main-nav a {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 15px;
            color: var(--text-light);
            font-weight: 500;
            transition: var(--transition);
        }

        .main-nav a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .main-nav a.active {
            color: var(--primary-dark);
            background: var(--primary-light);
            font-weight: 600;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: var(--bg-soft);
            border-radius: 999px;
            padding: 8px 16px;
            gap: 8px;
            min-width: 210px;
            border: 1px solid transparent;
            transition: var(--transition);
        }

        .search-box:focus-within {
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(44, 95, 74, 0.12);
        }

        .search-box svg {
            width: 16px;
            height: 16px;
            stroke: var(--text-light);
            flex-shrink: 0;
        }

        .search-box input {
            background: transparent;
            border: none;
            width: 100%;
            font-size: 14px;
            color: var(--text);
        }

        .search-box input::placeholder {
            color: #a09a92;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: var(--white);
            padding: 10px 24px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            line-height: 1.4;
            white-space: nowrap;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            box-shadow: 0 6px 18px rgba(44, 95, 74, 0.25);
            transform: translateY(-1px);
        }

        .btn-primary:active {
            transform: translateY(0);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: var(--primary-dark);
            padding: 10px 24px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            border: 1.5px solid var(--primary);
            cursor: pointer;
            transition: var(--transition);
            line-height: 1.4;
            white-space: nowrap;
        }

        .btn-outline:hover {
            background: var(--primary-light);
            box-shadow: var(--shadow-sm);
        }

        .btn-light {
            background: var(--white);
            color: var(--primary-dark);
        }

        .btn-light:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
            box-shadow: var(--shadow-md);
        }

        .header-cta {
            padding: 9px 22px;
            font-size: 14px;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            border-radius: 8px;
        }

        .mobile-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text);
            margin: 5px 0;
            border-radius: 2px;
            transition: var(--transition);
        }

        /* Hero */
        .hero {
            position: relative;
            background: linear-gradient(135deg, rgba(29, 66, 51, 0.92), rgba(44, 95, 74, 0.78)), url('/assets/images/backpic/back-1.jpg') center center / cover no-repeat;
            color: var(--white);
            padding: 96px 0 76px;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            right: -80px;
            bottom: -80px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 6px 16px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            color: #f0f5f2;
        }

        .hero h1 {
            font-size: 36px;
            line-height: 1.35;
            font-weight: 700;
            max-width: 760px;
            margin-bottom: 16px;
            letter-spacing: 1px;
        }

        .hero-sub {
            font-size: 16px;
            line-height: 1.8;
            max-width: 640px;
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 28px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 36px;
        }

        .hero-progress-block {
            display: flex;
            align-items: center;
            gap: 32px;
            margin-bottom: 44px;
            flex-wrap: wrap;
        }

        .progress-ring {
            width: 130px;
            height: 130px;
            position: relative;
            flex-shrink: 0;
        }

        .progress-ring svg {
            width: 130px;
            height: 130px;
            transform: rotate(-90deg);
        }

        .progress-ring .bg-circle {
            fill: none;
            stroke: rgba(255, 255, 255, 0.18);
            stroke-width: 8;
        }

        .progress-ring .fg-circle {
            fill: none;
            stroke: #f2c879;
            stroke-width: 8;
            stroke-linecap: round;
            stroke-dasharray: 329;
            stroke-dashoffset: 79;
            transition: stroke-dashoffset 1s ease;
        }

        .progress-ring .ring-center {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .ring-center strong {
            font-size: 26px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
        }

        .ring-center span {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
        }

        .progress-label {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .progress-label strong {
            font-size: 19px;
            font-weight: 600;
        }

        .progress-label span {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            max-width: 320px;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, 0.16);
        }

        .stat-item .stat-num {
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
        }

        .stat-item .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
        }

        /* 档位卡 */
        .hero-plans {
            position: relative;
            z-index: 2;
            margin-top: 64px;
        }

        .hero-plans .section-label {
            color: var(--primary-dark);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .plan-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 28px;
            box-shadow: var(--shadow-md);
            position: relative;
            border: 1px solid var(--border);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .plan-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .plan-card.popular {
            border-color: var(--primary);
            box-shadow: 0 14px 36px rgba(44, 95, 74, 0.14);
        }

        .plan-badge {
            position: absolute;
            top: -12px;
            right: 24px;
            background: var(--accent);
            color: var(--white);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 999px;
        }

        .plan-card .plan-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
        }

        .plan-card .plan-price {
            font-size: 30px;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 14px;
        }

        .plan-card .plan-price small {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-light);
            margin-left: 4px;
        }

        .plan-card ul {
            margin: 12px 0 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .plan-card ul li {
            font-size: 14px;
            color: var(--text-light);
            display: flex;
            gap: 8px;
            align-items: flex-start;
            line-height: 1.5;
        }

        .plan-card ul li::before {
            content: '✓';
            color: var(--primary);
            font-weight: 700;
            flex-shrink: 0;
        }

        .plan-card .plans-cta {
            margin-top: auto;
            text-align: center;
        }

        .plan-card .plans-cta a {
            display: block;
            width: 100%;
        }

        /* Section通用 */
        .section {
            padding: 96px 0;
        }

        .section-label {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-light);
            padding: 5px 14px;
            border-radius: 999px;
            margin-bottom: 14px;
        }

        .section-title {
            font-size: 30px;
            line-height: 1.35;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-light);
            max-width: 640px;
            line-height: 1.8;
        }

        .section-head {
            margin-bottom: 48px;
        }

        .section-head.center {
            text-align: center;
        }

        .section-head.center .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        /* 服务亮点 */
        .features-section {
            background: var(--white);
            border-bottom: 1px solid var(--border);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .feature-card {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 30px 26px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .feature-card:hover {
            box-shadow: var(--shadow-md);
            border-color: rgba(44, 95, 74, 0.3);
            transform: translateY(-3px);
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            color: var(--primary);
        }

        .feature-icon svg {
            width: 22px;
            height: 22px;
        }

        .feature-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.75;
        }

        /* 时段卡 */
        .time-section {
            background: var(--bg-soft);
            position: relative;
        }

        .time-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .time-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 28px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .time-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary);
            opacity: 0;
            transition: var(--transition);
        }

        .time-card:hover::before {
            opacity: 1;
        }

        .time-card .time-range {
            font-size: 13px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .time-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .time-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 18px;
        }

        .time-card .time-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .time-tag {
            font-size: 12px;
            padding: 4px 12px;
            background: var(--bg-soft);
            border-radius: 999px;
            color: var(--text-light);
            font-weight: 500;
        }

        /* 资讯 */
        .news-section {
            background: var(--white);
        }

        .news-layout {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .news-list {
            display: flex;
            flex-direction: column;
        }

        .news-item {
            display: flex;
            gap: 20px;
            padding: 22px 0;
            border-bottom: 1px solid var(--border);
            align-items: center;
            transition: var(--transition);
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-thumb {
            width: 132px;
            height: 88px;
            border-radius: 12px;
            overflow: hidden;
            object-fit: cover;
            flex-shrink: 0;
            background: var(--bg-soft);
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-content {
            flex: 1;
            min-width: 0;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 6px;
        }

        .news-meta span {
            font-size: 12px;
            color: var(--text-light);
        }

        .news-meta .cat {
            color: var(--primary);
            font-weight: 600;
        }

        .news-content h3 {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;
            margin-bottom: 6px;
            transition: var(--transition);
        }

        .news-content h3 a:hover {
            color: var(--primary);
        }

        .news-content p {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-sidebar {
            background: var(--bg);
            border-radius: var(--radius);
            padding: 30px 26px;
            border: 1px solid var(--border);
        }

        .sidebar-title {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--border);
        }

        .sidebar-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(230, 224, 216, 0.6);
            display: flex;
            gap: 10px;
            align-items: baseline;
            font-size: 14px;
            color: var(--text);
            transition: var(--transition);
        }

        .sidebar-list li:last-child {
            border-bottom: none;
        }

        .sidebar-list li:hover {
            color: var(--primary);
        }

        .sidebar-list .num {
            color: var(--accent);
            font-weight: 700;
            font-size: 13px;
            flex-shrink: 0;
        }

        .sidebar-cta {
            margin-top: 18px;
            background: var(--primary-light);
            border-radius: 14px;
            padding: 20px;
            text-align: center;
        }

        .sidebar-cta h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--primary-dark);
        }

        .sidebar-cta p {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 14px;
            line-height: 1.6;
        }

        .sidebar-cta .btn-primary {
            padding: 8px 20px;
            font-size: 14px;
            width: 100%;
        }

        /* 评价墙 */
        .reviews-section {
            background: var(--bg-soft);
        }

        .reviews-layout {
            display: grid;
            grid-template-columns: 0.9fr 2fr;
            gap: 36px;
            align-items: start;
        }

        .review-summary {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 28px;
            border: 1px solid var(--border);
            text-align: center;
            box-shadow: var(--shadow-sm);
        }

        .review-score {
            font-size: 52px;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1.1;
            margin-bottom: 4px;
        }

        .review-stars {
            color: #e2a94f;
            font-size: 18px;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .review-count {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .review-bars {
            display: flex;
            flex-direction: column;
            gap: 10px;
            text-align: left;
            margin-bottom: 22px;
        }

        .review-bar-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-light);
        }

        .review-bar-row .bar-label {
            width: 34px;
            text-align: right;
        }

        .review-bar-bg {
            flex: 1;
            height: 6px;
            background: var(--bg-soft);
            border-radius: 3px;
            overflow: hidden;
        }

        .review-bar-fill {
            height: 100%;
            background: var(--primary);
            border-radius: 3px;
        }

        .review-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .review-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 26px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }

        .review-card .review-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .reviewer-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }

        .reviewer .name {
            font-size: 14px;
            font-weight: 600;
        }

        .reviewer .type {
            font-size: 12px;
            color: var(--text-light);
        }

        .review-card .review-text {
            font-size: 14px;
            color: var(--text);
            line-height: 1.75;
            margin-bottom: 10px;
        }

        .review-card .review-date {
            font-size: 12px;
            color: var(--text-light);
        }

        .review-more {
            text-align: center;
            margin-top: 24px;
        }

        /* FAQ */
        .faq-section {
            background: var(--white);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .faq-item {
            background: var(--bg);
            border-radius: 14px;
            padding: 24px 26px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(44, 95, 74, 0.3);
        }

        .faq-item summary {
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            color: var(--text);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            line-height: 1.6;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-size: 22px;
            font-weight: 400;
            color: var(--primary);
            flex-shrink: 0;
            transition: var(--transition);
        }

        .faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-item .faq-answer {
            padding-top: 14px;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* 预约表单 */
        .booking-section {
            background: linear-gradient(160deg, var(--primary-dark), var(--primary));
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .booking-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .booking-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 56px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .booking-info .section-label {
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
        }

        .booking-info h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
            line-height: 1.35;
        }

        .booking-info p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 24px;
        }

        .booking-contact {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 24px;
        }

        .booking-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
        }

        .booking-contact-item svg {
            width: 20px;
            height: 20px;
            stroke: var(--accent);
        }

        .booking-form-wrap {
            background: var(--white);
            border-radius: var(--radius);
            padding: 36px 32px;
            box-shadow: var(--shadow-lg);
            color: var(--text);
        }

        .booking-form-wrap h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .booking-form-wrap>p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 22px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 7px;
            color: var(--text);
        }

        .form-group label span {
            color: var(--accent);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 14px;
            color: var(--text);
            transition: var(--transition);
            appearance: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(44, 95, 74, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 90px;
        }

        .form-submit {
            width: 100%;
            padding: 14px;
            font-size: 16px;
        }

        .form-note {
            font-size: 12px;
            color: var(--text-light);
            margin-top: 12px;
            text-align: center;
            line-height: 1.6;
        }

        /* 页脚 */
        .site-footer {
            background: #1f2823;
            color: #b8c2bc;
            padding: 56px 0 0;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 14px;
            display: block;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.9;
            color: #9aa69f;
            max-width: 300px;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col ul li {
            font-size: 14px;
        }

        .footer-col ul li a {
            color: #9aa69f;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--white);
        }

        .footer-bottom {
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: #77837c;
        }

        .footer-bottom a {
            color: #9aa69f;
        }

        .footer-bottom a:hover {
            color: var(--white);
        }

        /* 其他通用组件 */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 30px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .section-hr {
            border: none;
            border-top: 1px solid var(--border);
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .container {
                padding: 0 24px;
            }

            .plans-grid,
            .features-grid,
            .time-cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .news-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .reviews-layout {
                grid-template-columns: 1fr;
            }

            .booking-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 64px 0;
            }

            .site-header {
                padding: 12px 0;
            }

            .main-nav {
                position: fixed;
                top: 62px;
                left: 0;
                right: 0;
                background: var(--white);
                border-bottom: 1px solid var(--border);
                padding: 16px 24px;
                transform: translateY(-16px);
                opacity: 0;
                pointer-events: none;
                transition: var(--transition);
                box-shadow: var(--shadow-md);
                border-radius: 0 0 16px 16px;
            }

            .main-nav.open {
                transform: translateY(0);
                opacity: 1;
                pointer-events: auto;
            }

            .main-nav ul {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .main-nav a {
                display: block;
                width: 100%;
                padding: 12px 14px;
                border-radius: 10px;
            }

            .search-box {
                display: none;
            }

            .header-cta {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .hero {
                padding: 64px 0 56px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero-stats {
                gap: 20px;
            }

            .plans-grid,
            .features-grid,
            .time-cards {
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .booking-form-wrap {
                padding: 28px 20px;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding: 0 18px;
            }

            .logo {
                font-size: 14px;
                white-space: normal;
                line-height: 1.5;
            }

            .hero h1 {
                font-size: 24px;
            }

            .hero-progress-block {
                gap: 20px;
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-stats {
                flex-direction: column;
                gap: 12px;
            }

            .stat-item {
                display: flex;
                align-items: baseline;
                gap: 10px;
            }

            .stat-item .stat-num {
                font-size: 22px;
            }

            .news-item {
                flex-direction: column;
                align-items: flex-start;
            }

            .news-thumb {
                width: 100%;
                height: 160px;
            }
        }

/* ========== 设计变量 ========== */
        :root {
            --primary: #9A7B4F;
            --primary-dark: #6B4E2E;
            --primary-light: #B9976A;
            --accent: #D9A95F;
            --bg: #FAF7F2;
            --bg-alt: #F0E9DF;
            --surface: #FFFFFF;
            --text: #26211B;
            --text-soft: #6B665E;
            --border: #E6DDD2;
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-sm: 8px;
            --shadow: 0 8px 30px rgba(62, 46, 34, 0.08);
            --shadow-lg: 0 16px 44px rgba(62, 46, 34, 0.13);
            --shadow-btn: 0 6px 18px rgba(107, 78, 46, 0.24);
            --transition: all 0.28s ease;
            --container: 1200px;
        }

        /* ========== 基础 Reset ========== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }
        body {
            font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Helvetica Neue", Arial, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: var(--text);
            background: var(--bg);
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        ul,
        ol {
            list-style: none;
        }
        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        /* ========== 容器 ========== */
        .container {
            max-width: var(--container);
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ========== 按钮 ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            line-height: 1.4;
            transition: var(--transition);
            border: 1.5px solid transparent;
            white-space: nowrap;
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: #fff;
            box-shadow: var(--shadow-btn);
        }
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(107, 78, 46, 0.32);
        }
        .btn-outline {
            background: transparent;
            border-color: rgba(154, 123, 79, 0.5);
            color: var(--primary-dark);
        }
        .btn-outline:hover {
            background: rgba(154, 123, 79, 0.08);
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .btn-light {
            background: #fff;
            color: var(--primary-dark);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
        }
        .btn-light:hover {
            background: var(--bg-alt);
            transform: translateY(-2px);
        }
        .btn-outline-light {
            border-color: rgba(255, 255, 255, 0.4);
            color: #fff;
        }
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.7);
            transform: translateY(-2px);
        }
        .btn-sm {
            padding: 10px 20px;
            font-size: 14px;
        }
        .btn-lg {
            padding: 16px 36px;
            font-size: 16px;
        }
        .btn-block {
            width: 100%;
        }
        .btn:focus-visible {
            outline: 3px solid rgba(217, 169, 95, 0.6);
            outline-offset: 2px;
        }

        /* ========== 标签 / 徽章 ========== */
        .badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            padding: 6px 16px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 500;
            backdrop-filter: blur(6px);
        }
        .badge-light {
            display: inline-block;
            background: rgba(154, 123, 79, 0.12);
            border: 1px solid rgba(154, 123, 79, 0.25);
            color: var(--primary-dark);
            padding: 6px 16px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
        }
        .tag {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 12px;
            background: rgba(154, 123, 79, 0.10);
            color: var(--primary-dark);
        }

        /* ========== 头部导航 ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(250, 247, 242, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(230, 221, 210, 0.7);
        }
        .header-inner {
            display: flex;
            align-items: center;
            gap: 24px;
            height: 76px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(107, 78, 46, 0.25);
        }
        .brand-name {
            font-weight: 700;
            font-size: 17px;
            color: var(--text);
            white-space: nowrap;
        }
        .brand-badge {
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 999px;
            background: rgba(217, 169, 95, 0.18);
            color: var(--primary-dark);
            border: 1px solid rgba(217, 169, 95, 0.4);
            white-space: nowrap;
        }
        .main-nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }
        .main-nav ul {
            display: flex;
            gap: 4px;
            align-items: center;
        }
        .main-nav a {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 999px;
            font-weight: 500;
            font-size: 15px;
            color: var(--text-soft);
            transition: var(--transition);
        }
        .main-nav a:hover {
            background: rgba(154, 123, 79, 0.10);
            color: var(--text);
        }
        .main-nav a.active {
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            box-shadow: 0 4px 14px rgba(154, 123, 79, 0.3);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .search-box {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 8px 16px;
            width: 210px;
            transition: var(--transition);
        }
        .search-box:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(154, 123, 79, 0.12);
            width: 250px;
        }
        .search-box input {
            border: none;
            outline: none;
            background: transparent;
            width: 100%;
            font-size: 14px;
            color: var(--text);
        }
        .search-icon {
            font-size: 14px;
            color: var(--text-soft);
        }
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            width: 42px;
            height: 42px;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            border: 1px solid var(--border);
            background: var(--surface);
            transition: var(--transition);
        }
        .nav-toggle:hover {
            border-color: var(--primary);
        }
        .nav-toggle span {
            width: 18px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: var(--transition);
        }
        .nav-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ========== Hero ========== */
        .hero {
            position: relative;
            background-size: cover;
            background-position: center;
            padding: 80px 0 90px;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(38, 33, 27, 0.80) 0%, rgba(38, 33, 27, 0.55) 55%, rgba(38, 33, 27, 0.25) 100%);
        }
        .hero .container {
            position: relative;
            z-index: 2;
        }
        .hero-inner {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }
        .hero-content {
            color: #fff;
        }
        .hero-content .lead {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.88);
            max-width: 540px;
            margin-top: 16px;
        }
        .hero-content h1 {
            font-size: 44px;
            line-height: 1.25;
            font-weight: 700;
            margin: 20px 0 0;
            letter-spacing: 0.5px;
        }
        .hero-actions {
            display: flex;
            gap: 14px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        .hero-content .btn-outline {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
        }
        .hero-content .btn-outline:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #fff;
        }
        .hero-trust {
            display: flex;
            gap: 20px;
            margin-top: 28px;
            flex-wrap: wrap;
        }
        .hero-trust span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
        }
        .hero-trust i {
            color: var(--accent);
        }
        .hero-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 255, 255, 0.6);
        }
        .hero-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .hero-card>p {
            font-size: 14px;
            color: var(--text-soft);
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 14px;
        }
        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text);
        }
        .form-group input {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            background: var(--bg);
            transition: var(--transition);
            font-size: 14px;
        }
        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(154, 123, 79, 0.10);
            background: #fff;
        }
        .form-note {
            font-size: 13px;
            color: var(--text-soft);
            margin-top: 14px;
            text-align: center;
        }
        .form-note a {
            color: var(--primary-dark);
            font-weight: 600;
        }
        .form-note a:hover {
            color: var(--primary);
        }
        .hero-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 60px;
            display: block;
            z-index: 2;
            pointer-events: none;
        }

        /* ========== 板块通用 ========== */
        .section {
            padding: 84px 0;
        }
        .section-alt {
            background: var(--bg-alt);
        }
        .section-head {
            max-width: 680px;
            margin-bottom: 46px;
        }
        .section-head.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }
        .section-head h2 {
            font-size: 34px;
            line-height: 1.3;
            font-weight: 700;
            margin: 12px 0;
            letter-spacing: 0.3px;
        }
        .section-head p {
            color: var(--text-soft);
            font-size: 15px;
        }

        /* ========== 卡片网格 ========== */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            padding: 26px;
            transition: var(--transition);
        }
        .card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-4px);
            border-color: rgba(154, 123, 79, 0.3);
        }

        /* ========== 特色 ========== */
        .feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(154, 123, 79, 0.18), rgba(217, 169, 95, 0.25));
            color: var(--primary-dark);
            font-size: 24px;
            margin-bottom: 16px;
            transition: var(--transition);
        }
        .card:hover .feature-icon {
            transform: scale(1.06);
            background: linear-gradient(135deg, rgba(154, 123, 79, 0.28), rgba(217, 169, 95, 0.35));
        }
        .card h3 {
            font-size: 19px;
            margin-bottom: 8px;
            font-weight: 700;
        }
        .card p {
            color: var(--text-soft);
            font-size: 14px;
            line-height: 1.8;
        }

        /* ========== 场景 ========== */
        .scenario-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .scenario-item {
            display: grid;
            grid-template-columns: 160px 1fr;
            gap: 20px;
            align-items: center;
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 18px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .scenario-item:hover {
            box-shadow: var(--shadow);
            transform: translateY(-4px);
            border-color: rgba(154, 123, 79, 0.3);
        }
        .scenario-item img {
            width: 160px;
            height: 128px;
            border-radius: var(--radius-md);
            object-fit: cover;
        }
        .scenario-body h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .scenario-body p {
            font-size: 14px;
            color: var(--text-soft);
            line-height: 1.8;
        }

        /* ========== 流程 ========== */
        .process-list {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .process-step {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            border-top: 4px solid var(--accent);
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
        }
        .process-step:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .step-num {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            margin-bottom: 16px;
            font-size: 16px;
        }
        .process-step h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .process-step p {
            font-size: 14px;
            color: var(--text-soft);
            line-height: 1.8;
        }

        /* ========== 数据统计 ========== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .stat-item {
            text-align: center;
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 32px 20px;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .stat-item:hover {
            box-shadow: var(--shadow);
            transform: translateY(-3px);
            border-color: rgba(154, 123, 79, 0.3);
        }
        .stat-num {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1.1;
        }
        .stat-label {
            font-size: 14px;
            color: var(--text-soft);
            margin-top: 6px;
        }

        /* ========== 会客厅推荐 ========== */
        .salon-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }
        .salon-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-6px);
            border-color: rgba(154, 123, 79, 0.35);
        }
        .salon-card img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            transition: var(--transition);
        }
        .salon-card:hover img {
            transform: scale(1.02);
        }
        .salon-body {
            padding: 22px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .salon-tags {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }
        .salon-body h3 {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .salon-body p {
            font-size: 14px;
            color: var(--text-soft);
            line-height: 1.8;
            flex: 1;
        }
        .salon-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
            font-size: 13px;
            color: var(--text-soft);
        }
        .salon-meta .price {
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 16px;
        }

        /* ========== FAQ ========== */
        .faq-list {
            max-width: 780px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            margin-bottom: 14px;
            overflow: hidden;
            transition: var(--transition);
        }
        .faq-item.open {
            box-shadow: var(--shadow);
            border-color: rgba(154, 123, 79, 0.4);
        }
        .faq-q {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 22px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
        }
        .faq-q:hover {
            color: var(--primary-dark);
            background: rgba(154, 123, 79, 0.03);
        }
        .faq-q .icon {
            transition: var(--transition);
            color: var(--primary);
            font-size: 18px;
            flex-shrink: 0;
            margin-left: 16px;
        }
        .faq-item.open .faq-q .icon {
            transform: rotate(45deg);
        }
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.3s ease;
            padding: 0 22px;
        }
        .faq-item.open .faq-a {
            max-height: 320px;
            padding: 0 22px 20px;
        }
        .faq-a p {
            font-size: 15px;
            color: var(--text-soft);
            line-height: 1.8;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: linear-gradient(135deg, #3E2C1E 0%, #6B4E2E 100%);
            color: #fff;
            padding: 76px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::after {
            content: "茶";
            position: absolute;
            right: -30px;
            bottom: -70px;
            font-size: 280px;
            color: rgba(255, 255, 255, 0.04);
            font-weight: 800;
            line-height: 1;
            pointer-events: none;
        }
        .cta-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 2;
            flex-wrap: wrap;
        }
        .cta-inner h2 {
            font-size: 32px;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .cta-inner p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 480px;
            font-size: 15px;
        }
        .cta-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: #26211B;
            color: rgba(255, 255, 255, 0.7);
            padding: 56px 0 24px;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-brand .logo {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            line-height: 1.5;
        }
        .footer-brand .logo:hover {
            color: var(--accent);
        }
        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.55);
            margin-top: 14px;
            max-width: 320px;
            line-height: 1.9;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 15px;
            margin-bottom: 14px;
            font-weight: 600;
        }
        .footer-col li {
            margin-bottom: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            padding-top: 22px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.5);
        }
        .footer-bottom a:hover {
            color: #fff;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-content h1 {
                font-size: 36px;
            }
            .process-list {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-box {
                width: 150px;
            }
            .search-box:focus-within {
                width: 180px;
            }
            .grid-3 {
                gap: 18px;
            }
            .scenario-item {
                grid-template-columns: 140px 1fr;
            }
            .scenario-item img {
                width: 140px;
                height: 120px;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
                height: auto;
                padding: 12px 0;
                gap: 12px;
            }
            .main-nav {
                order: 3;
                width: 100%;
                display: none;
                flex-direction: column;
            }
            .main-nav.open {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 4px;
                padding: 8px 0;
            }
            .main-nav a {
                display: block;
                padding: 12px 16px;
                border-radius: 10px;
            }
            .nav-toggle {
                display: flex;
            }
            .search-box {
                display: none;
            }
            .header-actions .btn-sm {
                margin-right: 2px;
            }
            .hero {
                padding: 56px 0 64px;
            }
            .hero-content h1 {
                font-size: 30px;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-actions .btn {
                width: 100%;
            }
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .scenario-grid {
                grid-template-columns: 1fr;
            }
            .scenario-item {
                grid-template-columns: 1fr;
            }
            .scenario-item img {
                width: 100%;
                height: 200px;
            }
            .cta-inner {
                flex-direction: column;
                text-align: center;
            }
            .cta-actions {
                justify-content: center;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
            .section {
                padding: 56px 0;
            }
            .section-head h2 {
                font-size: 28px;
            }
        }
        @media (max-width: 520px) {
            .process-list {
                grid-template-columns: 1fr;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .hero-card {
                padding: 22px;
            }
            .hero-content .lead {
                font-size: 15px;
            }
            .hero-trust {
                gap: 12px;
            }
            .hero-trust span {
                font-size: 13px;
            }
            .brand-name {
                font-size: 15px;
            }
            .brand-badge {
                display: none;
            }
            .section-head h2 {
                font-size: 24px;
            }
            .btn-lg {
                padding: 14px 28px;
            }
        }
