* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #0a1c2f;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* 圆角统一适中 */
        .hero-image, .refinance-showcase, .fee-promo-card, .cash-offer-section, 
        .btn-primary, .btn-outline, input, textarea, select, .service-card {
            border-radius: 16px;
        }

        /* 导航区 */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            flex-wrap: wrap;
            gap: 20px;
            border-bottom: 1px solid #eef2f6;
        }
        .logo-area h1 {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            color: #1a3a2e;
        }
        .logo-area p {
            font-size: 0.75rem;
            color: #6b8c7a;
            font-weight: 500;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            font-weight: 500;
        }
        .nav-links a {
            text-decoration: none;
            color: #1e3a4d;
            transition: 0.2s;
        }
        .nav-links a:hover {
            color: #2C7A5E;
        }
        .btn-primary {
            background: #2C7A5E;
            color: white;
            border: none;
            padding: 10px 26px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-block;
            text-decoration: none;
            font-size: 0.9rem;
            box-shadow: 0 2px 6px rgba(44,122,94,0.2);
        }
        .btn-primary:hover {
            background: #1e5f48;
            transform: translateY(-2px);
            box-shadow: 0 12px 22px -10px rgba(44,122,94,0.4);
        }
        .btn-outline {
            background: transparent;
            border: 1.5px solid #2C7A5E;
            color: #2C7A5E;
            padding: 8px 22px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .btn-outline:hover {
            background: #2C7A5E;
            color: white;
        }
        .btn-large {
            padding: 14px 36px;
            font-size: 1rem;
        }

        /* Hero 区域 */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            margin: 50px 0 60px;
        }
        .hero-content {
            flex: 1.2;
        }
        .hero-badge {
            background: #e1f5ed;
            color: #1e6f53;
            padding: 5px 16px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 24px;
            border-radius: 40px;
        }
        .hero-content h2 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #0a2a3b;
        }
        .hero-content p {
            font-size: 1.05rem;
            color: #4a6a7a;
            margin-bottom: 28px;
            max-width: 90%;
        }
        .hero-stats {
            display: flex;
            gap: 28px;
            margin-top: 16px;
        }
        .hero-stats span {
            font-weight: 700;
            color: #2C7A5E;
        }
        .hero-image {
            flex: 1;
            background: linear-gradient(125deg, #d9e6f2, #cbdde9);
            min-height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            /* 修复：改为绝对路径示例（请替换为你实际的图片URL） */
            background-image: url("./assets/1.jpg");
            background-size: cover;
            background-position: center;
            box-shadow: 0 25px 40px -18px rgba(0,0,0,0.2);
            /* 增加图片加载失败的兜底 */
            background-blend-mode: overlay;
        }

        /* 固定佣金卡片（调整字体主次） */
        .fee-promo-card {
            background: linear-gradient(105deg, #FEF9E6 0%, #FFF4E0 100%);
            border: 2px solid #F7B32B;
            padding: 40px 48px;
            margin: 20px 0 50px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            box-shadow: 0 12px 20px -12px rgba(0,0,0,0.08);
        }
        .fee-left {
            flex: 2;
        }
        .fee-left .super-badge {
            background: #2C7A5E;
            color: white;
            font-weight: 700;
            padding: 6px 18px;
            display: inline-block;
            border-radius: 40px;
            font-size: 0.75rem;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        .fee-left .fixed-fee {
            font-size: 2rem;
            font-weight: 600;
            color: #5e4b2b;
            line-height: 1.3;
            margin-bottom: 8px;
        }
        .fee-left .fixed-fee strong {
            font-size: 3.2rem;
            font-weight: 800;
            color: #C76E1C;
        }
        .fee-left .fee-detail {
            font-size: 1rem;
            color: #5e5a42;
            margin: 16px 0;
        }
        .fee-features {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            margin-top: 12px;
        }
        .fee-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }
        .fee-right {
            flex: 1;
            background: white;
            border-radius: 24px;
            padding: 28px 20px;
            text-align: center;
            box-shadow: 0 12px 18px -8px rgba(0,0,0,0.05);
        }

        /* Refinance 利率模块 */
        .refinance-showcase {
            background: #f4f9f6;
            border: 1px solid #d4e2da;
            padding: 40px 48px;
            margin: 30px 0 50px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        .refi-rate {
            text-align: center;
            flex: 1;
        }
        .refi-rate .rate {
            font-size: 3rem;
            font-weight: 800;
            color: #1e5f48;
        }
        .refi-rate .apr {
            font-size: 0.8rem;
            color: #6b8c7a;
        }
        .refi-text {
            flex: 2;
        }
        .refi-text h3 {
            font-size: 1.6rem;
            margin-bottom: 12px;
        }
        .savings-calc {
            background: white;
            padding: 16px 20px;
            border-radius: 12px;
            margin-top: 16px;
            display: inline-block;
            cursor: pointer;
        }
        .comparison-badge {
            background: #e9ecef;
            border-radius: 20px;
            padding: 10px 16px;
            display: inline-flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 12px;
            font-size: 0.9rem;
        }
        .comparison-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Cash Offer 模块 — 强调现金优势 */
        .cash-offer-section {
            background: #fafaf5;
            margin: 40px 0 50px;
            border: 1px solid #e0ede6;
        }
        .cash-offer-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            padding: 32px 48px;
        }
        .cash-offer-text {
            flex: 2;
        }
        .cash-offer-text .tag {
            background: #2C7A5E;
            color: white;
            display: inline-block;
            padding: 4px 14px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 16px;
            border-radius: 20px;
        }
        .cash-offer-text h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1b4b3a;
            margin-bottom: 12px;
        }
        .cash-offer-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 16px;
        }
        .cash-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        .cash-offer-cta {
            flex: 1;
            text-align: center;
            background: white;
            padding: 24px 20px;
            border: 1px solid #d4e2da;
        }

        /* 更多贷款方案 (仅介绍产品，不提佣金) */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin: 40px 0;
        }
        .service-card {
            border: 1px solid #e0ede6;
            padding: 28px 24px;
            background: #ffffff;
            transition: 0.2s;
        }
        .service-card:hover {
            box-shadow: 0 10px 25px -12px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        /* 咨询表单 */
        .contact-section {
            background: #fafefb;
            border: 1px solid #e0ede6;
            padding: 48px;
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        .contact-info {
            flex: 1;
        }
        .contact-form {
            flex: 1.2;
        }
        .contact-form input, .contact-form select, .contact-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #cbdcd3;
            border-radius: 12px;
            margin-bottom: 14px;
            font-family: inherit;
        }
        .fine-print {
            font-size: 0.7rem;
            color: #8aa89a;
            margin-top: 16px;
        }

        /* 全局费用说明通栏（页面底部小字） */
        .global-fee-disclosure {
            background: #f8f9fa;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
            padding: 12px 20px;
            margin: 30px 0 20px;
            text-align: center;
            font-size: 0.7rem;
            color: #6c7a6e;
            line-height: 1.4;
        }

        /* 页脚极简 */
        .footer {
            background: #0b2420;
            color: #bdd3cb;
            padding: 32px 0 28px;
            margin-top: 40px;
        }
        .footer-compliance {
            font-size: 0.7rem;
            text-align: center;
            border-top: 1px solid #2b4a3e;
            padding-top: 20px;
            margin-top: 20px;
        }

        /* 自定义弹窗样式 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal {
            background: white;
            border-radius: 16px;
            padding: 32px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            text-align: center;
            transform: translateY(-20px);
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active .modal {
            transform: translateY(0);
        }
        
        .modal h3 {
            color: #2C7A5E;
            font-size: 1.4rem;
            margin-bottom: 16px;
        }
        
        .modal p {
            margin-bottom: 24px;
            line-height: 1.6;
        }
        
        .modal-btn {
            background: #2C7A5E;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .modal-btn:hover {
            background: #1e5f48;
            transform: translateY(-2px);
        }

        @media (max-width: 900px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            .hero-content h2 {
                font-size: 2.2rem;
            }
            .container {
                padding: 0 20px;
            }
            .refinance-showcase, .fee-promo-card, .cash-offer-inner {
                flex-direction: column;
                padding: 28px;
            }
        }