Files
exchange-2.0/resources/views/pages/landing/en-1688-vip-landing-page-general-google.blade.php
T
2026-01-16 00:25:16 +08:00

1305 lines
67 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1688 Exclusive Sub-Account Payment | CIEF - No Alipay Required Complete E-invoice One-Stop Service</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
line-height: 1.6;
color: #333;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 80px 20px;
text-align: center;
}
.hero h1 {
font-size: 2.5em;
margin-bottom: 20px;
font-weight: 700;
}
.hero .subtitle {
font-size: 1.3em;
margin-bottom: 30px;
opacity: 0.95;
}
.hero .cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
margin-top: 40px;
}
.btn {
padding: 15px 40px;
font-size: 1.1em;
border: none;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s;
text-decoration: none;
display: inline-block;
}
.btn-primary {
background: white;
color: #667eea;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.btn-secondary {
background: rgba(255,255,255,0.2);
color: white;
border: 2px solid white;
}
.btn-secondary:hover {
background: rgba(255,255,255,0.3);
}
/* Comparison Section */
.comparison {
padding: 80px 20px;
background: #f8f9fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.section-title {
text-align: center;
font-size: 2.2em;
margin-bottom: 50px;
color: #2d3748;
}
.comparison-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
gap: 30px;
margin-top: 40px;
}
.comparison-card {
background: white;
border-radius: 12px;
padding: 40px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.comparison-card.highlight {
border: 3px solid #667eea;
position: relative;
}
.comparison-card.highlight::before {
content: "✨ Recommended";
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: #667eea;
color: white;
padding: 5px 20px;
border-radius: 20px;
font-size: 0.9em;
font-weight: 600;
}
.comparison-card h3 {
font-size: 1.8em;
margin-bottom: 20px;
color: #2d3748;
}
.comparison-card .model-type {
display: inline-block;
padding: 8px 16px;
background: #e2e8f0;
border-radius: 20px;
font-size: 0.9em;
margin-bottom: 20px;
color: #4a5568;
}
.comparison-card.highlight .model-type {
background: #667eea;
color: white;
}
.feature-list {
list-style: none;
margin: 20px 0;
}
.feature-list li {
padding: 12px 0;
border-bottom: 1px solid #e2e8f0;
display: flex;
align-items: flex-start;
}
.feature-list li:last-child {
border-bottom: none;
}
.feature-icon {
margin-right: 10px;
font-size: 1.2em;
flex-shrink: 0;
}
.icon-yes {
color: #48bb78;
}
.icon-no {
color: #f56565;
}
/* Problem Section */
.problem {
padding: 80px 20px;
background: white;
}
.problem-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-top: 40px;
}
.problem-card {
background: #fff5f5;
border-left: 4px solid #f56565;
padding: 30px;
border-radius: 8px;
}
.problem-card h3 {
color: #c53030;
margin-bottom: 15px;
font-size: 1.3em;
}
.problem-card blockquote {
font-style: italic;
color: #4a5568;
margin: 15px 0;
padding-left: 15px;
border-left: 3px solid #cbd5e0;
}
/* Invoice Example */
.invoice-example {
padding: 80px 20px;
background: #f8f9fa;
}
.invoice-comparison {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
gap: 30px;
margin-top: 40px;
}
.invoice-sample {
background: white;
border-radius: 12px;
padding: 30px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.invoice-sample.bad {
opacity: 0.7;
}
.invoice-sample h3 {
margin-bottom: 20px;
font-size: 1.5em;
}
.invoice-sample.bad h3 {
color: #f56565;
}
.invoice-sample.good h3 {
color: #48bb78;
}
.invoice-content {
background: #f7fafc;
padding: 20px;
border-radius: 8px;
font-family: 'Courier New', monospace;
font-size: 0.9em;
}
.invoice-content .line {
padding: 5px 0;
}
.invoice-content .header {
font-weight: bold;
color: #2d3748;
border-bottom: 2px solid #cbd5e0;
padding-bottom: 10px;
margin-bottom: 10px;
}
.invoice-content .items {
margin: 15px 0;
}
.invoice-content .item-row {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 10px;
padding: 8px 0;
border-bottom: 1px solid #e2e8f0;
}
.invoice-content .total {
font-weight: bold;
margin-top: 10px;
padding-top: 10px;
border-top: 2px solid #cbd5e0;
}
.missing-info {
background: #fff5f5;
color: #c53030;
padding: 15px;
border-radius: 8px;
margin-top: 15px;
border: 1px dashed #f56565;
}
/* Image Placeholder */
.image-placeholder {
background: #f7fafc;
border: 2px dashed #cbd5e0;
border-radius: 8px;
padding: 20px;
text-align: center;
color: #718096;
min-height: 300px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.image-placeholder img {
max-width: 100%;
height: auto;
border-radius: 4px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.image-placeholder .icon {
font-size: 4em;
margin-bottom: 15px;
opacity: 0.5;
}
/* Process Section */
.process {
padding: 80px 20px;
background: white;
}
.process-steps {
display: flex;
justify-content: space-between;
margin-top: 50px;
flex-wrap: wrap;
gap: 20px;
}
.step {
flex: 1;
min-width: 200px;
text-align: center;
padding: 30px 20px;
background: #f8f9fa;
border-radius: 12px;
position: relative;
}
.step::after {
content: "";
position: absolute;
right: -20px;
top: 50%;
transform: translateY(-50%);
font-size: 2em;
color: #cbd5e0;
}
.step:last-child::after {
display: none;
}
.step-number {
display: inline-block;
width: 50px;
height: 50px;
background: #667eea;
color: white;
border-radius: 50%;
line-height: 50px;
font-size: 1.5em;
font-weight: bold;
margin-bottom: 15px;
}
.step h3 {
margin: 15px 0;
color: #2d3748;
}
/* Benefits Section */
.benefits {
padding: 80px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.benefits .section-title {
color: white;
}
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}
.benefit-card {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.2);
}
.benefit-card .icon {
font-size: 3em;
margin-bottom: 15px;
}
.benefit-card h3 {
font-size: 1.3em;
margin-bottom: 10px;
}
/* CTA Section */
.cta-section {
padding: 80px 20px;
background: #2d3748;
color: white;
text-align: center;
}
.cta-section h2 {
font-size: 2.5em;
margin-bottom: 30px;
color: white;
font-weight: 700;
}
.cta-section h3 {
color: white;
font-weight: 700;
}
.cta-section .highlight-text {
font-size: 1.3em;
margin-bottom: 40px;
color: #fbd38d;
font-weight: 600;
}
/* Footer */
footer {
background: #1a202c;
color: #a0aec0;
padding: 40px 20px;
text-align: center;
}
footer a {
color: #667eea;
text-decoration: none;
}
/* Responsive */
/* Mobile Table Styles */
@media (max-width: 768px) {
/* Table mobile optimization */
table {
font-size: 0.85em !important;
min-width: 600px;
}
table th,
table td {
padding: 12px 8px !important;
font-size: 0.9em !important;
}
table th {
font-size: 0.95em !important;
min-width: 150px !important;
}
table td {
word-break: break-word;
}
table small {
font-size: 0.75em !important;
display: block;
margin-top: 4px;
}
}
@media (max-width: 480px) {
/* Extra small mobile - card layout suggestion */
table {
font-size: 0.8em !important;
min-width: 500px;
}
table th,
table td {
padding: 10px 6px !important;
font-size: 0.85em !important;
}
table th {
font-size: 0.9em !important;
min-width: 120px !important;
}
}
@media (max-width: 768px) {
.hero h1 {
font-size: 1.8em;
}
.hero .subtitle {
font-size: 1.1em;
}
.comparison-grid,
.invoice-comparison {
grid-template-columns: 1fr;
}
.process-steps {
flex-direction: column;
}
.step::after {
display: none;
}
}
</style>
</head>
<body>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>New 1688 Payment Solution: Exclusive Sub-Account Payment</h1>
<p class="subtitle">No Alipay Required Official Certified Complete Itemized E-invoice Compliant with 2026 E-invoice Requirements</p>
<div style="background: rgba(255,255,255,0.2); padding: 30px; border-radius: 12px; max-width: 950px; margin: 30px auto;">
<h3 style="margin-bottom: 25px; font-size: 1.5em;">🎯 CIEF's Unique Advantage: Exclusive Sub-Account Model</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; text-align: left;">
<div style="padding: 15px; background: rgba(255,255,255,0.15); border-radius: 8px;">
<strong style="font-size: 1.1em;">✅ We Provide Exclusive Sub-Account</strong><br>
<small style="opacity: 0.95; margin-top: 8px; display: block;">You use our sub-account to place orders, we pay through our main account</small>
</div>
<div style="padding: 15px; background: rgba(255,255,255,0.15); border-radius: 8px;">
<strong style="font-size: 1.1em;">✅ No Alipay Required</strong><br>
<small style="opacity: 0.95; margin-top: 8px; display: block;">No need to open Alipay or complete identity verification</small>
</div>
<div style="padding: 15px; background: rgba(255,255,255,0.15); border-radius: 8px;">
<strong style="font-size: 1.1em;">✅ Zero Freezing Risk</strong><br>
<small style="opacity: 0.95; margin-top: 8px; display: block;">Official certified payment method, absolutely no account freezing</small>
</div>
<div style="padding: 15px; background: rgba(255,255,255,0.15); border-radius: 8px;">
<strong style="font-size: 1.1em;">✅ Complete E-invoice</strong><br>
<small style="opacity: 0.95; margin-top: 8px; display: block;">Itemized goods details, direct stock-in for accounting</small>
</div>
</div>
</div>
<div style="background: rgba(255,255,255,0.15); padding: 25px; border-radius: 12px; max-width: 800px; margin: 30px auto; text-align: center;">
<h3 style="margin-bottom: 20px; font-size: 1.3em;">💡 Why Choose CIEF Sub-Account Model?</h3>
<div style="font-size: 1.05em; line-height: 1.8;">
<p style="opacity: 0.95; margin-bottom: 15px;">
<strong style="color: #a7f3d0;">CIEF Sub-Account's Unique Advantages:</strong><br>
<small style="opacity: 0.9; margin-top: 5px; display: block;">
We provide exclusive sub-accounts, no need to register 1688 yourself<br>
No Alipay account or identity verification required<br>
Provides complete itemized goods E-invoice<br>
Direct stock-in for accounting, meets audit requirements
</small>
</p>
</div>
</div>
<div class="cta-buttons">
<a href="https://gentle-toronto-bbndz4uacdz6.vapor-farm-a1.com/signup?tracking=GLPB1004" class="btn btn-primary" target="_blank">Get Your Sub-Account Now</a>
</div>
</div>
</section>
<!-- Comparison Section -->
<section style="padding: 80px 20px; background: white;" id="comparison">
<div class="container">
<h2 class="section-title">📊 CIEF Sub-Account Payment Service Details</h2>
<p style="text-align: center; font-size: 1.2em; color: #4a5568; margin-bottom: 50px;">
Exclusive Sub-Account Model: Complete E-invoice + Zero Alipay Risk
</p>
<div style="max-width: 1100px; margin: 0 auto;">
<div style="overflow-x: auto; -webkit-overflow-scrolling: touch;">
<table style="width: 100%; border-collapse: collapse; background: white; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border-radius: 12px; overflow: hidden; border: 2px solid #4a5568;">
<thead>
<tr>
<th style="padding: 20px; text-align: left; font-size: 1.1em; min-width: 200px; font-weight: 700; background: #4a5568; color: #ffffff; border: 1px solid #2d3748;">Service Features</th>
<th style="padding: 20px; text-align: center; font-size: 1.1em; min-width: 200px; font-weight: 700; background: #4a5568; color: #ffffff; border: 1px solid #2d3748;">Traditional Method</th>
<th style="padding: 20px; text-align: center; font-size: 1.1em; min-width: 200px; font-weight: 700; background: #48bb78; color: #ffffff; border: 1px solid #2d3748;">CIEF<br>Sub-Account Payment </th>
</tr>
</thead>
<tbody>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748; border: 1px solid #e2e8f0;">1688 Account</td>
<td style="padding: 20px; text-align: center; color: #c53030; border: 1px solid #e2e8f0;">Self-registration required</td>
<td style="padding: 20px; text-align: center; color: #22543d; background: #f0fff4; font-weight: 600; border: 1px solid #c6f6d5;">We provide exclusive sub-account </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748; border: 1px solid #e2e8f0;">Alipay Account</td>
<td style="padding: 20px; text-align: center; color: #c53030; border: 1px solid #e2e8f0;">Required<br><small style="color: #718096;">(Identity verification needed)</small></td>
<td style="padding: 20px; text-align: center; color: #22543d; background: #f0fff4; font-weight: 600; border: 1px solid #c6f6d5;">Not required </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748; border: 1px solid #e2e8f0;">Payment Method</td>
<td style="padding: 20px; text-align: center; border: 1px solid #e2e8f0;">Bind Alipay for auto-deduction</td>
<td style="padding: 20px; text-align: center; background: #f0fff4; font-weight: 600; border: 1px solid #c6f6d5;">We pay through main account </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748; border: 1px solid #e2e8f0;">Payment Limits</td>
<td style="padding: 20px; text-align: center; border: 1px solid #e2e8f0;">Unlimited</td>
<td style="padding: 20px; text-align: center; background: #f0fff4; font-weight: 600; border: 1px solid #c6f6d5;">Unlimited </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748; border: 1px solid #e2e8f0;">Invoice Type</td>
<td style="padding: 20px; text-align: center; color: #c53030; border: 1px solid #e2e8f0;">Payment receipt<br><small style="color: #718096;">(No goods details)</small></td>
<td style="padding: 20px; text-align: center; color: #22543d; background: #f0fff4; font-weight: 600; border: 1px solid #c6f6d5;">Complete E-invoice<br><small style="color: #22543d;">(Itemized goods details)</small> </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748; border: 1px solid #e2e8f0;">Stock-in Capability</td>
<td style="padding: 20px; text-align: center; color: #c53030; border: 1px solid #e2e8f0;">No<br><small style="color: #718096;">(Missing goods details)</small></td>
<td style="padding: 20px; text-align: center; color: #22543d; background: #f0fff4; font-weight: 600; border: 1px solid #c6f6d5;">Yes<br><small style="color: #22543d;">Direct accounting entry</small> </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748; border: 1px solid #e2e8f0;">2026 E-invoice Compliance</td>
<td style="padding: 20px; text-align: center; color: #c53030; border: 1px solid #e2e8f0;">Non-compliant<br><small style="color: #718096;">(Missing complete transaction info)</small></td>
<td style="padding: 20px; text-align: center; color: #22543d; background: #f0fff4; font-weight: 600; border: 1px solid #c6f6d5;">Fully compliant<br><small style="color: #22543d;">Auditor approved</small> </td>
</tr>
<tr style="border-bottom: 1px solid #e2e8f0;">
<td style="padding: 20px; font-weight: 600; color: #2d3748; border: 1px solid #e2e8f0;">Logistics Service</td>
<td style="padding: 20px; text-align: center; border: 1px solid #e2e8f0;">Not provided<br><small style="color: #718096;">(Need separate forwarder)</small></td>
<td style="padding: 20px; text-align: center; color: #22543d; background: #f0fff4; font-weight: 600; border: 1px solid #c6f6d5;">One-stop<br><small style="color: #22543d;">Payment + Logistics all-in-one</small> </td>
</tr>
<tr>
<td style="padding: 20px; font-weight: 600; color: #2d3748; border: 1px solid #e2e8f0;">Customer Support</td>
<td style="padding: 20px; text-align: center; border: 1px solid #e2e8f0;">English/Chinese</td>
<td style="padding: 20px; text-align: center; background: #f0fff4; font-weight: 600; border: 1px solid #c6f6d5;">Chinese/English/Malay<br><small style="color: #22543d;">Local team</small> </td>
</tr>
</tbody>
</table>
</div>
<div style="background: #f0fff4; padding: 35px; border-radius: 12px; margin-top: 50px; border-left: 5px solid #48bb78;">
<h3 style="color: #22543d; margin-bottom: 20px; font-size: 1.5em;">💡 Core Advantages of CIEF Sub-Account Payment</h3>
<div style="margin-top: 25px;">
<div>
<h4 style="color: #48bb78; margin-bottom: 12px; font-size: 1.2em;">Exclusive Sub-Account + Trade Model</h4>
<p style="color: #2d3748; line-height: 1.8;">
<strong>One-Stop Solution</strong><br>
Provides exclusive 1688 sub-account, no self-registration required<br>
No Alipay account or identity verification needed<br>
Provides complete itemized goods invoice (stock-in capable)<br>
Complies with 2026 E-invoice audit requirements<br>
Includes payment + logistics + customs clearance full service<br>
Local team with Chinese/English/Malay support
</p>
</div>
</div>
</div>
<div style="background: #fff5f5; padding: 30px; border-radius: 12px; margin-top: 30px; border-left: 5px solid #f56565;">
<h3 style="color: #c53030; margin-bottom: 15px; font-size: 1.3em;">⚠️ Important Reminder</h3>
<p style="color: #2d3748; line-height: 1.8; font-size: 1.05em;">
If your business requires:<br><br>
Complete itemized goods E-invoice (compliant with 2026 E-invoice mandate)<br>
Proper purchase invoice that can be stock-in for accounting<br>
Documents approved by auditors<br>
Convenient solution without opening Alipay<br>
One-stop service (payment + logistics + customs)<br><br>
Then CIEF's <strong>Sub-Account Payment + Trade Model</strong> is the ideal choice.
</p>
</div>
</div>
</div>
</section>
<!-- Pain Points Section -->
<section class="problem" id="pain-points">
<div class="container">
<h2 class="section-title">😰 5 Major Challenges in 1688 Payment</h2>
<p style="text-align: center; font-size: 1.2em; color: #4a5568; margin-bottom: 50px;">
Since 2021, paying on 1688 has become increasingly difficult...
</p>
<div class="problem-grid">
<div class="problem-card">
<h3>Challenge 1: Alipay Payment Limits</h3>
<blockquote>
"My Alipay has payment limits. When the amount is slightly larger, it gets restricted, and I can't complete the payment..."
</blockquote>
<p style="margin-top: 15px;"><strong>Issue:</strong> Alipay has limits on single transactions and daily payments, frequently restricting large purchases and affecting business operations.</p>
</div>
<div class="problem-card">
<h3>Challenge 2: Bank Transfer Cancelled</h3>
<blockquote>
"We used to be able to use bank transfers, but 1688 cancelled this option at the end of 2021, now it's completely unavailable..."
</blockquote>
<p style="margin-top: 15px;"><strong>Issue:</strong> 1688 platform no longer accepts international bank transfers, old methods completely ineffective.</p>
</div>
<div class="problem-card">
<h3>Challenge 3: Alipay Payment Service Risk</h3>
<blockquote>
"I used a payment service to help with payments, but heard many people's Alipay accounts got frozen, money can't be retrieved..."
</blockquote>
<p style="margin-top: 15px;"><strong>Issue:</strong> Surge in payment service demand led to mass account freezing, fund security becomes problematic.</p>
</div>
<div class="problem-card">
<h3>Challenge 4: No Proper E-invoice</h3>
<blockquote>
"I paid the money, but only received a payment receipt without goods details. My accountant says it can't be entered in the books..."
</blockquote>
<p style="margin-top: 15px;"><strong>Issue:</strong> Payment receipts only prove payment was made, not purchase invoices, cannot be stock-in or accounted for.</p>
</div>
<div class="problem-card">
<h3>Challenge 5: 2026 E-invoice Compliance</h3>
<blockquote>
"My auditor reminded me that E-invoice will be mandatory in 2026, current receipt format may not be accepted..."
</blockquote>
<p style="margin-top: 15px;"><strong>Issue:</strong> LHDN requires E-invoices to contain complete transaction details, simple receipts don't meet new regulations.</p>
</div>
<div class="problem-card">
<h3>Challenge 6: Transfer Limit Restrictions</h3>
<blockquote>
"My business is growing, but there are limits on each payment, need to split into multiple transfers, very troublesome..."
</blockquote>
<p style="margin-top: 15px;"><strong>Issue:</strong> Many payment methods have transaction count and amount limits, affecting business expansion.</p>
</div>
</div>
<div style="background: #fff5f5; padding: 40px; border-radius: 12px; margin-top: 50px; border: 2px dashed #f56565; text-align: center;">
<h3 style="color: #c53030; margin-bottom: 20px; font-size: 1.8em;">💡 Root Cause of Problems</h3>
<p style="font-size: 1.3em; color: #2d3748; line-height: 1.8;">
Traditional payment methods either <strong>cannot be used</strong> (bank transfer)<br>
or have <strong>high risk</strong> (payment service freezing)<br>
or have <strong>incomplete documentation</strong> (no proper invoice)
</p>
<p style="margin-top: 30px; font-size: 1.4em; color: #667eea; font-weight: bold;">
You Need a Brand New Solution
</p>
</div>
</div>
</section>
<!-- Invoice Example -->
<section class="invoice-example">
<div class="container">
<h2 class="section-title">📄 Why is Itemized Goods E-invoice So Important?</h2>
<p style="text-align: center; font-size: 1.2em; color: #4a5568; margin-bottom: 50px;">
What's the difference between a proper invoice vs a payment receipt?
</p>
<div class="invoice-comparison">
<!-- Bad Example - Image Placeholder -->
<div class="invoice-sample bad">
<h3>❌ Regular Payment Receipt (Cannot Use)</h3>
<div class="image-placeholder">
<img src="{{ asset('images/normal_invoice.webp') }}" alt="Normal Invoice">
</div>
<div class="missing-info">
<strong>❌ Accountant/Auditor Feedback:</strong><br><br>
<strong>"This is not a purchase invoice!"</strong><br><br>
• No goods description<br>
• No quantity information<br>
• No unit price<br>
• No specification details<br>
• Cannot stock-in to inventory<br>
• Does not meet E-invoice requirements<br>
• Will be questioned during audit
</div>
</div>
<!-- Good Example - Image Placeholder -->
<div class="invoice-sample good">
<h3>✅ CIEF Complete Itemized Goods E-invoice</h3>
<div class="image-placeholder" style="border-color: #48bb78;">
<img src="{{ asset('images/cief_e_invoice.webp') }}" alt="CIEF E-invoice">
</div>
<div style="background: #f0fff4; color: #22543d; padding: 15px; border-radius: 8px; margin-top: 15px; border: 1px solid #48bb78;">
<strong>✅ Accountant/Auditor Feedback:</strong><br><br>
<strong>"This is a standard purchase invoice!"</strong><br><br>
• Clear goods description<br>
• Definite quantity<br>
• Transparent unit price<br>
• Can directly stock-in<br>
• Meets E-invoice requirements<br>
• No audit issues
</div>
</div>
</div>
<div style="background: white; padding: 40px; border-radius: 12px; margin-top: 50px; box-shadow: 0 4px 15px rgba(0,0,0,0.1);">
<h3 style="color: #2d3748; margin-bottom: 30px; font-size: 1.6em; text-align: center;">💼 Why Does Your Business Need Itemized Goods Invoice?</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 30px;">
<div style="padding: 20px; background: #f8f9fa; border-radius: 8px;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">📊 Accounting Needs</h4>
<p style="color: #4a5568; line-height: 1.7;">
Accountants need to know what goods you purchased to properly categorize entries. Receipts with only amounts cannot meet accounting standards.
</p>
</div>
<div style="padding: 20px; background: #f8f9fa; border-radius: 8px;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">📦 Inventory Management</h4>
<p style="color: #4a5568; line-height: 1.7;">
Stock-in systems require goods details to enter inventory. Without item names, quantities, and unit prices, cannot operate in the system.
</p>
</div>
<div style="padding: 20px; background: #f8f9fa; border-radius: 8px;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">🔍 Audit Requirements</h4>
<p style="color: #4a5568; line-height: 1.7;">
Auditors need to see the correspondence between goods and payments. Payment receipts only prove "payment made", cannot prove "what was purchased".
</p>
</div>
<div style="padding: 20px; background: #f8f9fa; border-radius: 8px;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">⚖️ 2026 Compliance</h4>
<p style="color: #4a5568; line-height: 1.7;">
LHDN explicitly requires E-invoices to contain complete transaction information. Simple payment receipts don't meet government's 2026 new regulations.
</p>
</div>
<div style="padding: 20px; background: #f8f9fa; border-radius: 8px;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">🛡️ Risk Management</h4>
<p style="color: #4a5568; line-height: 1.7;">
Detailed goods information allows tracing of each transaction. When problems arise, there's documentation, reducing business risk.
</p>
</div>
<div style="padding: 20px; background: #f8f9fa; border-radius: 8px;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">📈 Business Analysis</h4>
<p style="color: #4a5568; line-height: 1.7;">
Complete purchase records help you analyze which products sell well, which suppliers are reliable, making better business decisions.
</p>
</div>
</div>
</div>
<div style="background: #fff5f5; padding: 30px; border-radius: 12px; margin-top: 50px; border: 2px solid #f56565; text-align: center;">
<h3 style="color: #c53030; margin-bottom: 15px; font-size: 1.5em;">⚠️ Real Case Warning</h3>
<p style="font-size: 1.2em; color: #2d3748; line-height: 1.8;">
"Our company used payment receipts for accounting for over a year. During last year's audit, we were asked to supplement complete purchase invoices.<br>
Because we couldn't produce goods details, not only did we have to reorganize all documents, we were also fined.<br>
Since then, we only use invoices with complete goods details."<br><br>
<small style="color: #718096;"> Lesson learned from an e-commerce company owner</small>
</p>
</div>
</div>
</section>
<!-- Solution Section -->
<section style="padding: 80px 20px; background: #f0fff4;">
<div class="container">
<h2 class="section-title"> CIEF Exchange's Solution</h2>
<p style="text-align: center; font-size: 1.3em; color: #4a5568; margin-bottom: 50px;">
<strong>Trade Model</strong> = Real Trading = Complete E-invoice
</p>
<div style="max-width: 900px; margin: 0 auto; background: white; padding: 40px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1);">
<h3 style="color: #22543d; margin-bottom: 30px; font-size: 1.6em; text-align: center;">🎯 How We Solve All Pain Points?</h3>
<div style="display: grid; gap: 25px;">
<div style="display: flex; gap: 20px; align-items: flex-start;">
<div style="flex-shrink: 0; width: 50px; height: 50px; background: #48bb78; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold;">✓</div>
<div>
<h4 style="color: #2d3748; margin-bottom: 8px; font-size: 1.2em;">No Need to Open Alipay Account</h4>
<p style="color: #4a5568; line-height: 1.7;">You only need a CIEF Exchange account, our system will help you complete payments on 1688 platform. No need for Chinese bank account, no identity verification required.</p>
</div>
</div>
<div style="display: flex; gap: 20px; align-items: flex-start;">
<div style="flex-shrink: 0; width: 50px; height: 50px; background: #48bb78; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold;">✓</div>
<div>
<h4 style="color: #2d3748; margin-bottom: 8px; font-size: 1.2em;">No Account Freezing Risk</h4>
<p style="color: #4a5568; line-height: 1.7;">We use trade model, not payment service. All transactions are legal and compliant, absolutely no account freezing issues.</p>
</div>
</div>
<div style="display: flex; gap: 20px; align-items: flex-start;">
<div style="flex-shrink: 0; width: 50px; height: 50px; background: #48bb78; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold;">✓</div>
<div>
<h4 style="color: #2d3748; margin-bottom: 8px; font-size: 1.2em;">Complete Itemized Goods E-invoice</h4>
<p style="color: #4a5568; line-height: 1.7;">Because it's real trade (we purchase then sell to you), the invoice contains complete goods information: item names, quantities, unit prices, totals, all itemized.</p>
</div>
</div>
<div style="display: flex; gap: 20px; align-items: flex-start;">
<div style="flex-shrink: 0; width: 50px; height: 50px; background: #48bb78; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold;"></div>
<div>
<h4 style="color: #2d3748; margin-bottom: 8px; font-size: 1.2em;">Meets Audit and 2026 Requirements</h4>
<p style="color: #4a5568; line-height: 1.7;">Our E-invoices have been verified by Malaysian accounting firms, meet LHDN requirements, can be directly stock-in and accounted for, passes audit.</p>
</div>
</div>
<div style="display: flex; gap: 20px; align-items: flex-start;">
<div style="flex-shrink: 0; width: 50px; height: 50px; background: #48bb78; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold;"></div>
<div>
<h4 style="color: #2d3748; margin-bottom: 8px; font-size: 1.2em;">No Transfer Limits</h4>
<p style="color: #4a5568; line-height: 1.7;">No limit on order quantity, no transfer amount limit, no payment frequency limit. As your business grows, our service keeps up.</p>
</div>
</div>
<div style="display: flex; gap: 20px; align-items: flex-start;">
<div style="flex-shrink: 0; width: 50px; height: 50px; background: #48bb78; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5em; font-weight: bold;"></div>
<div>
<h4 style="color: #2d3748; margin-bottom: 8px; font-size: 1.2em;">Fully Automated Online System</h4>
<p style="color: #4a5568; line-height: 1.7;">Malaysia's first fully automated online system, all transaction records automatically saved, can download invoices and purchase orders anytime.</p>
</div>
</div>
</div>
</div>
<div style="text-align: center; margin-top: 50px;">
<a href="https://gentle-toronto-bbndz4uacdz6.vapor-farm-a1.com/signup?tracking=GLPB2004" class="btn btn-primary" style="padding: 18px 50px; font-size: 1.2em;" target="_blank">Get Your Sub-Account Now</a>
</div>
</div>
</section>
<!-- Process Section -->
<section class="process" id="how-it-works">
<div class="container">
<h2 class="section-title">🚀 How to Use CIEF Sub-Account for 1688 Payment?</h2>
<p style="text-align: center; font-size: 1.2em; color: #4a5568; margin-bottom: 30px;">
Exclusive Sub-Account Model, Simple and Convenient
</p>
<div class="process-steps">
<div class="step">
<div class="step-number">1</div>
<h3>Register Account</h3>
<p>Register on CIEF Exchange<br>Activate account<br>Submit identity verification</p>
</div>
<div class="step">
<div class="step-number">2</div>
<h3>Open Sub-Account</h3>
<p>Contact customer service<br>Receive exclusive<br>1688 sub-account within 24 hours</p>
</div>
<div class="step">
<div class="step-number">3</div>
<h3>Place Orders</h3>
<p>Use our sub-account<br>Browse and order on 1688<br>Choose "Payment"</p>
</div>
<div class="step">
<div class="step-number">4</div>
<h3>You Settle</h3>
<p>Pay MYR to CIEF<br>Calculate by real-time rate<br>Transparent and open</p>
</div>
<div class="step">
<div class="step-number">5</div>
<h3>We Pay</h3>
<p>CIEF main account<br>Pays for you uniformly<br>Completed within 1 working day</p>
</div>
<div class="step">
<div class="step-number">6</div>
<h3>Get Invoice</h3>
<p>Auto-generate E-invoice<br>Complete goods details<br>Direct stock-in capability</p>
</div>
</div>
<div style="background: #edf2f7; padding: 40px; border-radius: 12px; margin-top: 60px;">
<h3 style="color: #2d3748; margin-bottom: 30px; font-size: 1.6em; text-align: center;">📋 Detailed Operation Process</h3>
<div style="max-width: 900px; margin: 0 auto;">
<div style="background: white; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">Step 1: Account Registration & Sub-Account Opening (One-time only)</h4>
<ol style="color: #4a5568; line-height: 2; padding-left: 20px;">
<li>Visit <strong>https://exchange.cief-malaysia.com/</strong> to register account</li>
<li>Contact customer service via WhatsApp "I want to apply for 1688 sub-account"</li>
<li>Provide "Email registered on Exchange, company name, imported goods, estimated monthly purchase volume (RMB)"</li>
<li>Customer service will open exclusive 1688 sub-account within 24 hours</li>
<li>Receive sub-account login credentials</li>
</ol>
</div>
<div style="background: white; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">Step 2: Use Sub-Account to Place Orders on 1688</h4>
<ol style="color: #4a5568; line-height: 2; padding-left: 20px;">
<li>Log in to www.1688.com using CIEF-provided sub-account</li>
<li>Browse products, add to shopping cart</li>
<li>Confirm order information and delivery address (our China warehouse address)</li>
<li>Submit order, choose "Payment" payment method</li>
<li>If red envelope discounts appear, note that this service does not support using red envelopes</li>
</ol>
</div>
<div style="background: white; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">Step 3: Payment and Settlement</h4>
<ol style="color: #4a5568; line-height: 2; padding-left: 20px;">
<li>After placing order, log in to CIEF Exchange system to check amount payable</li>
<li>System displays real-time exchange rate and MYR amount</li>
<li>Transfer MYR to CIEF bank account</li>
<li>Upload transfer receipt</li>
<li>After CIEF confirms receipt, pays for you through main account uniformly</li>
<li>Payment completed, supplier starts shipping</li>
<li>Log in to system to download complete itemized goods E-INVOICE</li>
<li>E-INVOICE can be directly used for stock-in and accounting</li>
</ol>
</div>
<div style="background: white; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h4 style="color: #667eea; margin-bottom: 15px; font-size: 1.2em;">Step 4: Receive Goods & Logistics Invoice</h4>
<ol style="color: #4a5568; line-height: 2; padding-left: 20px;">
<li>Supplier ships to our China warehouse</li>
<li>You can choose sea freight/air freight and other logistics options to Malaysia</li>
<li>Log in to system to download complete shipping E-INVOICE</li>
</ol>
</div>
<div style="background: white; padding: 25px; border-radius: 8px; border-left: 4px solid #48bb78;">
<h4 style="color: #48bb78; margin-bottom: 15px; font-size: 1.2em;">💡 CIEF Sub-Account Payment Process Advantages</h4>
<div style="padding: 20px; background: #f0fff4; border-radius: 8px; margin-top: 15px;">
<h5 style="color: #22543d; margin-bottom: 15px; font-size: 1.1em;">Why Choose Sub-Account Model?</h5>
<ul style="color: #2d3748; line-height: 2; padding-left: 20px;">
<li><strong>No Need to Register 1688 Yourself:</strong> We provide exclusive sub-account, ready to use upon opening</li>
<li><strong>Zero Alipay Risk:</strong> No need for Alipay account or identity verification</li>
<li><strong>Order First, Settle Later:</strong> You select and order products, we pay for you</li>
<li><strong>Complete Invoice Guarantee:</strong> Every transaction has complete itemized goods E-invoice</li>
<li><strong>One-Stop Service:</strong> From payment to logistics, we handle everything</li>
</ul>
</div>
</div>
<div style="background: #fff5f5; padding: 20px; border-radius: 8px; margin-top: 20px; border: 1px dashed #f56565;">
<h4 style="color: #c53030; margin-bottom: 12px; font-size: 1.1em;">⚠️ Important Notes</h4>
<ul style="color: #4a5568; line-height: 2; padding-left: 20px; font-size: 0.95em;">
<li>1688 platform red envelope discounts cannot be used in this service</li>
<li>Before ordering, please check prohibited goods list to avoid warehouse rejection</li>
<li>When "Payment" option appears on payment page, must select it</li>
<li>If supplier doesn't receive payment, contact us within 14 working days</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Benefits Section -->
<section class="benefits">
<div class="container">
<h2 class="section-title">🎯 Core Advantages of Choosing CIEF</h2>
<div class="benefits-grid">
<div class="benefit-card">
<div class="icon">📝</div>
<h3>Real Trade Invoice</h3>
<p>Based on real buying and selling transactions, not just payment receipts</p>
</div>
<div class="benefit-card">
<div class="icon">📋</div>
<h3>Complete Goods Details</h3>
<p>Item names, specifications, quantities, unit prices, all itemized</p>
</div>
<div class="benefit-card">
<div class="icon"></div>
<h3>Direct Accounting Use</h3>
<p>Meets accounting standards, can directly stock-in for accounting</p>
</div>
<div class="benefit-card">
<div class="icon">🔐</div>
<h3>Pass Audit</h3>
<p>Complete transaction records, auditor approved</p>
</div>
<div class="benefit-card">
<div class="icon"></div>
<h3>2026 Compliant</h3>
<p>Meets LHDN E-invoice new regulation requirements</p>
</div>
<div class="benefit-card">
<div class="icon">💰</div>
<h3>Competitive Rates</h3>
<p>Trade model + preferential rates, high cost-effectiveness</p>
</div>
<div class="benefit-card">
<div class="icon">🚚</div>
<h3>One-Stop Service</h3>
<p>Payment + procurement + logistics + invoice, all-inclusive</p>
</div>
<div class="benefit-card">
<div class="icon">⏱️</div>
<h3>10 Years Experience</h3>
<p>Malaysia's first fully automated online system operation</p>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section style="padding: 80px 20px; background: white;">
<div class="container">
<h2 class="section-title">❓ Frequently Asked Questions</h2>
<div style="max-width: 900px; margin: 0 auto;">
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q1: What is "Sub-Account Payment"?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> We provide <strong>1688 exclusive sub-account</strong> for your use. You use this sub-account to place orders on 1688, then our main account pays for you uniformly.<br><br>
<strong>Core Advantages:</strong><br>
• You don't need to register 1688 account yourself<br>
No need for Alipay account or identity verification<br>
Our main account is official corporate account, safe and reliable<br>
Provides complete itemized goods E-invoice<br><br>
Simply put: We provide the account, you just place orders, we pay for you and provide official invoice.
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q2: What are the main advantages of CIEF Sub-Account Payment?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> CIEF sub-account payment is especially suitable for businesses requiring <strong>complete financial documents</strong>:<br><br>
<strong>Complete itemized goods E-invoice</strong> (compliant with 2026 E-invoice mandate)<br>
<strong>Proper purchase invoice that can be stock-in</strong> (accountant approved)<br>
<strong>Documents that pass audit</strong> (complete transaction records)<br>
<strong>Zero Alipay risk</strong> (no account opening or identity verification)<br>
<strong>One-stop service</strong> (payment + logistics + customs)<br>
<strong>Local team support</strong> (Chinese/English/Malay)<br><br>
We use trade model, purchasing from Chinese suppliers then selling to you, thus able to provide complete itemized goods invoice, which remittance services cannot do.
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q3: Why can CIEF provide itemized goods invoice?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> This is the <strong>essence of business model</strong>:<br><br>
<strong>Remittance Platform Model:</strong><br>
Only responsible for fund transfer<br>
Customers purchase directly from Chinese suppliers<br>
Can only provide payment receipt<br><br>
<strong>If your import volume is large, full container purchase, and your company meets import qualifications, then using yourself as consignee/importer, choosing remittance platform is a very suitable option.</strong><br><br>
<strong>CIEF Trade Model:</strong><br>
We are trading company, purchasing from China then selling to you<br>
This is real buying and selling transaction<br>
We issue sales invoice, naturally including goods details<br><br>
<strong>Analogy:</strong> Remittance platform is like a bank (helps you transfer money), CIEF is like purchasing agent (buys goods to sell to you).
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q4: Is itemized goods invoice really that important?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> <strong>Very important!</strong> Especially from 2026 onwards, Malaysia will fully implement E-invoice.<br><br>
<strong>Accounting Needs:</strong><br>
Must have goods details when stock-in to inventory<br>
Receipts with only amounts cannot be operated in system<br><br>
<strong>Audit Requirements:</strong><br>
Auditors need to see correspondence between goods and payments<br>
Payment receipts only prove "payment made", cannot prove "what was purchased"<br><br>
<strong>2026 LHDN New Rules:</strong><br>
E-invoices must contain complete transaction information<br>
Simple payment receipts don't meet new regulations<br><br>
Many clients had to supplement documents during audit due to lack of proper invoices, some were even fined.
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q5: How long does it take to open a sub-account?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> <strong>Completed within 24 hours!</strong><br><br>
Process:<br>
1. Register account at https://exchange.cief-malaysia.com/<br>
2. Contact customer service via WhatsApp "I want to apply for 1688 sub-account"<br>
3. Provide registered email on Exchange, company name, imported goods, estimated monthly purchase volume (RMB)<br>
4. Customer service opens exclusive sub-account within 24 hours<br>
5. Start using after receiving login credentials<br><br>
Very fast and simple!
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q6: Are there payment amount limits?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> <strong>No limits!</strong><br>
• Minimum transaction: CNY 1<br>
• Maximum amount: Unlimited<br>
• Order quantity: Unlimited<br>
• Payment frequency: Unlimited<br><br>
As your business grows, our service keeps up completely.
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q7: Besides 1688 payment, what other services do you provide?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> CIEF is <strong>one-stop China-Malaysia trade service</strong>:<br><br>
<strong>Payment Services:</strong><br>
• 1688 sub-account payment<br>
• RMB transfer (personal/corporate account)<br>
• USD transfer<br>
• Alipay transfer<br><br>
<strong>Logistics Services:</strong><br>
• Sea freight LCL (direct/consolidation/tax refund)<br>
• Air freight<br>
• Full Container Load (FCL)<br>
• Customs declaration and clearance<br><br>
<strong>From payment to receiving goods, we handle everything!</strong>
</p>
</div>
<div style="background: #f8f9fa; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #667eea;">
<h3 style="color: #2d3748; margin-bottom: 10px;">Q8: Will suppliers know if I use a sub-account to place orders?</h3>
<p style="color: #4a5568; line-height: 1.8;">
<strong>A:</strong> Suppliers only see orders and payments, <strong>won't affect your purchasing</strong>.<br><br>
Sub-account looks like normal 1688 account<br>
Suppliers receive normal orders and payments<br>
Won't affect prices or service<br>
• Goods ship normally to warehouse address<br><br>
The entire process is exactly the same as regular orders for suppliers.
</p>
</div>
<div style="background: #f0fff4; padding: 25px; border-radius: 8px; margin-bottom: 20px; border-left: 4px solid #48bb78;">
<h3 style="color: #22543d; margin-bottom: 10px;">💡 Who is CIEF Sub-Account Payment Suitable For?</h3>
<p style="color: #2d3748; line-height: 1.8;">
<strong>CIEF is most suitable for the following businesses:</strong><br><br>
✅ Businesses requiring complete itemized goods E-invoice<br>
✅ Need to comply with 2026 E-invoice mandate<br>
✅ Don't want to open Alipay account (or cannot)<br>
Need one-stop service (payment + logistics + customs)<br>
Value local team support and Chinese service<br>
Want zero account freezing risk safe solution<br>
Need purchase invoice that can directly stock-in<br><br>
<strong>If any of the above points match your needs, CIEF is the ideal choice!</strong>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="cta-section" id="contact">
<div class="container">
<h2>Ready to Use Exclusive Sub-Account for 1688 Purchasing?</h2>
<p class="highlight-text">No Alipay Required Complete E-invoice One-Stop Service 24-Hour Opening</p>
<div style="background: rgba(255,255,255,0.1); padding: 30px; border-radius: 12px; max-width: 750px; margin: 30px auto; text-align: left;">
<h3 style="margin-bottom: 20px; font-size: 1.3em; text-align: center;">🎁 Register Now and Get:</h3>
<ul style="list-style: none; font-size: 1.1em; line-height: 2;">
<li> Exclusive 1688 sub-account (24-hour opening)</li>
<li> No Alipay identity verification required</li>
<li> Complete itemized goods E-invoice (stock-in capable)</li>
<li> Compliant with 2026 E-invoice mandate</li>
<li> One-stop service: Payment + Logistics + Customs</li>
<li> Local team Chinese customer service support</li>
</ul>
</div>
<div style="background: rgba(255,255,255,0.15); padding: 25px; border-radius: 12px; max-width: 700px; margin: 30px auto;">
<p style="font-size: 1.2em; line-height: 1.7; margin: 0;">
<strong style="color: #fbd38d;">💡 Special Reminder:</strong><br>
If you currently use other payment methods but <strong>lack itemized goods invoice</strong>,<br>
welcome to switch to CIEF sub-account model, get complete E-invoice!
</p>
</div>
<div style="margin: 40px 0;">
<a href="https://gentle-toronto-bbndz4uacdz6.vapor-farm-a1.com/signup?tracking=GLPB3004" class="btn btn-primary" style="margin: 10px;" target="_blank">Get Your Sub-Account Now</a>
</div>
<p style="margin-top: 20px; font-size: 0.95em; opacity: 0.9;">
🕐 Customer Service Hours: Monday to Friday 9:00 AM - 6:00 PM (Malaysia Time)<br>
📍 Malaysia's First Fully Automated Online System Operation | 10 Years China-Malaysia Freight Experience
</p>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>&copy; 2025 CIEF Exchange Sdn Bhd. All rights reserved.</p>
<p style="margin-top: 10px;">Malaysia's First Fully Automated Online System Operation | 10 Years China-Malaysia Freight Experience | Legal Trade Model</p>
<p style="margin-top: 20px; font-size: 0.9em; color: #718096;">
Note: CIEF Exchange operates using trade model, providing authentic E-invoices that meet LHDN requirements, ensuring compliance with 2026 E-invoice mandate.
</p>
</div>
</footer>
</body>
</html>