/* =========================================================
   Hero buttons + quick cards only
   Do NOT change the big hero block behind the H1
   Scoped only to the hero so content buttons below stay normal
   ========================================================= */

/* Buttons row */
.hero-tool-wrap .actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:14px;
}

.hero-tool-wrap .actions .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 20px;
  border-radius:20px;
  font-weight:900;
  font-size:1.02rem;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.22);
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.10));
  color:rgba(255,255,255,.96);
  box-shadow:
    0 18px 44px rgba(2,6,23,.18),
    inset 0 1px 0 rgba(255,255,255,.16);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  backdrop-filter:blur(14px) saturate(140%);
}

.hero-tool-wrap .actions .btn:hover{
  transform:translateY(-1px);
  box-shadow:
    0 22px 54px rgba(2,6,23,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.hero-tool-wrap .actions .btn.primary{
  background:linear-gradient(135deg, #16d4d6, #11bfc1);
  color:#ffffff;
  border:1px solid rgba(255,255,255,.20);
  box-shadow:
    0 18px 44px rgba(18,207,208,.28),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.hero-tool-wrap .actions .btn.primary:hover{
  transform:translateY(-1px);
  box-shadow:
    0 22px 54px rgba(18,207,208,.34),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.hero-tool-wrap .actions .btn .pill{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  color:inherit;
  font-size:1rem;
}

.hero-tool-wrap .actions .btn.primary .pill{
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
}

/* Quick cards only */
.hero-tool-wrap .quick-picks{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-top:20px;
}

.hero-tool-wrap .quick-pick{
  padding:18px 18px 16px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.10));
  border:1px solid rgba(255,255,255,.22);
  box-shadow:
    0 18px 44px rgba(2,6,23,.18),
    inset 0 1px 0 rgba(255,255,255,.16);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  backdrop-filter:blur(14px) saturate(140%);
}

.hero-tool-wrap .quick-pick strong{
  display:block;
  margin-bottom:8px;
  font-size:1.02rem;
  font-weight:900;
  color:rgba(255,255,255,.96);
  letter-spacing:-.01em;
}

.hero-tool-wrap .quick-pick span{
  display:block;
  font-size:.98rem;
  line-height:1.55;
  color:rgba(226,232,240,.90);
}

@media (max-width:1100px){
  .hero-tool-wrap .quick-picks{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .hero-tool-wrap .actions .btn{
    width:100%;
  }

  .hero-tool-wrap .quick-picks{
    grid-template-columns:1fr;
    gap:10px;
    margin-top:14px;
  }

  .hero-tool-wrap .quick-pick{
    padding:16px;
    border-radius:18px;
  }
}
