:root{--bg:#1e293b;--card:#334155;--muted:#cbd5e1;--text:#f1f5f9;--accent:#0ea5e9;--accent2:#38bdf8}
*{box-sizing:border-box}
html,body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Helvetica,Arial,sans-serif;background:var(--bg);color:var(--text)}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
.container{max-width:1100px;margin:0 auto;padding:24px}
header{position:sticky;top:0;background:rgba(30,41,59,.85);backdrop-filter:blur(6px);border-bottom:1px solid rgba(255,255,255,.08);z-index:20}
.nav{display:flex;align-items:center;gap:20px;justify-content:space-between}
.brand{display:flex;align-items:center;gap:10px;font-weight:800}
.brand img{width:48px;height:48px;border-radius:12px;object-fit:cover;border:2px solid var(--accent2)}
.nav a{font-weight:600;color:#e2e8f0}
.nav .cta{padding:10px 16px;border-radius:12px;background:linear-gradient(90deg,var(--accent),var(--accent2));color:#0f172a;font-weight:800}
.hero{display:grid;grid-template-columns:1fr 1fr;gap:30px;padding:64px 0}
.hero h1{font-size:clamp(30px,4.2vw,46px);line-height:1.05;margin:0 0 16px 0}
.hero p{color:var(--muted);margin:0 0 24px 0;font-size:1.1rem}
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 16px;border-radius:14px;font-weight:800;cursor:pointer}
.btn.primary{background:linear-gradient(90deg,var(--accent2),var(--accent));color:#0f172a;border:none}
.btn.ghost{color:#e2e8f0;border:1px solid rgba(255,255,255,.15)}
.card{background:var(--card);border-radius:18px;padding:20px;border:1px solid rgba(255,255,255,.1)}
.grid{display:grid;gap:16px}
footer{border-top:1px solid rgba(255,255,255,.08);margin-top:40px}
@media(max-width:900px){.hero{grid-template-columns:1fr}}
#services{margin-top:10px}
.service-stack{display:flex;flex-direction:column;gap:22px}
.service-card{display:grid;grid-template-columns:120px 1fr;gap:18px;align-items:center;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.1);border-radius:16px;padding:14px}
.service-thumb{width:100%;aspect-ratio:3/2;border-radius:12px;overflow:hidden;background:#0f172a;border:1px solid rgba(255,255,255,.08)}
.service-thumb img{width:100%;height:100%;object-fit:cover}
.service-title{margin:0 0 6px 0;font-size:1.15rem;color:var(--accent2)}
.service-desc{margin:0;color:#e2e8f0}
.service-actions{margin-top:10px}
@media(min-width:900px){.service-card{grid-template-columns:220px 1fr}}
