   /* 全局重置与基础 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        body {
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.5;
            padding: 20px 0 40px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* 顶部导航 (仿 Naukri) */
        .navbar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            background: #fff;
            padding: 12px 20px;
            border-radius: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            margin-bottom: 30px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: 700;
            font-size: 1.6rem;
            color: #2b55d9;
        }
        .nav-logo span {
            color: #1e293b;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #334155;
        }
        .nav-links a {
            text-decoration: none;
            color: inherit;
        }
        .nav-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .btn-outline {
            border: 1px solid #2563eb;
            color: #2563eb;
            background: transparent;
            padding: 6px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
        }
        .btn-primary {
            background: #2563eb;
            color: #fff;
            border: none;
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
        }
        .btn-primary:hover { background: #1d4ed8; }

        /* 头部 Hero */
        .hero {
            background: #fff;
            border-radius: 32px;
            padding: 24px 24px 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            margin-bottom: 40px;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 24px;
            align-items: center;
        }
        .hero-text h1 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            color: #0f172a;
            margin-bottom: 10px;
        }
        .hero-text .highlight-blue {
            color: #2563eb;
        }
        .hero-text .sub {
            font-size: 1.1rem;
            color: #475569;
            margin-bottom: 20px;
        }
        .hero-list {
            list-style: none;
            margin: 20px 0 25px;
        }
        .hero-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
        .hero-list .icon-wrap {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            color: #2563eb;
            font-size: 1.2rem;
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 10px;
        }
        .btn-whatsapp {
            background: #25d366;
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn-contact {
            background: #fff;
            border: 1px solid #2563eb;
            color: #2563eb;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
        }

        .hero-visual {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .hero-visual img {
            max-width: 100%;
            height: auto;
            border-radius: 24px;
            max-height: 400px;
            object-fit: cover;
            width: 100%;
        }
        .earnings-card {
            background: #f1f5f9;
            border-radius: 24px;
            padding: 16px 20px;
            margin-top: 16px;
            width: 100%;
        }
        .earnings-card .top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .earnings-card .amount {
            font-size: 2rem;
            font-weight: 700;
            color: #0f172a;
        }
        .badge-paid {
            background: #dcfce7;
            color: #16a34a;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .history-item {
            display: flex;
            justify-content: space-between;
            padding: 6px 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.9rem;
        }
        .view-all {
            color: #2563eb;
            font-weight: 600;
            text-align: right;
            display: block;
            margin-top: 8px;
            font-size: 0.9rem;
        }

        /* 信任条 */
        .trust-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            background: #fff;
            padding: 20px;
            border-radius: 30px;
            margin: 30px 0 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .trust-item .icon {
            background: #eef2ff;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 1.2rem;
        }

        /* 职位卡片 (popular jobs) */
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .section-title a {
            font-size: 1rem;
            font-weight: 600;
            color: #2563eb;
            text-decoration: none;
        }
        .job-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 50px;
        }
        .job-card {
            background: #fff;
            border-radius: 24px;
            padding: 24px 18px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            text-align: center;
            transition: 0.2s;
            border: 1px solid #f1f5f9;
        }
        .job-card .icon-lg {
            font-size: 2.4rem;
            margin-bottom: 6px;
            color: #2563eb;
        }
        .job-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
        }
        .job-card .sub {
            color: #475569;
            font-size: 0.85rem;
        }
        .job-card .price {
            font-weight: 700;
            font-size: 0.95rem;
            margin: 12px 0 6px;
        }
        .job-card .tags {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 0.75rem;
            color: #64748b;
        }
        .btn-apply {
            display: block;
            margin-top: 18px;
            border: 1px solid #2563eb;
            color: #2563eb;
            background: transparent;
            padding: 8px 0;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .btn-apply:hover { background: #f1f5f9; }

        /* 步骤 How it works */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            background: #fff;
            border-radius: 30px;
            padding: 30px 20px;
            margin: 30px 0 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
            text-align: center;
        }
        .step-item .num-circle {
            background: #dbeafe;
            color: #2563eb;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 12px;
            font-size: 1.2rem;
        }
        .step-item h4 {
            font-weight: 700;
            font-size: 1rem;
        }
        .step-item p {
            font-size: 0.85rem;
            color: #475569;
            padding: 0 8px;
        }

        /* 为什么选我们 (why choose) */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            background: #fff;
            border-radius: 30px;
            padding: 30px 20px;
            margin: 20px 0 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
            text-align: center;
        }
        .why-item .icon {
            font-size: 2rem;
            margin-bottom: 8px;
            color: #2563eb;
        }
        .why-item h4 {
            font-weight: 700;
            font-size: 0.95rem;
        }
        .why-item p {
            font-size: 0.8rem;
            color: #64748b;
        }

        /* 做的工作 (what you will do) */
        .work-do-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            background: #fff;
            border-radius: 30px;
            padding: 24px;
            margin: 20px 0 40px;
            align-items: center;
        }
        .work-do-list {
            list-style: none;
        }
        .work-do-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
            font-weight: 500;
        }
        .work-do-list .check {
            color: #2563eb;
            font-weight: 700;
            font-size: 1.2rem;
        }
        .work-do-img img {
            width: 100%;
            border-radius: 24px;
            max-height: 280px;
            object-fit: cover;
        }
        .task-earnings {
            background: #f8fafc;
            border-radius: 20px;
            padding: 12px 16px;
            margin-top: 12px;
        }
        .task-earnings .row {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            padding: 6px 0;
            border-bottom: 1px solid #e2e8f0;
        }

        /* 会员说 (testimonials) */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 20px 0 40px;
        }
        .testi-card {
            background: #fff;
            padding: 20px;
            border-radius: 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            text-align: center;
            border: 1px solid #f1f5f9;
        }
        .testi-card img {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 8px;
        }
        .testi-card .quote {
            font-style: italic;
            font-size: 0.95rem;
            color: #1e293b;
        }
        .testi-card .name {
            font-weight: 700;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        .stars {
            color: #fbbf24;
            letter-spacing: 2px;
        }

        /* 底部 CTA 大条 */
        .footer-cta {
            background: #2563eb;
            border-radius: 32px;
            padding: 30px 28px;
            color: #fff;
            display: grid;
            grid-template-columns: 1.3fr 0.8fr;
            gap: 30px;
            margin: 40px 0 30px;
            align-items: center;
        }
        .footer-cta h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .footer-cta ul {
            list-style: none;
            columns: 2;
            column-gap: 40px;
            margin: 16px 0;
        }
        .footer-cta ul li {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        .footer-cta .btn-whatsapp-lg {
            background: #fff;
            color: #2563eb;
            border: none;
            padding: 12px 30px;
            border-radius: 40px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
        }
        .footer-cta img {
            max-width: 100%;
            border-radius: 24px;
            max-height: 240px;
            object-fit: cover;
        }

        /* 底部信任条 (再次) */
        .bottom-trust {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            background: #fff;
            padding: 20px;
            border-radius: 30px;
        }
        .bottom-trust .item {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        /* 响应式 */
        @media (max-width: 1024px) {
            .job-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-grid { grid-template-columns: 1fr; }
            .steps-container, .why-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-cta { grid-template-columns: 1fr; }
            .work-do-grid { grid-template-columns: 1fr; }
            .trust-bar { grid-template-columns: repeat(2, 1fr); }
            .bottom-trust { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            .navbar { flex-direction: column; gap: 12px; align-items: stretch; text-align: center; }
            .nav-links { flex-wrap: wrap; justify-content: center; }
            .nav-actions { justify-content: center; }
            .job-grid { grid-template-columns: 1fr; }
            .steps-container, .why-grid { grid-template-columns: 1fr; }
            .testimonial-grid { grid-template-columns: 1fr; }
            .trust-bar { grid-template-columns: 1fr; }
            .bottom-trust { grid-template-columns: 1fr; }
            .hero-text h1 { font-size: 2rem; }
            .footer-cta ul { columns: 1; }
        }