:root {
  --blue: #1e40c0;
  --blue-dark: #15287a;
  --blue-soft: #eef1fc;
  --green: #18811f;
  --ink: #0f1729;
  --muted: #56607a;
  --line: #e7eaf3;
  --bg: #ffffff;
  --bg-alt: #f6f8fd;
  --shadow: 0 10px 30px rgba(20, 40, 122, .10);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.topbar { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 20; }
.nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand img { width: 42px; height: 42px; border-radius: 8px; object-fit: contain; }
.brand small { display: block; color: var(--muted); font-weight: 600; font-size: .72rem; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
  border: 1px solid var(--line);
}
.btn-primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-wa { background: var(--green); border-color: var(--green); color: #fff; }
.btn-ghost { background: #fff; color: var(--blue); }
.hero { background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 42px; align-items: center; padding: 72px 0; }
.eyebrow {
  display: inline-block;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
h1 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.16; letter-spacing: 0; margin-bottom: 18px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.2; margin-bottom: 12px; }
h3 { font-size: 1.05rem; margin-bottom: 8px; }
.lead { color: var(--muted); font-size: 1.1rem; max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.proof { margin-top: 18px; color: var(--muted); font-size: .95rem; }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.panel ul, .section ul { list-style: none; display: grid; gap: 12px; }
.panel li, .section li { padding-left: 28px; position: relative; color: #283044; }
.panel li:before, .section li:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  left: 4px;
  top: .55em;
}
.band { background: var(--blue-dark); color: #fff; }
.band .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-top: 22px; padding-bottom: 22px; }
.band b { display: block; font-size: 1.02rem; }
.band span { color: #cbd5ff; font-size: .9rem; }
.section { padding: 64px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  min-height: 160px;
}
.card p { color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.cta { background: var(--bg-alt); border-top: 1px solid var(--line); }
.cta-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
footer { background: #0f1729; color: #c3cadb; padding: 34px 0; font-size: .92rem; }
footer .container { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
footer a { color: #fff; }
.mobile-bar { display: none; }
@media (max-width: 820px) {
  .hero-grid, .split, .cta-box { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .band .container { grid-template-columns: 1fr 1fr; }
  .nav-actions .btn-ghost { display: none; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .brand small { display: none; }
  .nav-actions .btn-primary { padding: 10px 12px; font-size: .92rem; }
  .band .container { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}
