<style>
/* --- SCOPED CSS FOR WEALTHY LAND THEME --- */
.wl-container {
--wl-navy: #0F172A; /* Deep Navy */
--wl-blue: #1E3A8A; /* Bright Navy */
--wl-gold: #D4AF37; /* Luxury Gold */
--wl-gold-hover: #B59326;
--wl-beige: #F5F5F0; /* Light Background */
--wl-white: #FFFFFF;
--wl-text: #334155;
font-family: 'Inter', sans-serif; /* Uses Theme Font */
color: var(--wl-text);
line-height: 1.6;
width: 100%;
max-width: 100%;
overflow-x: hidden;
}
/* UTILITIES */
.wl-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.wl-btn {
display: inline-block;
padding: 12px 28px;
border-radius: 4px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
text-align: center;
cursor: pointer;
}
.wl-btn-primary {
background-color: var(--wl-blue);
color: white;
border: 2px solid var(--wl-blue);
}
.wl-btn-primary:hover {
background-color: var(--wl-navy);
border-color: var(--wl-navy);
}
.wl-btn-gold {
background-color: var(--wl-gold);
color: var(--wl-navy);
border: 2px solid var(--wl-gold);
}
.wl-btn-gold:hover {
background-color: var(--wl-gold-hover);
border-color: var(--wl-gold-hover);
}
.wl-btn-outline {
background-color: transparent;
color: white;
border: 2px solid white;
}
.wl-btn-outline:hover {
background-color: white;
color: var(--wl-navy);
}
/* 1. HERO SECTION */
.wl-hero {
position: relative;
height: 80vh; /* Adjust height */
min-height: 500px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80'); /* Replace with your image */
background-size: cover;
background-position: center;
}
.wl-hero-overlay {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(15, 23, 42, 0.6); /* Dark Navy Overlay */
z-index: 1;
}
.wl-hero-content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 20px;
}
.wl-hero h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
margin-bottom: 1rem;
line-height: 1.2;
}
.wl-hero p {
font-size: 1.25rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.wl-hero-btns {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
/* 2. FEATURED TOPICS (ASYMMETRICAL GRID) */
.wl-section {
padding: 60px 0;
}
.wl-section-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 30px;
border-bottom: 2px solid var(--wl-beige);
padding-bottom: 10px;
}
.wl-grid-topics {
display: grid;
grid-template-columns: 1.5fr 1fr; /* 60% Left, 40% Right */
gap: 20px;
height: auto;
}
/* Business Card (Left) */
.wl-card-business {
position: relative;
background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&q=80');
background-size: cover;
border-radius: 8px;
overflow: hidden;
min-height: 400px;
display: flex;
align-items: flex-end;
}
.wl-card-overlay {
background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
padding: 30px;
width: 100%;
color: white;
}
/* Personal Cards (Right) */
.wl-col-personal {
display: flex;
flex-direction: column;
gap: 20px;
}
.wl-card-small {
background: var(--wl-white);
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 25px;
flex: 1;
display: flex;
align-items: center;
gap: 15px;
transition: transform 0.2s;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.wl-card-small:hover {
transform: translateY(-3px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
border-color: var(--wl-gold);
}
.wl-icon-circle {
background: var(--wl-beige);
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
color: var(--wl-navy);
flex-shrink: 0;
}
/* 3. ECOSYSTEM (5 COLUMNS) */
.wl-bg-beige {
background-color: var(--wl-beige);
}
.wl-grid-5 {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 20px;
}
.wl-eco-card {
background: white;
padding: 25px 15px;
border-radius: 8px;
text-align: center;
transition: 0.3s;
}
.wl-eco-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}
.wl-eco-icon {
font-size: 2rem;
color: var(--wl-gold);
margin-bottom: 15px;
}
/* 4. MINI CTA FORM */
.wl-cta-section {
background-color: var(--wl-navy);
color: white;
padding: 60px 0;
}
.wl-cta-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}
.wl-form-box {
background: white;
padding: 30px;
border-radius: 8px;
color: var(--wl-text);
}
.wl-form-group {
margin-bottom: 15px;
}
.wl-input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box; /* Fix padding issues */
}
/* RESPONSIVE */
@media (max-width: 900px) {
.wl-grid-topics { grid-template-columns: 1fr; }
.wl-card-business { min-height: 300px; }
.wl-grid-5 { grid-template-columns: repeat(2, 1fr); }
.wl-cta-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
.wl-grid-5 { grid-template-columns: 1fr; }
}
</style>
<div class="wl-container">
<section class="wl-hero">
<div class="wl-hero-overlay"></div>
<div class="wl-hero-content">
<h1>Kiến Tạo Thịnh Vượng Toàn Diện & Bền Vững</h1>
<p>Hệ sinh thái giải pháp số và tri thức tối ưu cho Cá nhân & Doanh nghiệp.</p>
<div class="wl-hero-btns">
<a href="#" class="wl-btn wl-btn-primary">Dành cho Cá nhân</a>
<a href="#" class="wl-btn wl-btn-outline">Dành cho Doanh nghiệp</a>
</div>
</div>
</section>
<section class="wl-section">
<div class="wl-wrapper">
<div class="wl-section-header">
<h2 style="margin:0; font-size: 1.8rem;">Chủ đề nổi bật tuần này</h2>
<a href="#" style="color:var(--wl-gold); text-decoration:none;">Xem tất cả →</a>
</div>
<div class="wl-grid-topics">
<div class="wl-card-business">
<div class="wl-card-overlay">
<span style="background:var(--wl-gold); color:#000; padding:4px 8px; font-size:12px; font-weight:bold; border-radius:4px; text-transform:uppercase;">Doanh Nghiệp</span>
<h3 style="color:white; margin: 10px 0; font-size:1.5rem;">Chiến lược quản trị dòng tiền 2025</h3>
<p style="opacity:0.9; margin-bottom:15px; font-size:0.95rem;">Phân tích chuyên sâu về mô hình vận hành và tối ưu hóa nguồn lực.</p>
<a href="#" style="color:var(--wl-gold); text-decoration:none; font-weight:bold;">Xem chủ đề →</a>
</div>
</div>
<div class="wl-col-personal">
<div class="wl-card-small">
<div class="wl-icon-circle">💰</div>
<div>
<div style="font-size:12px; color:#888; text-transform:uppercase; font-weight:bold;">Cá nhân • Tài chính</div>
<h4 style="margin:5px 0; font-size:1.1rem;">Quản lý chi tiêu gia đình</h4>
<p style="font-size:0.9rem; margin:0;">Phương pháp 6 chiếc hũ.</p>
<a href="#" style="color:var(--wl-blue); font-size:0.85rem; font-weight:600;">Xem chủ đề</a>
</div>
</div>
<div class="wl-card-small">
<div class="wl-icon-circle">🌱</div>
<div>
<div style="font-size:12px; color:#888; text-transform:uppercase; font-weight:bold;">Cá nhân • Phát triển</div>
<h4 style="margin:5px 0; font-size:1.1rem;">Tư duy thịnh vượng</h4>
<p style="font-size:0.9rem; margin:0;">Làm chủ cảm xúc đầu tư.</p>
<a href="#" style="color:var(--wl-blue); font-size:0.85rem; font-weight:600;">Xem chủ đề</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="wl-section wl-bg-beige">
<div class="wl-wrapper">
<h2 style="text-align:center; margin-bottom:40px;">Hệ Sinh Thái Giải Pháp</h2>
<div class="wl-grid-5">
<div class="wl-eco-card">
<div class="wl-eco-icon">🏠</div>
<h3 style="font-size:1rem; margin-bottom:5px;">Không gian sống</h3>
<p style="font-size:0.85rem; color:#666;">Bất động sản & Tài sản</p>
<a href="#" style="color:var(--wl-gold); font-size:0.9rem; font-weight:bold;">Khám phá</a>
</div>
<div class="wl-eco-card">
<div class="wl-eco-icon">📚</div>
<h3 style="font-size:1rem; margin-bottom:5px;">Học tập</h3>
<p style="font-size:0.85rem; color:#666;">Phát triển năng lực</p>
<a href="#" style="color:var(--wl-gold); font-size:0.9rem; font-weight:bold;">Khám phá</a>
</div>
<div class="wl-eco-card">
<div class="wl-eco-icon">🏢</div>
<h3 style="font-size:1rem; margin-bottom:5px;">Doanh nghiệp</h3>
<p style="font-size:0.85rem; color:#666;">Giải pháp quản trị</p>
<a href="#" style="color:var(--wl-gold); font-size:0.9rem; font-weight:bold;">Khám phá</a>
</div>
<div class="wl-eco-card">
<div class="wl-eco-icon">📊</div>
<h3 style="font-size:1rem; margin-bottom:5px;">Công cụ</h3>
<p style="font-size:0.85rem; color:#666;">Lập kế hoạch tài chính</p>
<a href="#" style="color:var(--wl-gold); font-size:0.9rem; font-weight:bold;">Khám phá</a>
</div>
<div class="wl-eco-card">
<div class="wl-eco-icon">🧘</div>
<h3 style="font-size:1rem; margin-bottom:5px;">Sức khỏe</h3>
<p style="font-size:0.85rem; color:#666;">Trải nghiệm & Tinh thần</p>
<a href="#" style="color:var(--wl-gold); font-size:0.9rem; font-weight:bold;">Khám phá</a>
</div>
</div>
</div>
</section>
<section class="wl-cta-section">
<div class="wl-wrapper">
<div class="wl-cta-layout">
<div>
<h2 style="color:white; margin-bottom:15px;">Đăng ký nhận bản tin chuyên sâu</h2>
<p style="font-size:1.1rem; opacity:0.9;">Cập nhật dữ liệu thị trường, bài học tài chính và quà tặng công cụ hàng tuần.</p>
</div>
<div class="wl-form-box">
<form>
<div class="wl-form-group">
<input type="text" class="wl-input" placeholder="Họ và tên">
</div>
<div style="display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-bottom:15px;">
<input type="email" class="wl-input" placeholder="Email">
<input type="tel" class="wl-input" placeholder="SĐT">
</div>
<div class="wl-form-group">
<select class="wl-input">
<option>Bạn quan tâm đến...</option>
<option>Giải pháp Cá nhân</option>
<option>Giải pháp Doanh nghiệp</option>
</select>
</div>
<div class="wl-form-group">
<label style="font-size:0.9rem;">
<input type="checkbox" checked> Nhận bản tin hàng tuần
</label>
</div>
<button type="button" class="wl-btn wl-btn-gold" style="width:100%;">Đăng Ký Ngay</button>
</form>
</div>
</div>
</div>
</section>
</div>