:root{
  --bg:#ffffff;
  --bg-soft:#f6f8fc;
  --card:#ffffff;
  --line:#e6e9f2;
  --text:#0f172a;
  --muted:#475569;
  --muted2:#64748b;
  --accent:#4f46e5;   /* violeta ition */
  --accent-soft:#eef2ff;
  --ok:#16a34a;
  --shadow: 0 10px 30px rgba(15,23,42,.08);
  --radius:16px;
  --radius2:22px;
  --w:1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:linear-gradient(180deg,#ffffff,#fafbff);
}

.wrap{
  width:min(var(--w), calc(100% - 40px));
  margin:0 auto;
}

.header{ padding:32px 0 24px; }

.brand{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:28px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
}

.logo-text{
  font-weight:800;
  font-size:18px;
  letter-spacing:.3px;
}

.pill{
  font-size:12px;
  padding:6px 12px;
  border-radius:999px;
  background:var(--accent-soft);
  color:var(--accent);
  font-weight:600;
}

.hero{
  background:var(--bg-soft);
  border-radius:var(--radius2);
  padding:36px 32px;
}

.hero h1{
  margin:0 0 12px 0;
  font-size:clamp(26px,3vw,40px);
  line-height:1.1;
}

.hero p{
  margin:0 0 22px 0;
  max-width:70ch;
  color:var(--muted);
  font-size:16px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  height:44px;
  padding:0 18px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  transition:all .15s ease;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
}

.btn.primary{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}

.btn.ghost{
  background:transparent;
}

.section{ padding:36px 0; }

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:18px;
}

.section-head h2{
  margin:0;
  font-size:20px;
}

.hint{
  font-size:13px;
  color:var(--muted2);
}

.grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:18px;
}

.card{
  grid-column:span 6;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  cursor:pointer;
  transition:all .18s ease;
}

.card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}

.card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}

.icon{
  width:44px;
  height:44px;
  border-radius:12px;
  background:var(--accent-soft);
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon svg{
  width:22px;
  height:22px;
  fill:var(--accent);
}

.badges{
  display:flex;
  gap:8px;
}

.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:#f1f5f9;
  color:var(--muted);
  font-weight:500;
}

.badge.ok{
  background:#dcfce7;
  color:var(--ok);
}

.card h3{
  margin:0 0 6px 0;
  font-size:17px;
}

.card p{
  margin:0 0 14px 0;
  font-size:14px;
  color:var(--muted);
  line-height:1.4;
}

.card-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  color:var(--muted2);
  border-top:1px solid var(--line);
  padding-top:12px;
}

.go{
  color:var(--accent);
  font-weight:600;
}

.cta{
  background:var(--bg-soft);
  border-radius:var(--radius2);
  padding:26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.cta h3{
  margin:0 0 6px 0;
}

.cta p{
  margin:0;
  color:var(--muted);
}

.footer{
  padding:24px 0 40px;
  font-size:13px;
  color:var(--muted2);
  display:flex;
  gap:10px;
}

@media(max-width:900px){
  .card{ grid-column:span 12; }
  .section-head{ flex-direction:column; align-items:flex-start; }
  .cta{ flex-direction:column; align-items:flex-start; }
}
