body{
  background:#f9fbff;
  font-family:'Poppins',sans-serif;
  color:#1f2937;
}

/* HERO */
.focus-section{
  text-align:center;
  padding:90px 20px 50px;
}

.mini-badge{
  display:inline-block;
  background:#eef2ff;
  color:#4f46e5;
  padding:6px 14px;
  border-radius:999px;
  font-size:13px;
  margin-bottom:14px;
}

.focus-section h1{
  font-size:38px;
  font-weight:700;
  line-height:1.3;
}

.focus-section p{
  max-width:760px;
  margin:18px auto 0;
  font-size:16px;
  color:#475569;
}

/* BENEFITS */
.benefits-bar{
  display:flex;
  justify-content:center;
  gap:22px;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.benefit{
  background:#fff;
  padding:10px 20px;
  border-radius:999px;
  font-size:14px;
  box-shadow:0 6px 16px rgba(0,0,0,.06);
}

/* HEADING */
.focus-heading{
  font-size:32px;
  font-weight:600;
  margin-bottom:35px;
}

/* GRID */
.card-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
}

/* CARD */
.test-card{
  position:relative;
  background:#fff;
  border-radius:18px;
  padding:28px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.35s;
}

.test-card:hover{
  transform:translateY(-8px);
}

.test-card img{
  width:150px;
  margin-bottom:15px;
  border-radius:8px;
}

.test-card h3{
  font-size:21px;
  font-weight:700;
  margin:12px 0;
}

.test-card p{
  font-size:14.5px;
  color:#475569;
  margin-bottom:18px;
}

/* BADGES */
.card-badge{
  position:absolute;
  top:18px;
  right:18px;
  background:#facc15;
  padding:5px 12px;
  font-size:12px;
  border-radius:999px;
  font-weight:600;
}

.card-badge.new{
  background:#22c55e;
  color:#fff;
}

/* VARIANTS */
.featured{
  border:2px solid #2563eb;
}

.highlight{
  background:linear-gradient(135deg,#eef2ff,#ffffff);
}

/* BUTTON */
.start-btn{
  display:inline-block;
  padding:10px 22px;
  background:linear-gradient(90deg,#2563eb,#1d4ed8);
  color:#fff;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
}

.start-btn.dark{
  background:#020617;
}

/* CTA */
.cta-section{
  margin-top:80px;
  background:linear-gradient(135deg,#2563eb,#1e40af);
  color:#fff;
  text-align:center;
  padding:55px 20px;
}

.cta-section h2{
  font-size:30px;
  margin-bottom:10px;
}

.cta-section p{
  font-size:15px;
  margin-bottom:22px;
}

.cta-btn{
  background:#fff;
  color:#2563eb;
  padding:12px 28px;
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:768px){
  .focus-section h1{font-size:28px;}
  .focus-heading{font-size:26px;}
}
