:root {
  --bg-0: #05070f;
  --bg-1: #0a0f1f;
  --ink: #eef2ff;
  --muted: #8a93ad;
  --muted-2: #5b6382;
  --line: rgba(255,255,255,0.08);
  --card: rgba(255,255,255,0.035);
  --brand: #4ade80;
  --brand-2: #22d3a7;
  --accent: #60a5fa;
  --accent-2: #a78bfa;
  --warn: #fbbf24;
  --wa: #25d366;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg-0); color: var(--ink); font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; overflow-x: hidden; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }

.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

.wrap { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(16px); background: rgba(5,7,15,0.72); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 48px; width: auto; border-radius: 10px; }
.nav-links { display: flex; gap: 30px; font-size: 14px; color: var(--muted); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.btn-wa { padding: 11px 18px; border-radius: 10px; background: var(--wa); color: #fff; font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 8px; transition: transform .2s; }
.btn-wa:hover { transform: translateY(-1px); }
.btn-wa .icon { width: 16px; height: 16px; stroke-width: 2; }

footer { padding: 60px 0 40px; border-top: 1px solid var(--line); margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-grid h6 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; }
.foot-grid a, .foot-grid p { display: block; font-size: 13px; color: var(--muted); padding: 6px 0; transition: color .2s; }
.foot-grid a:hover { color: var(--brand); }
.foot-bot { padding-top: 30px; border-top: 1px solid var(--line); text-align: center; font-size: 12px; color: var(--muted-2); line-height: 1.7; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
