
:root{
  --bg:#0b0f12; --surface:#0f141a; --card:#111820; --border:#1f2937;
  --text:#e5e7eb; --muted:#9ca3af; --brand:#2dd4bf; --ring:#2dd4bf55;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font:16px/1.5 system-ui,-apple-system,Segoe UI,Roboto,Arial}
a{color:inherit;text-decoration:none}
header{display:flex;justify-content:space-between;align-items:center;padding:18px 24px;border-bottom:1px solid var(--border)}
header .brand{display:flex;gap:14px;align-items:center}
header img.logo{height:36px;width:auto;display:block}
.container{max-width:1200px;margin:0 auto;padding:24px}
.hero{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:center;background:linear-gradient(180deg, rgba(45,212,191,.08), transparent);border:1px solid var(--border);border-radius:16px;padding:24px}
.hero h1{font-size:36px;margin:0 0 10px}
.hero p{color:var(--muted);margin:0 0 16px}
.cta{display:flex;gap:12px;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;gap:10px;background:var(--brand);color:#052e2a;padding:12px 16px;border-radius:12px;font-weight:700;border:none;cursor:pointer}
.btn.secondary{background:transparent;color:var(--text);border:1px solid var(--border)}
.benefits{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
.badge{background:var(--card);border:1px solid var(--border);border-radius:12px;padding:10px 12px;font-size:14px}
h2{font-size:28px;margin:24px 0 12px}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.tile{display:flex;align-items:center;gap:14px;background:var(--card);border:1px solid var(--border);border-radius:14px;padding:16px 18px;min-height:74px;transition:transform .12s ease, box-shadow .15s ease, border-color .15s ease}
.tile:hover{transform:translateY(-1px);border-color:#2a3648;box-shadow:0 8px 24px rgba(0,0,0,.35)}
.tile .ico{flex:0 0 auto;display:grid;place-items:center;width:48px;height:48px;border-radius:12px;background:#0d131a;border:1px solid #1c2632}
.tile .ico img{max-width:28px;max-height:28px}
.tile .ttl{font-weight:700}
.footer{margin:28px 0 16px 0;color:var(--muted);font-size:13px}
@media (max-width:960px){.hero{grid-template-columns:1fr}.grid{grid-template-columns:repeat(2,1fr)}.hero h1{font-size:30px}}
@media (max-width:620px){.grid{grid-template-columns:1fr} h1{font-size:26px}}
