<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Global Asset Activation LLC | Consulting</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
:root{
--bg:#0b1220;
--card:#111b2e;
--text:#eaf0ff;
--muted:#b8c4e6;
--accent:#3b82f6;
--border:rgba(255,255,255,.10);
}
*{ box-sizing:border-box; }
body{
margin:0;
font-family: Arial, sans-serif;
background: radial-gradient(1200px 700px at 20% 0%, rgba(59,130,246,.25), transparent 60%),
radial-gradient(900px 600px at 80% 10%, rgba(34,197,94,.18), transparent 55%),
var(--bg);
color:var(--text);
}
.wrap{ max-width:980px; margin:0 auto; padding:28px 18px 44px; }
.topbar{
display:flex; align-items:center; justify-content:space-between;
gap:14px; padding:10px 0 22px;
}
.brand strong{ font-size:15px; }
.brand span{ font-size:12px; color:var(--muted); }
.pill{
border:1px solid var(--border);
color:var(--muted);
padding:8px 12px;
border-radius:999px;
font-size:12px;
background:rgba(255,255,255,.04);
}
.hero{
border:1px solid var(--border);
background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
border-radius:16px;
padding:26px 18px;
}
.hero h1{ margin:0 0 10px; font-size:28px; }
.hero p{ margin:0 0 18px; color:var(--muted); max-width:720px; }
.btn{
display:inline-block; padding:12px 16px; border-radius:12px;
text-decoration:none; font-weight:700; font-size:14px;
border:1px solid var(--border); color:var(--text);
background:linear-gradient(180deg, rgba(59,130,246,.95), rgba(59,130,246,.75));
}
.consent{
margin-top:14px; padding:12px; border-radius:12px;
border:1px solid var(--border); background:rgba(0,0,0,.18);
color:var(--muted); font-size:13px; display:flex; gap:10px;
}
.consent a{ color:var(--text); }
.section{
margin-top:18px; border:1px solid var(--border);
background:rgba(255,255,255,.04); border-radius:14px; padding:16px;
}
.section h2{ margin:0 0 8px; font-size:16px; }
.section p{ margin:0; color:var(--muted); font-size:13px; line-height:1.5; }
.grid{
margin-top:18px; display:grid; grid-template-columns:repeat(12,1fr); gap:14px;
}
.card{
grid-column:span 4; border:1px solid var(--border);
background:rgba(255,255,255,.04); border-radius:14px; padding:14px;
}
.card h3{ margin:0 0 8px; font-size:14px; }
.card p{ margin:0; color:var(--muted); font-size:13px; }
footer{
margin-top:22px; text-align:center; font-size:12px; color:var(--muted);
}
footer a{ color:var(--muted); }
@media(max-width:860px){
.card{ grid-column:span 12; }
}
</style>
</head>
<body>
<div class="wrap">
<div class="topbar">
<div class="brand">
<strong>Global Asset Activation LLC</strong><br>
<span>Consulting & documentation support</span>
</div>
<div class="pill">Professional • Compliance-friendly</div>
</div>
<div class="hero">
<h1>Consulting, contract drafting<br>and administrative support</h1>
<p>
We provide structured, time-based consulting focused on documentation,
contract drafting support, and administrative guidance.
</p>
<a class="btn" href="mailto:gaao.verification@outlook.com">Request Service</a>
<div class="consent">
<input type="checkbox" required>
<div>
I have read and agree to the <a href="/terms.html" target="_blank">Terms of Use</a>.<br>
Consultative services only. No financial or investment services provided.
</div>
</div>
</div>
<!-- ABOUT -->
<div class="section">
<h2>About</h2>
<p>
Global Asset Activation LLC provides consultative services focused on documentation,
contract drafting support, and administrative guidance. Our services are advisory
in nature and delivered through structured communication and written materials.
We do not provide financial, investment, banking, or asset management services.
</p>
</div>
<!-- SERVICES -->
<div class="grid">
<div class="card">
<h3>Consulting Services</h3>
<p>Advisory support for processes, documentation, and communication.</p>
</div>
<div class="card">
<h3>Contract Drafting</h3>
<p>Document templates, revisions, and structured preparation.</p>
</div>
<div class="card">
<h3>Administrative Support</h3>
<p>Letters, requests, summaries, and operational documentation.</p>
</div>
</div>
<footer>
<div>Consultative services only. No financial or investment services provided.</div>
<div><a href="/terms.html" target="_blank">Terms of Use</a></div>
<div>© Global Asset Activation LLC</div>
</footer>
</div>
</body>
</html>